summaryrefslogtreecommitdiff
path: root/jstests/sharding/jumbo1.js
blob: 02f18530533de5f30aed2b673c25c483a76bc8f4 (plain)
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
(function() {

var s = new ShardingTest({ name: "jumbo1",
                           shards: 2,
                           mongos: 1,
                           other: { chunkSize: 1 } });

s.adminCommand( { enablesharding : "test" } );
s.ensurePrimaryShard('test', 'shard0001');
s.adminCommand( { shardcollection : "test.foo" , key : { x : 1 } } );

db = s.getDB( "test" );

big = ""
while ( big.length < 10000 )
    big += "."

x = 0;
var bulk = db.foo.initializeUnorderedBulkOp();
for ( ; x < 500; x++ )
    bulk.insert( { x : x , big : big } );

for ( i=0; i<500; i++ )
    bulk.insert( { x : x , big : big } );

for ( ; x < 2000; x++ )
    bulk.insert( { x : x , big : big } );

assert.writeOK( bulk.execute() );

sh.status(true)

res = sh.moveChunk( "test.foo" , { x : 0 } , "shard0001" )
if ( ! res.ok )
    res = sh.moveChunk( "test.foo" , { x : 0 } , "shard0000" )

sh.status(true)

sh.setBalancerState( true )

function diff1(){
    var x = s.chunkCounts( "foo" );
    printjson( x )
    return Math.max( x.shard0000 , x.shard0001 ) - Math.min( x.shard0000 , x.shard0001 );
}

assert.soon( function(){
    var d = diff1();
    print( "diff: " + d );
    sh.status(true)
    return d < 5;
} , "balance didn't happen" , 1000 * 60 * 5 , 5000 );


s.stop();

})();