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
|
//
// Tests that merging chunks does not prevent cluster from doing other metadata ops
//
var options = { separateConfig : true, shardOptions : { verbose : 0 } };
var st = new ShardingTest({ shards : 2, mongos : 2, other : options });
st.stopBalancer();
var mongos = st.s0;
var staleMongos = st.s1;
var admin = mongos.getDB( "admin" );
var shards = mongos.getCollection( "config.shards" ).find().toArray();
var coll = mongos.getCollection( "foo.bar" );
assert( admin.runCommand({ enableSharding : coll.getDB() + "" }).ok );
printjson( admin.runCommand({ movePrimary : coll.getDB() + "", to : shards[0]._id }) );
assert( admin.runCommand({ shardCollection : coll + "", key : { _id : 1 } }).ok );
st.printShardingStatus();
// Split and merge the first chunk repeatedly
jsTest.log( "Splitting and merging repeatedly..." );
for ( var i = 0; i < 5; i++ ) {
assert( admin.runCommand({ split : coll + "", middle : { _id : i } }).ok );
assert( admin.runCommand({ mergeChunks : coll + "",
bounds : [{ _id : MinKey }, { _id : MaxKey }] }).ok );
printjson( mongos.getDB("config").chunks.find().toArray() );
}
// Move the first chunk to the other shard
jsTest.log( "Moving to another shard..." );
assert( admin.runCommand({ moveChunk : coll + "", find : { _id : 0 }, to : shards[1]._id }).ok );
// Split and merge the chunk repeatedly
jsTest.log( "Splitting and merging repeatedly (again)..." );
for ( var i = 0; i < 5; i++ ) {
assert( admin.runCommand({ split : coll + "", middle : { _id : i } }).ok );
assert( admin.runCommand({ mergeChunks : coll + "",
bounds : [{ _id : MinKey }, { _id : MaxKey }] }).ok );
printjson( mongos.getDB("config").chunks.find().toArray() );
}
// Move the chunk back to the original shard
jsTest.log( "Moving to original shard..." );
assert( admin.runCommand({ moveChunk : coll + "", find : { _id : 0 }, to : shards[0]._id }).ok );
st.printShardingStatus();
jsTest.log( "DONE!" );
st.stop();
|