summaryrefslogtreecommitdiff
path: root/jstests/noPassthrough/partial_unique_indexes.js
blob: 04a0f866101e2bcd069befe8ef91f2a6698006ba (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
/**
 * SERVER-32001: Test that indexing paths for non-unique, partial, unique, partial&unique
 * crud operations correctly handle WriteConflictExceptions.
 */
(function() {
"strict";

let conn = MongoRunner.runMongod();
let testDB = conn.getDB("test");

let t = testDB.jstests_parallel_allops;
t.drop();

assert.commandWorked(
    t.createIndex({x: 1, _id: 1}, {partialFilterExpression: {_id: {$lt: 500}}, unique: true}));
assert.commandWorked(t.createIndex({y: -1, _id: 1}, {unique: true}));
assert.commandWorked(
    t.createIndex({x: -1}, {partialFilterExpression: {_id: {$gte: 500}}, unique: false}));
assert.commandWorked(t.createIndex({y: 1}, {unique: false}));

let _id = {"#RAND_INT": [0, 1000]};
let ops = [
    {op: "remove", ns: t.getFullName(), query: {_id}, writeCmd: true},
    {
        op: "update",
        ns: t.getFullName(),
        query: {_id},
        update: {$inc: {x: 1}},
        upsert: true,
        writeCmd: true
    },
    {
        op: "update",
        ns: t.getFullName(),
        query: {_id},
        update: {$inc: {y: 1}},
        upsert: true,
        writeCmd: true
    },
];

let seconds = 5;
let parallel = 5;
let host = testDB.getMongo().host;

let benchArgs = {ops, seconds, parallel, host};

assert.commandWorked(testDB.adminCommand(
    {configureFailPoint: 'WTWriteConflictExceptionForReads', mode: {activationProbability: 0.01}}));
assert.commandWorked(testDB.adminCommand(
    {configureFailPoint: 'WTWriteConflictException', mode: {activationProbability: 0.01}}));
let res = benchRun(benchArgs);
printjson({res});

assert.commandWorked(
    testDB.adminCommand({configureFailPoint: 'WTWriteConflictException', mode: "off"}));
assert.commandWorked(
    testDB.adminCommand({configureFailPoint: 'WTWriteConflictExceptionForReads', mode: "off"}));
res = t.validate();
assert(res.valid, tojson(res));
MongoRunner.stopMongod(conn);
})();