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
|
// Check that buildIndexes config option is working
(function() {
// Skip db hash check because secondary will have different number of indexes due to
// buildIndexes=false on the secondary.
TestData.skipCheckDBHashes = true;
var name = "buildIndexes";
var host = getHostName();
var replTest = new ReplSetTest({name: name, nodes: 3});
var nodes = replTest.startSet();
var config = replTest.getReplSetConfig();
config.members[2].priority = 0;
config.members[2].buildIndexes = false;
replTest.initiate(config);
var primary = replTest.getPrimary().getDB(name);
var secondaryConns = replTest.getSecondaries();
var secondaries = [];
for (var i in secondaryConns) {
secondaryConns[i].setSecondaryOk();
secondaries.push(secondaryConns[i].getDB(name));
}
replTest.awaitReplication();
// Need to use a commitQuorum of 2 rather than the default of 'votingMembers', which includes the
// buildIndexes:false node. The index build will otherwise fail early.
assert.commandWorked(primary.runCommand({
createIndexes: 'x',
indexes: [{key: {y: 1}, name: 'y_1'}],
commitQuorum: 2,
}));
for (i = 0; i < 100; i++) {
primary.x.insert({x: 1, y: "abc", c: 1});
}
replTest.awaitReplication();
assert.commandWorked(secondaries[0].runCommand({count: "x"}));
var indexes = secondaries[0].stats().indexes;
assert.eq(indexes, 2, 'number of indexes');
indexes = secondaries[1].stats().indexes;
assert.eq(indexes, 1);
indexes = secondaries[0].x.stats().indexSizes;
var count = 0;
for (i in indexes) {
count++;
if (i == "_id_") {
continue;
}
assert(i.match(/y_/));
}
assert.eq(count, 2);
indexes = secondaries[1].x.stats().indexSizes;
count = 0;
for (i in indexes) {
count++;
}
assert.eq(count, 1);
replTest.stopSet();
}());
|