summaryrefslogtreecommitdiff
path: root/jstests/sharding/tag_auto_split.js
blob: 46e9325052c7ff258c7cacd5bca2c320f8577ff3 (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
// Test to make sure that tag ranges get split when full keys are used for the tag ranges
(function() {
'use strict';

var s = new ShardingTest({shards: 2, mongos: 1});

assert.commandWorked(s.s0.adminCommand({enablesharding: "test"}));
s.ensurePrimaryShard('test', s.shard1.shardName);
assert.commandWorked(s.s0.adminCommand({shardcollection: "test.foo", key: {_id: 1}}));

assert.eq(1, s.config.chunks.find({"ns": "test.foo"}).itcount());

s.addShardTag(s.shard0.shardName, "a");
s.addShardTag(s.shard0.shardName, "b");

s.addTagRange("test.foo", {_id: 5}, {_id: 10}, "a");
s.addTagRange("test.foo", {_id: 10}, {_id: 15}, "b");

s.startBalancer();

assert.soon(function() {
    return s.config.chunks.find({"ns": "test.foo"}).itcount() == 4;
}, 'Split did not occur', 3 * 60 * 1000);

s.awaitBalancerRound();
s.printShardingStatus(true);
assert.eq(4, s.config.chunks.find({"ns": "test.foo"}).itcount(), 'Split points changed');

assert.eq(1, s.config.chunks.find({"ns": "test.foo", min: {_id: MinKey}}).itcount());
assert.eq(1, s.config.chunks.find({"ns": "test.foo", min: {_id: 5}}).itcount());
assert.eq(1, s.config.chunks.find({"ns": "test.foo", min: {_id: 10}}).itcount());
assert.eq(1, s.config.chunks.find({"ns": "test.foo", min: {_id: 15}}).itcount());

s.stop();
})();