diff options
author | agirbal <antoine@10gen.com> | 2011-12-06 15:04:15 -0800 |
---|---|---|
committer | agirbal <antoine@10gen.com> | 2011-12-06 15:04:15 -0800 |
commit | 43fed132660bdfe1b779d0b8893032e92ccd7b84 (patch) | |
tree | 8fdd04c01c89ae97c434f9259bb5a5bdd9a830c9 /jstests/perf | |
parent | 1e2b1b04ab525f6096c5ef86b0f2f4436940d862 (diff) | |
download | mongo-43fed132660bdfe1b779d0b8893032e92ccd7b84.tar.gz |
made mr_bench.js tougher now that it is in perf
Diffstat (limited to 'jstests/perf')
-rw-r--r-- | jstests/perf/mr_bench.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/perf/mr_bench.js b/jstests/perf/mr_bench.js index 1e24c65faf4..b3034f0e37e 100644 --- a/jstests/perf/mr_bench.js +++ b/jstests/perf/mr_bench.js @@ -67,7 +67,7 @@ assert.eq( count , res.counts.input , "A" ); x = db[res.result]; assert.eq( count , x.find().count() , "B" ); return 1; -}, "unique key mr", 20000); +}, "unique key mr", 15000); // 2nd MR emits the same key, and a unique value is added as key to same object // if object is kept in ram and being reduced, this can be really slow @@ -79,5 +79,5 @@ assert.eq( count , res.counts.input , "A" ); x = db[res.result]; assert.eq( 1 , x.find().count() , "B" ); return 1; -}, "single key mr", 30000); +}, "single key mr", 20000); |