summaryrefslogtreecommitdiff
path: root/jstests/core/queryoptimizer3.js
blob: 66c28369cd0bf92ad107d2f186da9ef3c6ea23ff (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
// Validates cases where index scans are aborted due to the collection being dropped (SERVER-4400)
//
// Drop and other sharding commands can conflict with LockBusy errors in a sharding passthrough
// suite. This is because drop against a mongos takes distlocks, whereas drop against a mongod does
// not. Due to the huge number of parallel drops in this test, the other thead is very likely to be
// starved frequently.
// Note: this tag can be safely removed once PM-697 is complete and replaces distlocks with a
// LockManager that has a fairness policy, which distlocks lack.
// @tags: [
//   assumes_against_mongod_not_mongos,
//   requires_non_retryable_writes,
//   uses_multiple_connections,
// ]

(function() {
    'use strict';

    var coll = db.jstests_queryoptimizer3;

    var shellWaitHandle = startParallelShell(function() {
        for (var i = 0; i < 400; ++i) {
            sleep(50);
            db.jstests_queryoptimizer3.drop();
        }
    });

    for (var i = 0; i < 100; ++i) {
        coll.drop();
        coll.ensureIndex({a: 1});
        coll.ensureIndex({b: 1});

        for (var j = 0; j < 100; ++j) {
            coll.save({a: j, b: j});
        }

        try {
            var m = i % 5;
            if (m == 0) {
                coll.count({a: {$gte: 0}, b: {$gte: 0}});
            } else if (m == 1) {
                coll.find({a: {$gte: 0}, b: {$gte: 0}}).itcount();
            } else if (m == 2) {
                coll.remove({a: {$gte: 0}, b: {$gte: 0}});
            } else if (m == 3) {
                coll.update({a: {$gte: 0}, b: {$gte: 0}}, {});
            } else if (m == 4) {
                coll.distinct('x', {a: {$gte: 0}, b: {$gte: 0}});
            }
        } catch (e) {
            print("Op killed during yield: " + e.message);
        }
    }

    shellWaitHandle();

    // Ensure that the server is still responding
    assert.commandWorked(db.runCommand({isMaster: 1}));
})();