mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 01:21:03 +01:00
9ad8d6335f
There are likely more JavaScript tests which have been added since
r3.6.9 that still need to be tagged.
(cherry picked from commit 05ec08fa62
)
39 lines
759 B
JavaScript
39 lines
759 B
JavaScript
/**
|
|
* @tags: [
|
|
* uses_multiple_connections,
|
|
* ]
|
|
*/
|
|
t = db.bench_test3;
|
|
t.drop();
|
|
|
|
benchArgs = {
|
|
ops: [{
|
|
ns: t.getFullName(),
|
|
op: "update",
|
|
upsert: true,
|
|
query: {_id: {"#RAND_INT": [0, 5, 4]}},
|
|
update: {$inc: {x: 1}}
|
|
}],
|
|
parallel: 2,
|
|
seconds: 10,
|
|
host: db.getMongo().host
|
|
};
|
|
|
|
if (jsTest.options().auth) {
|
|
benchArgs['db'] = 'admin';
|
|
benchArgs['username'] = jsTest.options().authUser;
|
|
benchArgs['password'] = jsTest.options().authPassword;
|
|
}
|
|
|
|
res = benchRun(benchArgs);
|
|
printjson(res);
|
|
|
|
var keys = [];
|
|
var totals = {};
|
|
db.bench_test3.find().sort({_id: 1}).forEach(function(z) {
|
|
keys.push(z._id);
|
|
totals[z._id] = z.x;
|
|
});
|
|
printjson(totals);
|
|
assert.eq([0, 4, 8, 12, 16], keys);
|