summaryrefslogtreecommitdiff
path: root/jstests/sharding/migration_failure.js
blob: 65b21661a749a7f83b8ece2ffa55ead762d3c00a (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
//
// Tests that migration failures before and after commit correctly roll back 
// when possible
//

var options = { separateConfig : true };

var st = new ShardingTest({ shards : 2, mongos : 1, other : options });
st.stopBalancer();

var mongos = st.s0;
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 );
assert( admin.runCommand({ split : coll + "", middle : { _id : 0 } }).ok );

st.printShardingStatus();

jsTest.log("Testing failed migrations...");

assert.commandWorked(
    st.shard0.getDB("admin").runCommand({
        configureFailPoint : 'failMigrationConfigWritePrepare', mode : 'alwaysOn' }));

var version = st.shard0.getDB("admin").runCommand({ getShardVersion : coll.toString() });

assert.commandFailed( admin.runCommand({ moveChunk : coll + "",
                                         find : { _id : 0 },
                                         to : shards[1]._id }) );

var failVersion = st.shard0.getDB("admin").runCommand({ getShardVersion : coll.toString() });

assert.eq(version.global, failVersion.global);

jsTest.log( "DONE!" );

st.stop();