summaryrefslogtreecommitdiff
path: root/jstests/sharding/presplit.js
blob: 87d4e81a3150456adb59a9f991a9886735a254ad (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
(function() {

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

s.adminCommand({enablesharding: "test"});
s.ensurePrimaryShard('test', s.shard1.shardName);

// Insert enough data in 'test.foo' to fill several chunks, if it was sharded.
bigString = "";
while (bigString.length < 10000) {
    bigString += "asdasdasdasdadasdasdasdasdasdasdasdasda";
}

db = s.getDB("test");
inserted = 0;
num = 0;
var bulk = db.foo.initializeUnorderedBulkOp();
while (inserted < (20 * 1024 * 1024)) {
    bulk.insert({_id: num++, s: bigString});
    inserted += bigString.length;
}
assert.commandWorked(bulk.execute());

// Make sure that there's only one chunk holding all the data.
s.printChunks();
primary = s.getPrimaryShard("test").getDB("test");
assert.eq(0, s.config.chunks.count({"ns": "test.foo"}), "single chunk assertion");
assert.eq(num, primary.foo.count());

s.adminCommand({shardcollection: "test.foo", key: {_id: 1}});

// Make sure the collection's original chunk got split
s.printChunks();
assert.lt(20, s.config.chunks.count({"ns": "test.foo"}), "many chunks assertion");
assert.eq(num, primary.foo.count());

s.printChangeLog();
s.stop();
})();