summaryrefslogtreecommitdiff
path: root/jstests/sharding/merge_chunks_test.js
blob: 5d3bfbbb97b94ec65c834d2953e617c19bf3a14b (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
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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
//
// Tests that merging chunks via mongos works/doesn't work with different chunk configurations
//
(function() {
    'use strict';

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

    var mongos = st.s0;
    var staleMongos = st.s1;
    var admin = mongos.getDB("admin");
    var coll = mongos.getCollection("foo.bar");

    assert.commandWorked(admin.runCommand({enableSharding: coll.getDB() + ""}));
    st.ensurePrimaryShard('foo', st.shard0.shardName);
    assert.commandWorked(admin.runCommand({shardCollection: coll + "", key: {_id: 1}}));

    // Create ranges MIN->0,0->10,(hole),20->40,40->50,50->90,(hole),100->110,110->MAX on first
    // shard
    jsTest.log("Creating ranges...");

    assert.commandWorked(admin.runCommand({split: coll + "", middle: {_id: 0}}));
    assert.commandWorked(admin.runCommand({split: coll + "", middle: {_id: 10}}));
    assert.commandWorked(admin.runCommand({split: coll + "", middle: {_id: 20}}));
    assert.commandWorked(admin.runCommand({split: coll + "", middle: {_id: 40}}));
    assert.commandWorked(admin.runCommand({split: coll + "", middle: {_id: 50}}));
    assert.commandWorked(admin.runCommand({split: coll + "", middle: {_id: 90}}));
    assert.commandWorked(admin.runCommand({split: coll + "", middle: {_id: 100}}));
    assert.commandWorked(admin.runCommand({split: coll + "", middle: {_id: 110}}));

    assert.commandWorked(
        admin.runCommand({moveChunk: coll + "", find: {_id: 10}, to: st.shard1.shardName}));
    assert.commandWorked(
        admin.runCommand({moveChunk: coll + "", find: {_id: 90}, to: st.shard1.shardName}));

    st.printShardingStatus();

    // Insert some data into each of the consolidated ranges
    assert.writeOK(coll.insert({_id: 0}));
    assert.writeOK(coll.insert({_id: 10}));
    assert.writeOK(coll.insert({_id: 40}));
    assert.writeOK(coll.insert({_id: 110}));

    var staleCollection = staleMongos.getCollection(coll + "");

    jsTest.log("Trying merges that should fail...");

    // S0: min->0, 0->10, 20->40, 40->50, 50->90, 100->110, 110->max
    // S1: 10->20, 90->100

    // Make sure merging non-exact chunks is invalid
    assert.commandFailed(
        admin.runCommand({mergeChunks: coll + "", bounds: [{_id: MinKey}, {_id: 5}]}));
    assert.commandFailed(admin.runCommand({mergeChunks: coll + "", bounds: [{_id: 5}, {_id: 10}]}));
    assert.commandFailed(
        admin.runCommand({mergeChunks: coll + "", bounds: [{_id: 15}, {_id: 50}]}));
    assert.commandFailed(
        admin.runCommand({mergeChunks: coll + "", bounds: [{_id: 20}, {_id: 55}]}));
    assert.commandFailed(
        admin.runCommand({mergeChunks: coll + "", bounds: [{_id: 105}, {_id: MaxKey}]}));

    // Make sure merging single chunks is invalid
    assert.commandFailed(
        admin.runCommand({mergeChunks: coll + "", bounds: [{_id: MinKey}, {_id: 0}]}));
    assert.commandFailed(
        admin.runCommand({mergeChunks: coll + "", bounds: [{_id: 20}, {_id: 40}]}));
    assert.commandFailed(
        admin.runCommand({mergeChunks: coll + "", bounds: [{_id: 110}, {_id: MaxKey}]}));

    // Make sure merging over holes is invalid
    assert.commandFailed(admin.runCommand({mergeChunks: coll + "", bounds: [{_id: 0}, {_id: 40}]}));
    assert.commandFailed(
        admin.runCommand({mergeChunks: coll + "", bounds: [{_id: 40}, {_id: 110}]}));
    assert.commandFailed(
        admin.runCommand({mergeChunks: coll + "", bounds: [{_id: 50}, {_id: 110}]}));

    // Make sure merging between shards is invalid
    assert.commandFailed(admin.runCommand({mergeChunks: coll + "", bounds: [{_id: 0}, {_id: 20}]}));
    assert.commandFailed(
        admin.runCommand({mergeChunks: coll + "", bounds: [{_id: 10}, {_id: 40}]}));
    assert.commandFailed(
        admin.runCommand({mergeChunks: coll + "", bounds: [{_id: 40}, {_id: 100}]}));
    assert.eq(4, staleCollection.find().itcount());

    jsTest.log("Trying merges that should succeed...");

    // Make sure merge including the MinKey works
    assert.commandWorked(
        admin.runCommand({mergeChunks: coll + "", bounds: [{_id: MinKey}, {_id: 10}]}));
    assert.eq(4, staleCollection.find().itcount());
    // S0: min->10, 20->40, 40->50, 50->90, 100->110, 110->max
    // S1: 10->20, 90->100

    // Make sure merging three chunks in the middle works
    assert.commandWorked(
        admin.runCommand({mergeChunks: coll + "", bounds: [{_id: 20}, {_id: 90}]}));
    assert.eq(4, staleCollection.find().itcount());
    // S0: min->10, 20->90, 100->110, 110->max
    // S1: 10->20, 90->100

    // Make sure merge including the MaxKey works
    assert.commandWorked(
        admin.runCommand({mergeChunks: coll + "", bounds: [{_id: 100}, {_id: MaxKey}]}));
    assert.eq(4, staleCollection.find().itcount());
    // S0: min->10, 20->90, 100->max
    // S1: 10->20, 90->100

    // Make sure merging chunks after a chunk has been moved out of a shard succeeds
    assert.commandWorked(
        admin.runCommand({moveChunk: coll + "", find: {_id: 110}, to: st.shard1.shardName}));
    assert.commandWorked(
        admin.runCommand({moveChunk: coll + "", find: {_id: 10}, to: st.shard0.shardName}));
    assert.eq(4, staleCollection.find().itcount());
    // S0: min->10, 10->20, 20->90
    // S1: 90->100, 100->max

    assert.commandWorked(
        admin.runCommand({mergeChunks: coll + "", bounds: [{_id: 90}, {_id: MaxKey}]}));
    assert.eq(4, staleCollection.find().itcount());
    // S0: min->10, 10->20, 20->90
    // S1: 90->max

    // Make sure merge on the other shard after a chunk has been merged succeeds
    assert.commandWorked(
        admin.runCommand({mergeChunks: coll + "", bounds: [{_id: MinKey}, {_id: 90}]}));
    // S0: min->90
    // S1: 90->max

    st.printShardingStatus(true);

    assert.eq(2, st.s0.getDB('config').chunks.find({'ns': 'foo.bar'}).itcount());
    assert.eq(
        1,
        st.s0.getDB('config')
            .chunks
            .find({'ns': 'foo.bar', 'min._id': MinKey, 'max._id': 90, shard: st.shard0.shardName})
            .itcount());
    assert.eq(
        1,
        st.s0.getDB('config')
            .chunks
            .find({'ns': 'foo.bar', 'min._id': 90, 'max._id': MaxKey, shard: st.shard1.shardName})
            .itcount());

    st.stop();
})();