diff options
author | Geert Bosch <geert@mongodb.com> | 2014-10-29 06:13:48 -0400 |
---|---|---|
committer | Geert Bosch <geert@mongodb.com> | 2014-10-30 20:43:58 -0400 |
commit | 8111434d26a94794d4db3605fb004d0036cba990 (patch) | |
tree | 517b2511fa2cddf0291e589da4120b705a1ce263 /jstests/mmap_v1 | |
parent | 6a54dd5708f5996bd66c00b48386c95ca95f249f (diff) | |
download | mongo-8111434d26a94794d4db3605fb004d0036cba990.tar.gz |
BF-615: Reduce memory usage on 32-bit systems even more
Diffstat (limited to 'jstests/mmap_v1')
-rw-r--r-- | jstests/mmap_v1/dur_big_atomic_update.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/mmap_v1/dur_big_atomic_update.js b/jstests/mmap_v1/dur_big_atomic_update.js index 2537358c57c..04531a75fd1 100644 --- a/jstests/mmap_v1/dur_big_atomic_update.js +++ b/jstests/mmap_v1/dur_big_atomic_update.js @@ -15,7 +15,7 @@ for (var i = 0; i < 1024; i++){ assert.writeOK(bulk.execute()); var server_bits = db.serverStatus().mem.bits; -var big_string_size = (server_bits == 32 ? 128 *1024 : 1024*1024); +var big_string_size = (server_bits == 32 ? 64 * 1024 : 1024*1024); var big_string = 'xxxxxxxxxxxxxxxx'; while (big_string.length < big_string_size) { |