blob: fb0cbdbdb4ace7ad4084e6632178350155cede14 (
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
58
59
|
//
// Basic tests for enableSharding command.
//
(function() {
'use strict';
var st = new ShardingTest({mongos: 2, shards: 2});
// enableSharding can run only on mongos.
assert.commandFailedWithCode(
st.rs0.getPrimary().getDB('admin').runCommand({enableSharding: 'db'}),
ErrorCodes.CommandNotFound);
// enableSharding can run only against the admin database.
assert.commandFailedWithCode(st.s0.getDB('test').runCommand({enableSharding: 'db'}),
ErrorCodes.Unauthorized);
// Can't shard 'local' database.
assert.commandFailed(st.s0.adminCommand({enableSharding: 'local'}));
// Can't shard 'admin' database.
assert.commandFailed(st.s0.adminCommand({enableSharding: 'admin'}));
// Can't shard db with the name that just differ on case.
assert.commandWorked(st.s0.adminCommand({enableSharding: 'db'}));
assert.eq(st.s0.getDB('config').databases.findOne({_id: 'db'}).partitioned, true);
assert.commandFailedWithCode(st.s0.adminCommand({enableSharding: 'DB'}),
ErrorCodes.DatabaseDifferCase);
// Can't shard invalid db name.
assert.commandFailed(st.s0.adminCommand({enableSharding: 'a.b'}));
assert.commandFailed(st.s0.adminCommand({enableSharding: ''}));
// Attempting to shard already sharded database returns success.
assert.commandWorked(st.s0.adminCommand({enableSharding: 'db'}));
assert.eq(st.s0.getDB('config').databases.findOne({_id: 'db'}).partitioned, true);
// Verify config.databases metadata.
assert.writeOK(st.s0.getDB('unsharded').foo.insert({aKey: "aValue"}));
assert.eq(st.s0.getDB('config').databases.findOne({_id: 'unsharded'}).partitioned, false);
assert.commandWorked(st.s0.adminCommand({enableSharding: 'unsharded'}));
assert.eq(st.s0.getDB('config').databases.findOne({_id: 'unsharded'}).partitioned, true);
// Sharding a collection before 'enableSharding' is called fails
assert.commandFailed(st.s0.adminCommand({shardCollection: 'TestDB.TestColl', key: {_id: 1}}));
assert.commandFailed(st.s1.adminCommand({shardCollection: 'TestDB.TestColl', key: {_id: 1}}));
assert.writeOK(st.s0.getDB('TestDB').TestColl.insert({_id: 0}));
assert.writeOK(st.s1.getDB('TestDB').TestColl.insert({_id: 1}));
// Calling 'enableSharding' on one mongos and 'shardCollection' through another must work
assert.commandWorked(st.s0.adminCommand({enableSharding: 'TestDB'}));
assert.commandWorked(st.s1.adminCommand({shardCollection: 'TestDB.TestColl', key: {_id: 1}}));
assert.commandWorked(st.s0.adminCommand({shardCollection: 'TestDB.TestColl', key: {_id: 1}}));
st.stop();
})();
|