summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDan Pasette <dan@10gen.com>2015-07-14 12:57:50 -0400
committerDan Pasette <dan@mongodb.com>2015-07-14 12:57:50 -0400
commit66cb570f7b0e5de6dc4a58238e320fcf65396806 (patch)
treeacb712e78fcde1aa5bc9fd18a5bd05b7c734c256
parent1e614047bcb351e89dbb74b3d2630c151180262b (diff)
downloadmongo-66cb570f7b0e5de6dc4a58238e320fcf65396806.tar.gz
WT-1989 Reducing the number of threads to 100 to alleviate memory pressure
-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 9b86680e26b..ada7916f811 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" )
if ( buildInfo.bits < 64 ||