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

79 lines
2.4 KiB
JavaScript

// Tests "stacking" multiple migration cleanup threads and their behavior when the collection
// changes
// @tags: [assumes_balancer_off]
import {ShardingTest} from "jstests/libs/shardingtest.js";
// start up a new sharded cluster
var st = new ShardingTest({shards: 2, mongos: 1, other: {enableBalancer: false}});
var mongos = st.s;
var coll = mongos.getCollection("foo.bar");
// Enable sharding of the collection
assert.commandWorked(
mongos.adminCommand({enablesharding: coll.getDB() + "", primaryShard: st.shard0.shardName}));
assert.commandWorked(mongos.adminCommand({shardcollection: coll + "", key: {_id: 1}}));
var numChunks = 30;
// Create a bunch of chunks
for (var i = 0; i < numChunks; i++) {
assert.commandWorked(mongos.adminCommand({split: coll + "", middle: {_id: i}}));
}
jsTest.log("Inserting a lot of small documents...");
// Insert a lot of small documents to make multiple cursor batches
var bulk = coll.initializeUnorderedBulkOp();
for (let i = 0; i < 10 * 1000; i++) {
bulk.insert({_id: i});
}
assert.commandWorked(bulk.execute());
jsTest.log("Opening a mongod cursor...");
// Open a new cursor on the mongod
var cursor = coll.find();
cursor.next();
jsTest.log("Moving a bunch of chunks to stack cleanup...");
// Move a bunch of chunks, but don't close the cursor so they stack.
for (let i = 0; i < numChunks; i++) {
assert.commandWorked(
mongos.adminCommand({moveChunk: coll + "", find: {_id: i}, to: st.shard1.shardName}));
}
jsTest.log("Verifying that the donor still has the range deletion task docs...");
// Range deletions are queued async of migrate thread.
let rangeDelDocs =
st.shard0.getDB("config").getCollection("rangeDeletions").find({nss: coll + ""}).toArray();
assert.eq(numChunks, rangeDelDocs.length, `rangeDelDocs: ${tojson(rangeDelDocs.length)}`);
jsTest.log("Dropping and re-creating collection...");
coll.drop();
bulk = coll.initializeUnorderedBulkOp();
for (let i = 0; i < numChunks; i++) {
bulk.insert({_id: i});
}
assert.commandWorked(bulk.execute());
jsTest.log("Allowing the range deletion tasks to be processed by closing the cursor...");
cursor.close();
assert.soon(() => {
return 0 === st.shard0.getDB("config").getCollection("rangeDeletions").count({nss: coll + ""});
});
jsTest.log("Checking that the new collection's documents were not cleaned up...");
for (let i = 0; i < numChunks; i++) {
assert.neq(null, coll.findOne({_id: i}));
}
st.stop();