summaryrefslogtreecommitdiff
path: root/jstests/noPassthroughWithMongod/collStats_does_not_conflict_with_collection_lock.js
blob: 718e334d1de9e680c02748be1c098fa30ab26d1f (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
/**
 * Tests that collStats can run concurrently with a MODE_X collection lock.
 */
(function() {
"use strict";

load("jstests/libs/parallel_shell_helpers.js");  // startParallelShell
load("jstests/libs/wait_for_command.js");        // waitForCommand

const dbName = "test";
const collName = "collStats_no_wait_for_lock";
const testDB = db.getSiblingDB(dbName);
const testColl = testDB.getCollection(collName);

assert.commandWorked(testColl.insert({a: 1}));

const collectionLockSleepFunction = function(dbName, collName) {
    assert.commandFailedWithCode(db.adminCommand({
        sleep: 1,
        secs: 18000,
        // Collection lock.
        lockTarget: dbName + "." + collName,
        // MODE_X lock.
        lock: "w",
        $comment: "Collection lock sleep"
    }),
                                 ErrorCodes.Interrupted);
};

jsTestLog("Starting the sleep command to take locks");
const collectionXLockSleepJoin = startParallelShell(
    funWithArgs(collectionLockSleepFunction, dbName, collName), testDB.getMongo().port);

jsTestLog("Waiting for the sleep command to start and fetch the opID");
const sleepCmdOpID = waitForCommand(
    "sleepCmd",
    op => (op["ns"] == "admin.$cmd" && op["command"]["$comment"] == "Collection lock sleep"),
    testDB.getSiblingDB("admin"));

jsTestLog("Wait for the sleep command to log that the collection lock was acquired");
checkLog.containsJson(testDB, 6001603);

try {
    jsTestLog("Running collStats concurrently with the collection X lock");
    assert.commandWorked(testDB.runCommand({collStats: collName, maxTimeMS: 20 * 1000}));
} finally {
    jsTestLog("Ensure the sleep cmd releases the lock so that the server can shutdown");
    assert.commandWorked(testDB.getSiblingDB("admin").killOp(sleepCmdOpID));  // kill the sleep cmd
    collectionXLockSleepJoin();  // wait for the thread running the sleep cmd to finish
}
})();