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
|
//
// Tests that a migration does not overwrite duplicate _ids on data transfer
//
var options = { separateConfig : true };
var st = new ShardingTest({ shards : 2, mongos : 1, other : options });
st.stopBalancer();
var mongos = st.s0;
var shards = mongos.getDB( "config" ).shards.find().toArray();
shards[0].conn = st.shard0;
shards[1].conn = st.shard1;
var admin = mongos.getDB( "admin" );
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 : { skey : 1 } }).ok );
assert( admin.runCommand({ split : coll + "", middle : { skey : 0 } }).ok );
assert( admin.runCommand({ moveChunk : coll + "", find : { skey : 0 }, to : shards[1]._id }).ok );
var id = 12345;
jsTest.log( "Inserting a document with id : 12345 into both shards with diff shard key..." );
coll.insert({ _id : id, skey : -1 });
assert.eq( null, coll.getDB().getLastError() );
coll.insert({ _id : id, skey : 1 });
assert.eq( null, coll.getDB().getLastError() );
printjson( shards[0].conn.getCollection( coll + "" ).find({ _id : id }).toArray() );
printjson( shards[1].conn.getCollection( coll + "" ).find({ _id : id }).toArray() );
assert.eq( 2, coll.find({ _id : id }).itcount() );
jsTest.log( "Moving both chunks to same shard..." );
var result = admin.runCommand({ moveChunk : coll + "", find : { skey : -1 }, to : shards[1]._id });
printjson( result );
printjson( shards[0].conn.getCollection( coll + "" ).find({ _id : id }).toArray() );
printjson( shards[1].conn.getCollection( coll + "" ).find({ _id : id }).toArray() );
assert.eq( 2, coll.find({ _id : id }).itcount() );
st.stop();
|