summaryrefslogtreecommitdiff
path: root/jstests/noPassthrough/clustered_collection_capped_concurrency.js
blob: 1c6d3a7f167d8bbde625848bfe04ca070aee8dd8 (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
/**
 * Validate that capped clustered collections can be written to concurrently.
 *
 * @tags: [
 *   # hangAfterCollectionInserts failpoint not available on mongos.
 *   assumes_against_mongod_not_mongos,
 *   does_not_support_stepdowns,
 *   requires_fcv_53,
 *   requires_replication,
 * ]
 */
(function() {
"use strict";
load("jstests/libs/clustered_collections/clustered_collection_util.js");
load("jstests/libs/collection_drop_recreate.js");
load('jstests/libs/dateutil.js');
load("jstests/libs/fail_point_util.js");
load('jstests/libs/parallel_shell_helpers.js');

const replSet = new ReplSetTest({name: "clustered_capped_concurrency", nodes: 1});
replSet.startSet();
replSet.initiate();

// Validate that inserts on a capped collection are serialized, whereas inserts
// on a clustered capped collection are not serialized.
function validateCappedInsertConcurrency(db, coll, clustered, expectedConcurrent) {
    assertDropCollection(db, coll.getName());

    if (clustered) {
        assert.commandWorked(db.createCollection(coll.getName(), {
            clusteredIndex: {key: {_id: 1}, unique: true},
            capped: true,
            expireAfterSeconds: 24 * 60 * 60
        }));
    } else {
        assert.commandWorked(db.createCollection(coll.getName(), {capped: true, size: 100000000}));
    }

    const ns = coll.getFullName();
    const failPointName = "hangAfterCollectionInserts";
    const fp = assert.commandWorked(db.adminCommand(
        {configureFailPoint: failPointName, mode: "alwaysOn", data: {collectionNS: ns}}));
    const timesEntered = fp.count;

    const waitForParallelShellToShutDown = startParallelShell(
        funWithArgs(function(dbName, collName) {
            assert.commandWorked(db.getSiblingDB(dbName)[collName].insertOne({}));
        }, db.getName(), coll.getName()), replSet.getPrimary().port);

    assert.commandWorked(db.adminCommand({
        waitForFailPoint: failPointName,
        timesEntered: timesEntered + 1,
        maxTimeMS: kDefaultWaitForFailPointTimeout
    }));

    // There's one and only one in-flight insert to the namespace.
    assert.eq(1, db.currentOp({ns: ns, "op": "insert"}).inprog.length);
    if (expectedConcurrent) {
        // Assert the insert is not serialized - no Metadata resource acquisition.
        assert.eq(db.currentOp({ns: ns, "op": "insert"}).inprog[0].lockStats.Metadata, undefined);
    } else {
        // Assert the insert is serialized - it acquires the Metadata resource in strong exclusive
        // mode.
        assert.neq(
            db.currentOp({ns: ns, "op": "insert"}).inprog[0].lockStats.Metadata.acquireCount.W,
            undefined);
    }

    assert.commandWorked(db.adminCommand({configureFailPoint: failPointName, mode: "off"}));
    waitForParallelShellToShutDown();
    assertDropCollection(db, coll.getName());
}

// Validate on a standard replicated namespace.
{
    const dbName = jsTestName();
    const db = replSet.getPrimary().getDB(dbName);
    const coll = db.getCollection('c');
    validateCappedInsertConcurrency(db, coll, false /*clustered*/, false /*expectedConcurrent*/);
    validateCappedInsertConcurrency(db, coll, true /*clustered*/, true /*expectedConcurrent*/);
}

// Validate on an implicitly replicated namespaces.
{
    const db = replSet.getPrimary().getDB("config");
    const coll = db.getCollection('changes.c');
    validateCappedInsertConcurrency(db, coll, false /*clustered*/, false /*expectedConcurrent*/);
    // Validate change collections: clustered, capped, implicitly replicated 'config.changes.*'
    // namespace.
    validateCappedInsertConcurrency(db, coll, true /*clustered*/, true /*expectedConcurrent*/);
}

replSet.stopSet();
})();