diff options
author | Pierlauro Sciarelli <pierlauro.sciarelli@mongodb.com> | 2021-04-01 11:02:55 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2021-04-01 14:06:27 +0000 |
commit | 2619316a98b1b24f5c594c99e4426dead8de072f (patch) | |
tree | 80a2d7fd4fe55b603262e507a136895351487ca2 /jstests | |
parent | 6a1453c287b0befcf73dc3f339af997c185b81e2 (diff) | |
download | mongo-2619316a98b1b24f5c594c99e4426dead8de072f.tar.gz |
SERVER-55615 Reduce number of documents written in bulk_shard_insert.js
Diffstat (limited to 'jstests')
-rw-r--r-- | jstests/sharding/bulk_shard_insert.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/sharding/bulk_shard_insert.js b/jstests/sharding/bulk_shard_insert.js index a8bea4e3fc8..9b9167c6339 100644 --- a/jstests/sharding/bulk_shard_insert.js +++ b/jstests/sharding/bulk_shard_insert.js @@ -2,7 +2,7 @@ * Test bulk inserts running alonside the auto-balancer. Ensures that they do not conflict with each * other. * - * This test is labeled resource intensive because its total io_write is 106MB compared to a median + * This test is labeled resource intensive because its total io_write is ~26MB compared to a median * of 5MB across all sharding tests in wiredTiger. * @tags: [resource_intensive] */ @@ -29,7 +29,7 @@ var db = st.s0.getDB('TestDB'); var coll = db.TestColl; // Insert lots of bulk documents -var numDocs = 1000000; +var numDocs = 250000; var bulkSize = 4000; var docSize = 128; /* bytes */ |