Files
mongo/jstests/sharding/presplit.js
Kaloian Manassiev 3db9d1338c SERVER-21009 Remove usages of the multi-argument ShardingTest constructor
No functional changes, just converting everything to use the JSON-based
constructor.

Also moves some sharding-specific tests out of noPassthroughWithMongod and
under the sharding suite.
2015-10-23 09:50:35 -04:00

44 lines
1.2 KiB
JavaScript

(function() {
var s = new ShardingTest({ name: "presplit",
shards: 2,
mongos: 1,
other: { chunkSize : 1 } });
s.adminCommand( { enablesharding : "test" } );
s.ensurePrimaryShard('test', 'shard0001');
// Insert enough data in 'test.foo' to fill several chunks, if it was sharded.
bigString = "";
while ( bigString.length < 10000 ){
bigString += "asdasdasdasdadasdasdasdasdasdasdasdasda";
}
db = s.getDB( "test" );
inserted = 0;
num = 0;
var bulk = db.foo.initializeUnorderedBulkOp();
while ( inserted < ( 20 * 1024 * 1024 ) ){
bulk.insert({ _id: num++, s: bigString });
inserted += bigString.length;
}
assert.writeOK(bulk.execute());
// Make sure that there's only one chunk holding all the data.
s.printChunks();
primary = s.getServer( "test" ).getDB( "test" );
assert.eq( 0 , s.config.chunks.count() , "single chunk assertion" );
assert.eq( num , primary.foo.count() );
s.adminCommand( { shardcollection : "test.foo" , key : { _id : 1 } } );
// Make sure the collection's original chunk got split
s.printChunks();
assert.lt( 20 , s.config.chunks.count() , "many chunks assertion" );
assert.eq( num , primary.foo.count() );
s.printChangeLog();
s.stop();
})();