blob: 1c9f385e9188a622a7b5fa3984460df692082d9f (
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
|
/**
* Test syncing from non-primaries.
*
* Start a set.
* Inital sync.
* Kill member 1.
* Add some data.
* Kill member 0.
* Restart member 1.
* Check that it syncs.
* Add some data.
* Kill member 1.
* Restart member 0.
* Check that it syncs.
*/
load("jstests/replsets/rslib.js");
var name = "sync_passive";
var host = getHostName();
var replTest = new ReplSetTest({name: name, nodes: 3});
var nodes = replTest.startSet();
// make sure node 0 becomes primary initially and that node 2 never will
var config = replTest.getReplSetConfig();
config.members[0].priority = 2;
config.members[2].priority = 0;
replTest.initiate(config);
replTest.waitForState(replTest.nodes[0], ReplSetTest.State.PRIMARY);
var primary = replTest.getPrimary().getDB("test");
var server0 = primary;
var server1 = replTest.getSecondary();
print("Initial sync");
for (var i = 0; i < 100; i++) {
primary.foo.insert({x: i});
}
replTest.awaitReplication();
print("stop #1");
replTest.stop(1);
print("add some data");
for (var i = 0; i < 1000; i++) {
primary.bar.insert({x: i});
}
const liveSecondaries = [replTest.nodes[2]];
replTest.awaitReplication(null, null, liveSecondaries);
print("stop #0");
replTest.stop(0);
print("restart #1");
replTest.restart(1);
print("check sync");
replTest.awaitReplication(null, null, liveSecondaries);
print("add data");
reconnect(server1);
primary = replTest.getPrimary().getDB("test");
for (var i = 0; i < 1000; i++) {
primary.bar.insert({x: i});
}
replTest.awaitReplication(null, null, liveSecondaries);
print("kill #1");
replTest.stop(1);
print("restart #0");
replTest.restart(0);
reconnect(server0);
print("wait for sync");
replTest.awaitReplication(null, null, liveSecondaries);
print("bring #1 back up, make sure everything's okay");
replTest.restart(1);
replTest.stopSet();
|