summaryrefslogtreecommitdiff
path: root/jstests/replsets/rollback_resumable_index_build_collection_scan_phase.js
blob: b0d2e33c8a6f75579542723bc4a0862dfb8dcb83 (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
/**
 * Tests that resumable index builds complete properly after being interrupted for rollback during
 * the collection scan phase.
 *
 * @tags: [
 *   requires_fcv_47,
 *   requires_majority_read_concern,
 *   requires_persistence,
 * ]
 */
(function() {
"use strict";

load('jstests/replsets/libs/rollback_resumable_index_build.js');

const dbName = "test";

const rollbackTest = new RollbackTest(jsTestName());
const coll = rollbackTest.getPrimary().getDB(dbName).getCollection(jsTestName());

assert.commandWorked(coll.insert([{a: 1}, {a: 2}, {a: 3}, {a: 4}, {a: 5}]));

const runTest = function(rollbackEndFailPointName, rollbackEndFailPointIteration) {
    RollbackResumableIndexBuildTest.run(rollbackTest,
                                        dbName,
                                        coll.getName(),
                                        {a: 1},
                                        "hangIndexBuildDuringCollectionScanPhaseBeforeInsertion",
                                        3,  // rollbackStartFailPointIteration
                                        rollbackEndFailPointName,
                                        rollbackEndFailPointIteration,
                                        "setYieldAllLocksHang",
                                        "collection scan",
                                        {numScannedAferResume: 1},
                                        [{a: 6}, {a: 7}]);
};

// Rollback to before the index begins to be built.
runTest("hangAfterSettingUpIndexBuild", {});

// Rollback to earlier in the collection scan phase.
runTest("hangIndexBuildDuringCollectionScanPhaseAfterInsertion", 1);

rollbackTest.stop();
})();