mirror of https://github.com/mongodb/mongo
30 lines
968 B
JavaScript
30 lines
968 B
JavaScript
/**
|
|
* Test to make sure that the createIndex command gets sent to shards that own chunks.
|
|
*/
|
|
import {ShardingTest} from "jstests/libs/shardingtest.js";
|
|
|
|
let st = new ShardingTest({shards: 2});
|
|
assert.commandWorked(st.s.adminCommand({enablesharding: "test", primaryShard: st.shard1.shardName}));
|
|
|
|
let testDB = st.s.getDB("test");
|
|
assert.commandWorked(testDB.adminCommand({shardcollection: "test.user", key: {_id: 1}}));
|
|
|
|
// Move only chunk out of primary shard.
|
|
assert.commandWorked(testDB.adminCommand({movechunk: "test.user", find: {_id: 0}, to: st.shard0.shardName}));
|
|
|
|
assert.commandWorked(testDB.user.insert({_id: 0}));
|
|
|
|
let res = testDB.user.createIndex({i: 1});
|
|
assert.commandWorked(res);
|
|
|
|
let indexes = testDB.user.getIndexes();
|
|
assert.eq(2, indexes.length);
|
|
|
|
indexes = st.rs0.getPrimary().getDB("test").user.getIndexes();
|
|
assert.eq(2, indexes.length);
|
|
|
|
indexes = st.rs1.getPrimary().getDB("test").user.getIndexes();
|
|
assert.eq(1, indexes.length);
|
|
|
|
st.stop();
|