summaryrefslogtreecommitdiff
path: root/jstests/perf
diff options
context:
space:
mode:
authoragirbal <antoine@10gen.com>2011-12-06 15:04:15 -0800
committeragirbal <antoine@10gen.com>2011-12-06 15:04:15 -0800
commit43fed132660bdfe1b779d0b8893032e92ccd7b84 (patch)
tree8fdd04c01c89ae97c434f9259bb5a5bdd9a830c9 /jstests/perf
parent1e2b1b04ab525f6096c5ef86b0f2f4436940d862 (diff)
downloadmongo-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.js4
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);