-
Notifications
You must be signed in to change notification settings - Fork 5.6k
/
Copy pathrun_check_repl_change_collection.js
35 lines (27 loc) · 1.29 KB
/
run_check_repl_change_collection.js
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
// Runner for checkChangeCollection() that compares change_collection for all tenants on all replica
// set nodes to ensure all nodes have compatible data without any holes.
import {ReplSetTest} from "jstests/libs/replsettest.js";
const startTime = Date.now();
assert.neq(typeof db, 'undefined', 'No `db` object, is the shell connected to a mongod?');
let runCheckOnReplSet = function(db) {
// Always use admin database, this is important when running on multitenant suites, to bypass
// the tenantId requirement.
let adminDB = db.getSiblingDB('admin');
let primaryInfo = adminDB.isMaster();
assert(primaryInfo.ismaster,
'shell is not connected to the primary or master node: ' + tojson(primaryInfo));
let testFixture = new ReplSetTest(db.getMongo().host);
testFixture.checkChangeCollection("Change collection consistency");
};
if (db.getMongo().isMongos()) {
let configDB = db.getSiblingDB('config');
// Run check on every shard.
configDB.shards.find().forEach(shardEntry => {
let newConn = new Mongo(shardEntry.host);
runCheckOnReplSet(newConn.getDB('test'));
});
} else {
runCheckOnReplSet(db);
}
const totalTime = Date.now() - startTime;
print('Finished change collection consistency checks of cluster in ' + totalTime + ' ms.');