summaryrefslogtreecommitdiff
path: root/jstests/sharding/views.js
blob: 4f066eaf72e1869ac0e17a2c0a097c1fc4421310 (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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
/**
 * Tests for expected behavior when querying a view that is based on a sharded collection.
 * @tags: [requires_find_command]
 */
(function() {
    "use strict";

    // For profilerHasSingleMatchingEntryOrThrow.
    load("jstests/libs/profiler.js");

    // Given sharded explain output in 'shardedExplain', verifies that the explain mode 'verbosity'
    // affected the output verbosity appropriately, and that the response has the expected format.
    function verifyExplainResult(shardedExplain, verbosity) {
        assert.commandWorked(shardedExplain);
        assert(shardedExplain.hasOwnProperty("shards"), tojson(shardedExplain));
        for (let elem in shardedExplain.shards) {
            let shard = shardedExplain.shards[elem];
            assert(shard.stages[0].hasOwnProperty("$cursor"), tojson(shardedExplain));
            assert(shard.stages[0].$cursor.hasOwnProperty("queryPlanner"), tojson(shardedExplain));
            if (verbosity === "queryPlanner") {
                assert(!shard.stages[0].$cursor.hasOwnProperty("executionStats"),
                       tojson(shardedExplain));
            } else if (verbosity === "executionStats") {
                assert(shard.stages[0].$cursor.hasOwnProperty("executionStats"),
                       tojson(shardedExplain));
                assert(!shard.stages[0].$cursor.executionStats.hasOwnProperty("allPlansExecution"),
                       tojson("shardedExplain"));
            } else {
                assert.eq(verbosity, "allPlansExecution", tojson(shardedExplain));
                assert(shard.stages[0].$cursor.hasOwnProperty("executionStats"),
                       tojson(shardedExplain));
                assert(shard.stages[0].$cursor.executionStats.hasOwnProperty("allPlansExecution"),
                       tojson(shardedExplain));
            }
        }
    }

    let st = new ShardingTest({name: "views_sharded", shards: 2, other: {enableBalancer: false}});

    let mongos = st.s;
    let config = mongos.getDB("config");
    let db = mongos.getDB(jsTestName());
    db.dropDatabase();

    let coll = db.getCollection("coll");

    assert.commandWorked(config.adminCommand({enableSharding: db.getName()}));
    st.ensurePrimaryShard(db.getName(), "shard0000");
    assert.commandWorked(config.adminCommand({shardCollection: coll.getFullName(), key: {a: 1}}));

    assert.commandWorked(mongos.adminCommand({split: coll.getFullName(), middle: {a: 6}}));
    assert.commandWorked(
        db.adminCommand({moveChunk: coll.getFullName(), find: {a: 25}, to: "shard0001"}));

    for (let i = 0; i < 10; ++i) {
        assert.writeOK(coll.insert({a: i}));
    }

    assert.commandWorked(db.createView("view", coll.getName(), [{$match: {a: {$gte: 4}}}]));
    let view = db.getCollection("view");

    const explainVerbosities = ["queryPlanner", "executionStats", "allPlansExecution"];

    //
    // find
    //
    assert.eq(5, view.find({a: {$lte: 8}}).itcount());

    let result = db.runCommand({explain: {find: "view", filter: {a: {$lte: 7}}}});
    verifyExplainResult(result, "allPlansExecution");
    for (let verbosity of explainVerbosities) {
        result =
            db.runCommand({explain: {find: "view", filter: {a: {$lte: 7}}}, verbosity: verbosity});
        verifyExplainResult(result, verbosity);
    }

    //
    // aggregate
    //
    assert.eq(5, view.aggregate([{$match: {a: {$lte: 8}}}]).itcount());

    // Test that the explain:true flag for the aggregate command results in queryPlanner verbosity.
    result =
        db.runCommand({aggregate: "view", pipeline: [{$match: {a: {$lte: 8}}}], explain: true});
    verifyExplainResult(result, "queryPlanner");

    result = db.runCommand(
        {explain: {aggregate: "view", pipeline: [{$match: {a: {$lte: 8}}}], cursor: {}}});
    verifyExplainResult(result, "allPlansExecution");
    for (let verbosity of explainVerbosities) {
        result = db.runCommand({
            explain: {aggregate: "view", pipeline: [{$match: {a: {$lte: 8}}}], cursor: {}},
            verbosity: verbosity
        });
        verifyExplainResult(result, verbosity);
    }

    //
    // count
    //
    assert.eq(5, view.count({a: {$lte: 8}}));

    result = db.runCommand({explain: {count: "view", query: {a: {$lte: 8}}}});
    verifyExplainResult(result, "allPlansExecution");
    for (let verbosity of explainVerbosities) {
        result =
            db.runCommand({explain: {count: "view", query: {a: {$lte: 8}}}, verbosity: verbosity});
        verifyExplainResult(result, verbosity);
    }

    //
    // distinct
    //
    result = db.runCommand({distinct: "view", key: "a", query: {a: {$lte: 8}}});
    assert.commandWorked(result);
    assert.eq([4, 5, 6, 7, 8], result.values.sort());

    result = db.runCommand({explain: {distinct: "view", key: "a", query: {a: {$lte: 8}}}});
    verifyExplainResult(result, "allPlansExecution");
    for (let verbosity of explainVerbosities) {
        result = db.runCommand(
            {explain: {distinct: "view", key: "a", query: {a: {$lte: 8}}}, verbosity: verbosity});
        verifyExplainResult(result, verbosity);
    }

    //
    // Confirm cleanupOrphaned command fails.
    //
    result = st.getPrimaryShard(db.getName()).getDB("admin").runCommand({
        cleanupOrphaned: view.getFullName()
    });
    assert.commandFailedWithCode(result, ErrorCodes.CommandNotSupportedOnView);

    //
    //  Confirm getShardVersion command fails.
    //
    assert.commandFailedWithCode(db.adminCommand({getShardVersion: view.getFullName()}),
                                 ErrorCodes.NamespaceNotSharded);

    //
    // Confirm that the comment parameter on a find command is retained when rewritten as an
    // expanded aggregation on the view.
    //
    let sdb = st.shard0.getDB(jsTestName());
    assert.commandWorked(sdb.setProfilingLevel(2));

    assert.eq(5, view.find({a: {$lte: 8}}).comment("agg_comment").itcount());

    profilerHasSingleMatchingEntryOrThrow({
        profileDB: sdb,
        filter: {
            "command.aggregate": coll.getName(),
            "command.comment": "agg_comment",
            "command.needsMerge": true,
            "command.pipeline.$mergeCursors": {$exists: false}
        }
    });

    st.stop();
})();