diff options
author | Geert Bosch <geert@mongodb.com> | 2014-11-04 18:19:13 -0500 |
---|---|---|
committer | Geert Bosch <geert@mongodb.com> | 2014-11-04 18:19:42 -0500 |
commit | e35ccbf0d56ae9ced083c558faa9359ca53e9bc0 (patch) | |
tree | e74f52f1ee72e4ad44313d285b6b71609751c4da /jstests/parallel | |
parent | a07b925d350b125daf6bfc0e3c514c55a493a1fb (diff) | |
download | mongo-e35ccbf0d56ae9ced083c558faa9359ca53e9bc0.tar.gz |
Reduce memory usage of manyclients.js
Diffstat (limited to 'jstests/parallel')
-rw-r--r-- | jstests/parallel/manyclients.js | 3 |
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 || |