summaryrefslogtreecommitdiff
path: root/jstests/noPassthrough/commit_quorum.js
blob: 7d4366fc7987ea91fdf63b71979e923daa1ab87e (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
/**
 * Tests that the commit quorum can be changed during a two-phase index build.
 *
 * @tags: [requires_replication]
 */
(function() {
    load("jstests/noPassthrough/libs/index_build.js");
    load("jstests/libs/check_log.js");

    const replSet = new ReplSetTest({
        nodes: [
            {},
            {
              // Disallow elections on secondary.
              rsConfig: {
                  priority: 0,
                  votes: 0,
              },
            },
        ]
    });

    // Allow the createIndexes command to use the index builds coordinator in single-phase mode.
    replSet.startSet({setParameter: {enableIndexBuildsCoordinatorForCreateIndexesCommand: true}});
    replSet.initiate();

    const testDB = replSet.getPrimary().getDB('test');
    const coll = testDB.twoPhaseIndexBuild;

    const bulk = coll.initializeUnorderedBulkOp();
    const numDocs = 1000;
    for (let i = 0; i < numDocs; i++) {
        bulk.insert({a: i, b: i});
    }
    assert.commandWorked(bulk.execute());

    const collName = "createIndexes";

    // Use createIndex(es) to build indexes and check the commit quorum.
    let res = assert.commandWorked(testDB[collName].createIndex({x: 1}));
    assert.eq(2, res.commitQuorum);

    res = assert.commandWorked(testDB[collName].createIndex({y: 1}, {}, 1));
    assert.eq(1, res.commitQuorum);

    res = assert.commandWorked(testDB[collName].createIndexes([{i: 1}]));
    assert.eq(2, res.commitQuorum);

    res = assert.commandWorked(testDB[collName].createIndexes([{j: 1}], {}, 1));
    assert.eq(1, res.commitQuorum);

    replSet.waitForAllIndexBuildsToFinish(testDB.getName(), collName);

    let awaitShell;
    try {
        assert.commandWorked(testDB.adminCommand(
            {configureFailPoint: "hangAfterIndexBuildSecondDrain", mode: "alwaysOn"}));

        // Starts parallel shell to run the command that will hang.
        awaitShell = startParallelShell(function() {
            // Use the index builds coordinator for a two-phase index build.
            assert.commandWorked(db.runCommand({
                twoPhaseCreateIndexes: 'twoPhaseIndexBuild',
                indexes: [{key: {a: 1}, name: 'a_1'}],
                commitQuorum: "majority"
            }));
        }, testDB.getMongo().port);

        checkLog.containsWithCount(replSet.getPrimary(), "Waiting for index build to complete", 5);

        // Test setting various commit quorums on the index build in our two node replica set.
        assert.commandFailed(testDB.runCommand(
            {setIndexCommitQuorum: 'twoPhaseIndexBuild', indexNames: ['a_1'], commitQuorum: 3}));
        assert.commandFailed(testDB.runCommand({
            setIndexCommitQuorum: 'twoPhaseIndexBuild',
            indexNames: ['a_1'],
            commitQuorum: "someTag"
        }));

        assert.commandWorked(testDB.runCommand(
            {setIndexCommitQuorum: 'twoPhaseIndexBuild', indexNames: ['a_1'], commitQuorum: 0}));
        assert.commandWorked(testDB.runCommand(
            {setIndexCommitQuorum: 'twoPhaseIndexBuild', indexNames: ['a_1'], commitQuorum: 2}));
        assert.commandWorked(testDB.runCommand({
            setIndexCommitQuorum: 'twoPhaseIndexBuild',
            indexNames: ['a_1'],
            commitQuorum: "majority"
        }));
    } finally {
        assert.commandWorked(testDB.adminCommand(
            {configureFailPoint: "hangAfterIndexBuildSecondDrain", mode: "off"}));
    }

    // Wait for the parallel shell to complete.
    awaitShell();

    IndexBuildTest.assertIndexes(coll, 2, ["_id_", "a_1"]);

    replSet.stopSet();
})();