blob: d13a9a5ccac4a48167cb4b5e299e86d21420b875 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
#!/usr/bin/env bash
# Ensure that persistent databases are correctly recovered by database
# sequence number
#
# 1. Create and wipe a persistent test database
# 2. Directly add a single record to the database on each node
# 3. Trigger a recover
# 4. Ensure that the database contains only a single record
#
# Repeat but with sequence numbers set by hand on each node
. "${TEST_SCRIPTS_DIR}/integration.bash"
set -e
ctdb_test_init
try_command_on_node 0 "$CTDB listnodes | wc -l"
num_nodes="$out"
add_record_per_node ()
{
_i=0
while [ $_i -lt $num_nodes ] ; do
_k="KEY${_i}"
_d="DATA${_i}"
echo "Store key(${_k}) data(${_d}) on node ${_i}"
db_ctdb_tstore $_i "$test_db" "$_k" "$_d"
_i=$(($_i + 1))
done
}
test_db="persistent_test.tdb"
echo "Create persistent test database \"$test_db\""
try_command_on_node 0 $CTDB attach "$test_db" persistent
# 3,
# If no __db_sequence_number__ recover whole database
#
echo
echo "Test that no __db_sequence_number__ does not blend the database during recovery"
# wipe database
echo "Wipe the test database"
try_command_on_node 0 $CTDB wipedb "$test_db"
add_record_per_node
# force a recovery
echo force a recovery
try_command_on_node 0 $CTDB recover
# Check that we now have 1 record on node 0
num_records=$(db_ctdb_cattdb_count_records 0 "$test_db")
if [ $num_records = "1" ] ; then
echo "OK: databases were not blended"
else
echo "BAD: we did not end up with the expected single record after the recovery"
exit 1
fi
# 4,
# If __db_sequence_number__ recover whole database
#
echo
echo test that __db_sequence_number__ does not blend the database during recovery
# wipe database
echo wipe the test database
try_command_on_node 0 $CTDB wipedb persistent_test.tdb
add_record_per_node
echo "Add __db_sequence_number__==5 record to all nodes"
pnn=0
while [ $pnn -lt $num_nodes ] ; do
db_ctdb_tstore_dbseqnum $pnn "$test_db" 5
pnn=$(($pnn + 1))
done
echo "Set __db_sequence_number__ to 7 on node 0"
db_ctdb_tstore_dbseqnum 0 "$test_db" 7
echo "Set __db_sequence_number__ to 8 on node 1"
db_ctdb_tstore_dbseqnum 1 "$test_db" 8
# force a recovery
echo force a recovery
try_command_on_node 0 $CTDB recover
# check that we now have both records on node 0
num_records=$(db_ctdb_cattdb_count_records 0 "$test_db")
if [ $num_records = "1" ] ; then
echo "OK: databases were not blended"
else
echo "BAD: we did not end up with the expected single record after the recovery"
exit 1
fi
|