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
|
/*
* Tests that the 'forceSyncSourceCandidate' failpoint correctly forces a sync source.
*
* @tags: [requires_replication]
*/
(function() {
"use strict";
load("jstests/replsets/rslib.js");
const failpointName = "forceSyncSourceCandidate";
const rst = new ReplSetTest({
nodes: [{}, {rsConfig: {priority: 0}}, {rsConfig: {priority: 0}}, {rsConfig: {priority: 0}}],
// Allow many initial sync attempts. Initial sync may fail if the sync source does not have
// an oplog yet because it has not conducted its own initial sync yet.
// We turn on the noop writer to encourage successful sync source selection.
nodeOptions: {setParameter: {numInitialSyncAttempts: 100, writePeriodicNoops: true}}
});
const nodes = rst.startSet();
function getDataObj(syncSource) {
return {hostAndPort: syncSource.host};
}
configureFailPoint(nodes[1], failpointName, getDataObj(nodes[0]));
configureFailPoint(nodes[2], failpointName, getDataObj(nodes[1]));
configureFailPoint(nodes[3], failpointName, getDataObj(nodes[2]));
rst.initiate();
const primary = rst.getPrimary();
rst.awaitSyncSource(nodes[1], nodes[0]);
rst.awaitSyncSource(nodes[2], nodes[1]);
rst.awaitSyncSource(nodes[3], nodes[2]);
rst.stopSet();
})();
|