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
75
76
77
78
79
80
81
82
83
84
85
86
|
/**
* Initiates a background index build on the primary, and while the secondary is building the index
* through replication, the primary drops all the indexes.
* @tags: [
* requires_replication,
* ]
*/
(function() {
'use strict';
load('jstests/noPassthrough/libs/index_build.js');
var dbname = 'dropbgindex';
var collection = 'jstests_feh';
var size = 100;
const replTest = new ReplSetTest({
nodes: [
{},
{
// Disallow elections on secondary.
rsConfig: {
priority: 0,
votes: 0,
},
slowms: 30000, // Don't log slow operations on secondary. See SERVER-44821.
},
]
});
const nodes = replTest.startSet();
replTest.initiate();
var primary = replTest.getPrimary();
var second = replTest.getSecondary();
var primaryDB = primary.getDB(dbname);
var secondDB = second.getDB(dbname);
var dc = {dropIndexes: collection, index: "i_1"};
// Setup collections.
primaryDB.dropDatabase();
jsTest.log("Creating test data " + size + " documents");
Random.setRandomSeed();
var bulk = primaryDB.getCollection(collection).initializeUnorderedBulkOp();
for (i = 0; i < size; ++i) {
bulk.insert({i: Random.rand()});
}
assert.commandWorked(bulk.execute({w: 2, wtimeout: replTest.kDefaultTimeoutMS}));
assert.commandWorked(
secondDB.adminCommand({configureFailPoint: "hangAfterStartingIndexBuild", mode: "alwaysOn"}));
jsTest.log("Starting background indexing for test of: " + tojson(dc));
// Add another index to be sure the drop command works.
primaryDB.getCollection(collection).createIndex({b: 1});
primaryDB.getCollection(collection).createIndex({i: 1}, {background: true});
// Make sure the index build has started on the secondary.
IndexBuildTest.waitForIndexBuildToStart(secondDB);
jsTest.log("Dropping indexes");
primaryDB.runCommand({dropIndexes: collection, index: "*"});
jsTest.log("Waiting on replication");
assert.commandWorked(
secondDB.adminCommand({configureFailPoint: "hangAfterStartingIndexBuild", mode: "off"}));
replTest.awaitReplication();
print("Index list on primary:");
primaryDB.getCollection(collection).getIndexes().forEach(printjson);
// Need to assert.soon because the drop only marks the index for removal
// the removal itself is asynchronous and may take another moment before it happens.
var i = 0;
assert.soon(function() {
print("Index list on secondary (run " + i + "):");
secondDB.getCollection(collection).getIndexes().forEach(printjson);
i++;
return 1 === secondDB.getCollection(collection).getIndexes().length;
}, "secondary did not drop index");
replTest.stopSet();
}());
|