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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
|
(function() {
'use strict';
var s = new ShardingTest({name: "version1", shards: 1});
assert.commandWorked(s.s0.adminCommand({enablesharding: "alleyinsider"}));
assert.commandWorked(s.s0.adminCommand({shardcollection: "alleyinsider.foo", key: {num: 1}}));
var a = s.shard0.getDB("admin");
assert.commandFailed(a.runCommand({setShardVersion: "alleyinsider.foo", configdb: s._configDB}));
assert.commandFailed(
a.runCommand({setShardVersion: "alleyinsider.foo", configdb: s._configDB, version: "a"}));
assert.commandFailed(a.runCommand(
{setShardVersion: "alleyinsider.foo", configdb: s._configDB, authoritative: true}));
assert.commandFailed(
a.runCommand(
{setShardVersion: "alleyinsider.foo", configdb: s._configDB, version: new Timestamp(2, 0)}),
"should have failed b/c no auth");
assert.commandFailed(a.runCommand({
setShardVersion: "alleyinsider.foo",
configdb: s._configDB,
version: new Timestamp(2, 0),
authoritative: true
}),
"should have failed because first setShardVersion needs shard info");
assert.commandFailed(a.runCommand({
setShardVersion: "alleyinsider.foo",
configdb: s._configDB,
version: new Timestamp(2, 0),
authoritative: true,
shard: "s.shard0.shardName",
shardHost: s.s.host
}),
"should have failed because version is config is 1|0");
var epoch = s.getDB('config').chunks.findOne({"ns": "alleyinsider.foo"}).lastmodEpoch;
assert.commandWorked(a.runCommand({
setShardVersion: "alleyinsider.foo",
configdb: s._configDB,
version: new Timestamp(1, 0),
versionEpoch: epoch,
authoritative: true,
shard: s.shard0.shardName,
shardHost: s.s.host
}),
"should have worked");
assert.commandFailed(a.runCommand({
setShardVersion: "alleyinsider.foo",
configdb: "a",
version: new Timestamp(0, 2),
versionEpoch: epoch
}));
assert.commandFailed(a.runCommand({
setShardVersion: "alleyinsider.foo",
configdb: s._configDB,
version: new Timestamp(0, 2),
versionEpoch: epoch
}));
assert.commandFailed(a.runCommand({
setShardVersion: "alleyinsider.foo",
configdb: s._configDB,
version: new Timestamp(0, 1),
versionEpoch: epoch
}));
// the only way that setSharVersion passes is if the shard agrees with the version
// the shard takes its version from config directly
// TODO bump timestamps in config
// assert.eq( a.runCommand( { "setShardVersion" : "alleyinsider.foo" , configdb : s._configDB ,
// version : 3 } ).oldVersion.i , 2 , "oldVersion" );
// assert.eq( a.runCommand( { "getShardVersion" : "alleyinsider.foo" } ).mine.i , 3 , "my get
// version A" );
// assert.eq( a.runCommand( { "getShardVersion" : "alleyinsider.foo" } ).global.i , 3 , "my get
// version B" );
s.stop();
})();
|