summaryrefslogtreecommitdiff
path: root/jstests/replsets/force_sync_source_candidate.js
blob: 4be7b3bb6681fe928c2e4b1425f6896012de8236 (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
/*
 * Tests that the 'forceSyncSourceCandidate' failpoint correctly forces a sync source.
 *
 * @tags: [requires_replication]
 */

(function() {
    "use strict";

    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 setFailPoint(node, syncSource) {
        const dataObj = {hostAndPort: syncSource.host};
        assert.commandWorked(node.adminCommand(
            {configureFailPoint: failpointName, mode: "alwaysOn", data: dataObj}));
    }

    setFailPoint(nodes[1], nodes[0]);
    setFailPoint(nodes[2], nodes[1]);
    setFailPoint(nodes[3], 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();
})();