0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-27 23:27:11 +01:00
mongodb/jstests/slow1/initial_sync_many_dbs.js
Matt Broadstone 771dabd098 SERVER-81339 Convert ReplSetTest and ShardingTest to modules (#26332)
GitOrigin-RevId: 744aa110a53786b23c62ff53f87a1418b5991e8d
2024-08-20 22:00:49 +00:00

53 lines
1.6 KiB
JavaScript

/**
* Runs initial sync on a node with many databases.
*/
import {ReplSetTest} from "jstests/libs/replsettest.js";
var name = 'initial_sync_many_dbs';
var num_dbs = 32;
var max_colls = 32;
var num_docs = 2;
var replSet = new ReplSetTest({
name: name,
nodes: 1,
});
replSet.startSet();
replSet.initiate();
var primary = replSet.getPrimary();
jsTestLog('Seeding primary with ' + num_dbs + ' databases with up to ' + max_colls +
' collections each. Each collection will contain ' + num_docs + ' documents');
for (var i = 0; i < num_dbs; i++) {
var dbname = name + '_db' + i;
for (var j = 0; j < (i % max_colls + 1); j++) {
var collname = name + '_coll' + j;
var coll = primary.getDB(dbname)[collname];
for (var k = 0; k < num_docs; k++) {
assert.commandWorked(coll.insert({_id: k}));
}
}
}
// Add a secondary that will initial sync from the primary.
jsTestLog('Adding node to replica set to trigger initial sync process');
replSet.add();
replSet.reInitiate();
replSet.awaitSecondaryNodes(30 * 60 * 1000);
var secondary = replSet.getSecondary();
jsTestLog('New node has transitioned to secondary. Checking collection sizes');
for (let i = 0; i < num_dbs; i++) {
let dbname = name + '_db' + i;
for (let j = 0; j < (i % max_colls + 1); j++) {
let collname = name + '_coll' + j;
let coll = secondary.getDB(dbname)[collname];
assert.eq(
num_docs,
coll.find().itcount(),
'collection size inconsistent with primary after initial sync: ' + coll.getFullName());
}
}
replSet.stopSet();