Files
mongo/jstests/sharding/disable_autosplit.js

35 lines
997 B
JavaScript

// Tests disabling of autosplit.
(function() {
'use strict';
var chunkSizeMB = 1;
// Autosplit is disabled by default, but specify it anyway in case the default changes,
// especially since it defaults to the enableBalancer setting.
var st = new ShardingTest(
{shards: 1, mongos: 1, other: {chunkSize: chunkSizeMB, enableAutoSplit: false}});
var data = "x";
while (data.length < chunkSizeMB * 1024 * 1024) {
data += data;
}
var mongos = st.s0;
var admin = mongos.getDB("admin");
var config = mongos.getDB("config");
var coll = mongos.getCollection("foo.bar");
assert.commandWorked(admin.runCommand({enableSharding: coll.getDB() + ""}));
assert.commandWorked(admin.runCommand({shardCollection: coll + "", key: {_id: 1}}));
for (var i = 0; i < 20; i++) {
coll.insert({data: data});
}
// Make sure we haven't split
assert.eq(1, config.chunks.find({ns: coll + ""}).count());
st.stop();
})();