summaryrefslogtreecommitdiff
path: root/jstests/aggregation/testshard1.js
blob: 58e6fdbbfb403038948fd666767c602ffcd30b94 (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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
load('jstests/aggregation/extras/utils.js');

// Use this for aggregations that only have arrays or results of specified order.
// It will check that cursors return the same results as non-cursors.
function aggregateOrdered(coll, pipeline) {
    var cursor = coll.aggregate(pipeline).toArray()
    var noCursor = coll.runCommand('aggregate', {pipeline:pipeline}).result
    assert.eq(cursor, noCursor);
    return cursor;
}

// Use this for aggregations that have arrays or results of unspecified order.
// It will bypass the check that cursors return the same results as non-cursors.
function aggregateNoOrder(coll, pipeline) {
    return coll.aggregate(pipeline).toArray();
}

/*
> ShardingTest
function (testName, numShards, verboseLevel, numMongos, otherParams) {
*/
var shardedAggTest = new ShardingTest({
    shards: 2,
    verbose: 2,
    mongos: 1,
    other: { chunksize : 1, separateConfig : true }
    }
);

shardedAggTest.adminCommand( { enablesharding : "aggShard" } );
db = shardedAggTest.getDB( "aggShard" );

/* make sure its cleaned up */
db.ts1.drop();
db.literal.drop();

shardedAggTest.adminCommand( { shardcollection : "aggShard.ts1", key : { "_id" : 1 } } );
shardedAggTest.adminCommand( { shardcollection : "aggShard.literal", key : { "_id" : 1 } } );


/*
Test combining results in mongos for operations that sub-aggregate on shards.

The unusual operators here are $avg, $pushToSet, $push.   In the case of $avg,
the shard pipeline produces an object with the current subtotal and item count
so that these can be combined in mongos by totalling the subtotals counts
before performing the final division.  For $pushToSet and $push, the shard
pipelines produce arrays, but in mongos these are combined rather than simply
being added as arrays within arrays.
*/

var count = 0;
var strings = [
    "one",
    "two",
    "three",
    "four",
    "five",
    "six",
    "seven",
    "eight",
    "nine",
    "ten",
    "eleven",
    "twelve",
    "thirteen",
    "fourteen",
    "fifteen",
    "sixteen",
    "seventeen",
    "eighteen",
    "nineteen",
    "twenty"
];

var nItems = 200000;
var bulk = db.ts1.initializeUnorderedBulkOp();
for(i = 1; i <= nItems; ++i) {
    bulk.insert(
        {counter: ++count, number: strings[i % 20], random: Math.random(),
         filler: "0123456789012345678901234567890123456789"});
}
assert.writeOK(bulk.execute());

// Turn on exception tracing in mongod to figure out exactly where the SCEs are coming from
// TEMPORARY - REMOVE ONCE SERVER-9622 IS RESOLVED
var config = db.getMongo().getDB("config");
var shards = config.shards.find().toArray();

jsTest.log( "Tracing all exceptions in mongod..." );
for ( var i = 0; i < shards.length; i++ ) {
    var shardConn = new Mongo( shards[i].host );
    printjson(shardConn.getDB( "admin" ).runCommand({ setParameter : 1, traceExceptions : true }));
}

// a project and group in shards, result combined in mongos
var a1 = aggregateNoOrder(db.ts1, [
    { $project: {
        cMod10: {$mod:["$counter", 10]},
        number: 1,
        counter: 1
    }},
    { $group: {
        _id: "$cMod10",
        numberSet: {$addToSet: "$number"},
        avgCounter: {$avg: "$cMod10"}
    }},
    { $sort: {_id:1} }
]);

for(i = 0 ; i < 10; ++i) {
    assert.eq(a1[i].avgCounter, a1[i]._id,
           'agg sharded test avgCounter failed');
    assert.eq(a1[i].numberSet.length, 2,
           'agg sharded test numberSet length failed');
}

// an initial group starts the group in the shards, and combines them in mongos
var a2 = aggregateOrdered(db.ts1 , [
    { $group: {
        _id: "all",
        total: {$sum: "$counter"}
    }}
]);

// sum of an arithmetic progression S(n) = (n/2)(a(1) + a(n));
assert.eq(a2[0].total, (nItems/2)*(1 + nItems),
       'agg sharded test counter sum failed');

// an initial group starts the group in the shards, and combines them in mongos
var a3 = aggregateOrdered(db.ts1, [
    { $group: {
        _id: "$number",
        total: {$sum: 1}
    }},
    { $sort: {_id:1} }
]);

for(i = 0 ; i < strings.length; ++i) {
    assert.eq(a3[i].total, nItems/strings.length,
           'agg sharded test sum numbers failed');
}

// a match takes place in the shards; just returning the results from mongos
var a4 = aggregateNoOrder(db.ts1, [
    { $match: {$or:[{counter:55}, {counter:1111},
                    {counter: 2222}, {counter: 33333},
                    {counter: 99999}, {counter: 55555}]}
    }
]);

assert.eq(a4.length, 6, tojson(a4));
for(i = 0; i < 6; ++i) {
    c = a4[i].counter;
    printjson({c:c})
    assert((c == 55) || (c == 1111) || (c == 2222) ||
           (c == 33333) || (c == 99999) || (c == 55555),
           'agg sharded test simple match failed');
}

function testSkipLimit(ops, expectedCount) {
    if (expectedCount > 10) {
        // make shard -> mongos intermediate results less than 16MB
        ops.unshift({$project: {_id:1}})
    }

    ops.push({$group: {_id:1, count: {$sum: 1}}});

    var out = aggregateOrdered(db.ts1, ops);
    assert.eq(out[0].count, expectedCount);
}

testSkipLimit([], nItems); // control
testSkipLimit([{$skip:10}], nItems - 10);
testSkipLimit([{$limit:10}], 10);
testSkipLimit([{$skip:5}, {$limit:10}], 10);
testSkipLimit([{$limit:10}, {$skip:5}], 10 - 5);
testSkipLimit([{$skip:5}, {$skip: 3}, {$limit:10}], 10);
testSkipLimit([{$skip:5}, {$limit:10}, {$skip: 3}], 10 - 3);
testSkipLimit([{$limit:10}, {$skip:5}, {$skip: 3}], 10 - 3 - 5);

// test sort + limit (using random to pull from both shards)
function testSortLimit(limit, direction) {
    shardedAggTest.stopBalancer(); // TODO: remove after fixing SERVER-9622
    var from_cursor = db.ts1.find({},{random:1, _id:0})
                            .sort({random: direction})
                            .limit(limit)
                            .toArray();
    shardedAggTest.startBalancer(); // TODO: remove after fixing SERVER-9622
    var from_agg = aggregateOrdered(db.ts1, [{$project: {random:1, _id:0}}
                                            ,{$sort: {random: direction}}
                                            ,{$limit: limit}
                                            ]);
    assert.eq(from_cursor, from_agg);
}
testSortLimit(1,  1);
testSortLimit(1, -1);
testSortLimit(10,  1);
testSortLimit(10, -1);
testSortLimit(100,  1);
testSortLimit(100, -1);

// test $out by copying source collection verbatim to output
var outCollection = db.ts1_out;
var res = aggregateOrdered(db.ts1, [{$out: outCollection.getName()}]);
shardedAggTest.stopBalancer(); // TODO: remove after fixing SERVER-9622
assert.eq(db.ts1.find().itcount(), outCollection.find().itcount());
assert.eq(db.ts1.find().sort({_id:1}).toArray(),
          outCollection.find().sort({_id:1}).toArray());
shardedAggTest.startBalancer(); // TODO: remove after fixing SERVER-9622

// Make sure we error out if $out collection is sharded
assertErrorCode(outCollection, [{$out: db.ts1.getName()}], 17017);

db.literal.save({dollar:false});

result = aggregateOrdered(db.literal,
            [{$project:{_id:0, cost:{$cond:['$dollar', {$literal:'$1.00'}, {$literal:'$.99'}]}}}]);

assert.eq([{cost:'$.99'}], result);

// Do a basic sharded explain. This just makes sure that it doesn't error and has the right fields.
var res = db.ts1.aggregate([{$project: {a: 1}}], {explain:true});
assert.commandWorked(res);
printjson(res);
assert("splitPipeline" in res);
assert("shardsPart" in res.splitPipeline);
assert("mergerPart" in res.splitPipeline);
assert("shards" in res);
for (var shardName in res.shards) {
    assert("host" in res.shards[shardName]);
    assert("stages" in res.shards[shardName]);
}

// Call sub-tests designed to work sharded and unsharded.
// They check for this variable to know to shard their collections.
RUNNING_IN_SHARDED_AGG_TEST = true; // global
load("jstests/aggregation/bugs/server9444.js"); // external sort
load("jstests/aggregation/bugs/server11675.js"); // text support

// shut everything down
shardedAggTest.stop();