blob: 43f6ed3910c1441c385029f85e919c2a2af781fb (
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
|
// SERVER-16469: test that the findAndModify command will correctly sort a large amount of data
// without hitting the internal sort memory limit (using a "top-K sort", where K=1).
//
// Note that this test sets the server parameter "internalQueryExecMaxBlockingSortBytes", and
// restores the original value of the parameter before exiting. As a result, this test cannot run
// in the sharding passthrough (because mongos does not have this parameter), and cannot run in the
// parallel suite (because the change of the parameter value would interfere with other tests).
var coll = db.find_and_modify_server16469;
coll.drop();
// Set the internal sort memory limit to 1MB.
var result = db.adminCommand({getParameter: 1, internalQueryExecMaxBlockingSortBytes: 1});
assert.commandWorked(result);
var oldSortLimit = result.internalQueryExecMaxBlockingSortBytes;
var newSortLimit = 1024 * 1024;
assert.commandWorked(
db.adminCommand({setParameter: 1, internalQueryExecMaxBlockingSortBytes: newSortLimit}));
try {
// Insert ~3MB of data.
var largeStr = '';
for (var i = 0; i < 32 * 1024; ++i) {
largeStr += 'x';
}
for (var i = 0; i < 100; ++i) {
assert.writeOK(coll.insert({a: largeStr, b: i}));
}
// Verify that an unindexed sort of this data fails with a find() if no limit is specified.
assert.throws(function() {
coll.find({}).sort({b: 1}).itcount();
});
// Verify that an unindexed sort of this data succeeds with findAndModify (which should be
// requesting a top-K sort).
result = coll.runCommand(
{findAndModify: coll.getName(), query: {}, update: {$set: {c: 1}}, sort: {b: 1}});
assert.commandWorked(result);
assert.neq(result.value, null);
assert.eq(result.value.b, 0);
} finally {
// Restore the orginal sort memory limit.
assert.commandWorked(
db.adminCommand({setParameter: 1, internalQueryExecMaxBlockingSortBytes: oldSortLimit}));
}
|