diff options
author | Dan Pasette <dan@10gen.com> | 2015-07-14 12:49:29 -0400 |
---|---|---|
committer | Dan Pasette <dan@mongodb.com> | 2015-07-14 12:50:19 -0400 |
commit | 2f631e87fc531b905605dc93f4d1a0dab26e28f9 (patch) | |
tree | 050566ad0b5a1d334050409cd739909ab48b24f2 /jstests/parallel | |
parent | e8b1c31e6739883b18d2cad635304c951fd570e5 (diff) | |
download | mongo-2f631e87fc531b905605dc93f4d1a0dab26e28f9.tar.gz |
WT-1989 Reducing the number of threads to 100 to alleviate memory pressure
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 a00734d3c6c..62c0e7f0d1b 100644 --- a/jstests/parallel/manyclients.js +++ b/jstests/parallel/manyclients.js @@ -10,7 +10,8 @@ Random.setRandomSeed(); t = new ParallelTester(); // v8 uses about 30M (res) per thread, so can't do many more on an 8GB system -numThreads = 125; +// Reducing the number of threads to 100 because of WT-1989 +numThreads = 100; buildInfo = db.adminCommand( "buildInfo" ).buildEnvironment if ( buildInfo.bits < 64 || |