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
|
// Change a getLastErrorMode from 2 to 3 servers
var host = getHostName();
var replTest = new ReplSetTest( {name: "rstag", nodes: 3, startPort: 31000} );
var nodes = replTest.startSet();
var ports = replTest.ports;
var conf = {_id : "rstag", version: 1, members : [
{_id : 0, host : host+":"+ports[0], tags : {"backup" : "A"}},
{_id : 1, host : host+":"+ports[1], tags : {"backup" : "B"}},
{_id : 2, host : host+":"+ports[2], tags : {"backup" : "C"}} ],
settings : {getLastErrorModes : {
backedUp : {backup : 2} }} };
replTest.initiate( conf );
replTest.awaitReplication();
master = replTest.getMaster();
var db = master.getDB("test");
db.foo.insert( {x:1} );
var result = db.runCommand( {getLastError:1, w:"backedUp", wtimeout:20000} );
assert.eq (result.err, null);
conf.version = 2;
conf.settings.getLastErrorModes.backedUp.backup = 3;
master.getDB("admin").runCommand( {replSetReconfig: conf} );
replTest.awaitReplication();
master = replTest.getMaster();
var db = master.getDB("test");
db.foo.insert( {x:2} );
var result = db.runCommand( {getLastError:1, w:"backedUp", wtimeout:20000} );
assert.eq (result.err, null);
conf.version = 3;
conf.members[0].priorty = 3;
conf.members[2].priorty = 0;
master.getDB("admin").runCommand( {replSetReconfig: conf} );
master = replTest.getMaster();
var db = master.getDB("test");
db.foo.insert( {x:3} );
var result = db.runCommand( {getLastError:1, w:"backedUp", wtimeout:20000} );
assert.eq (result.err, null);
replTest.stopSet();
|