summaryrefslogtreecommitdiff
path: root/jstests/sharding/shard_keycount.js
blob: ae4c1d58574595871331a26a48212778f739ef67 (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
// Tests splitting a chunk twice
(function() {
    'use strict';

    var s = new ShardingTest({name: "shard_keycount", shards: 2, mongos: 1, other: {chunkSize: 1}});

    var dbName = "test";
    var collName = "foo";
    var ns = dbName + "." + collName;

    var db = s.getDB(dbName);

    for (var i = 0; i < 10; i++) {
        db.foo.insert({_id: i});
    }

    // Enable sharding on DB
    assert.commandWorked(s.s0.adminCommand({enablesharding: dbName}));
    s.ensurePrimaryShard(dbName, 'shard0001');

    // Enable sharding on collection
    assert.commandWorked(s.s0.adminCommand({shardcollection: ns, key: {_id: 1}}));

    // Split into two chunks
    assert.commandWorked(s.s0.adminCommand({split: ns, find: {_id: 3}}));

    var coll = db.getCollection(collName);

    // Split chunk again
    assert.commandWorked(s.s0.adminCommand({split: ns, find: {_id: 3}}));

    assert.writeOK(coll.update({_id: 3}, {_id: 3}));

    // Split chunk again
    assert.commandWorked(s.s0.adminCommand({split: ns, find: {_id: 3}}));

    assert.writeOK(coll.update({_id: 3}, {_id: 3}));

    // Split chunk again
    assert.commandWorked(s.s0.adminCommand({split: ns, find: {_id: 3}}));

    s.stop();
})();