1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59
|
// sharding_balance3.js
// simple test to make sure things get balanced
s = new ShardingTest( "slow_sharding_balance3" , 2 , 3 , 1 , { chunksize : 1 } );
s.adminCommand( { enablesharding : "test" } );
s.config.settings.find().forEach( printjson );
db = s.getDB( "test" );
bigString = ""
while ( bigString.length < 10000 )
bigString += "asdasdasdasdadasdasdasdasdasdasdasdasda";
inserted = 0;
num = 0;
while ( inserted < ( 40 * 1024 * 1024 ) ){
db.foo.insert( { _id : num++ , s : bigString } );
inserted += bigString.length;
}
db.getLastError();
s.adminCommand( { shardcollection : "test.foo" , key : { _id : 1 } } );
assert.lt( 20 , s.config.chunks.count() , "setup2" );
function diff1(){
var x = s.chunkCounts( "foo" );
printjson( x )
return Math.max( x.shard0000 , x.shard0001 ) - Math.min( x.shard0000 , x.shard0001 );
}
assert.lt( 10 , diff1() );
// Wait for balancer to kick in.
var initialDiff = diff1();
var maxRetries = 3;
while ( diff1() == initialDiff ){
sleep( 5000 );
assert.lt( 0, maxRetries--, "Balancer did not kick in.");
}
print("* A");
print( "disabling the balancer" );
s.config.settings.update( { _id : "balancer" }, { $set : { stopped : true } } , true );
s.config.settings.find().forEach( printjson );
print("* B");
print( diff1() )
var currDiff = diff1();
assert.repeat( function(){
var d = diff1();
return d != currDiff;
} , "balance with stopped flag should not have happened" , 1000 * 60 , 5000 );
s.stop()
|