summaryrefslogtreecommitdiff
path: root/jstests/parallel
diff options
context:
space:
mode:
authorGeert Bosch <geert@mongodb.com>2014-11-04 18:19:13 -0500
committerGeert Bosch <geert@mongodb.com>2014-11-04 18:19:42 -0500
commite35ccbf0d56ae9ced083c558faa9359ca53e9bc0 (patch)
treee74f52f1ee72e4ad44313d285b6b71609751c4da /jstests/parallel
parenta07b925d350b125daf6bfc0e3c514c55a493a1fb (diff)
downloadmongo-e35ccbf0d56ae9ced083c558faa9359ca53e9bc0.tar.gz
Reduce memory usage of manyclients.js
Diffstat (limited to 'jstests/parallel')
-rw-r--r--jstests/parallel/manyclients.js3
1 files changed, 2 insertions, 1 deletions
diff --git a/jstests/parallel/manyclients.js b/jstests/parallel/manyclients.js
index ce5172301a4..68ded2d5d33 100644
--- a/jstests/parallel/manyclients.js
+++ b/jstests/parallel/manyclients.js
@@ -9,7 +9,8 @@ Random.setRandomSeed();
t = new ParallelTester();
-numThreads = 200;
+// v8 uses about 30M (res) per thread, so can't do many more on an 8GB system
+numThreads = 150;
buildInfo = db.adminCommand( "buildInfo" )
if ( buildInfo.bits < 64 ||