mongo/jstests/sharding/migration_server_status.js

187 lines
6.5 KiB
JavaScript

/*
* Tests that serverStatus includes a migration status when called on the source shard of an active
* migration.
*
* @tags: [requires_fcv_73]
*/
import {
moveChunkParallel,
moveChunkStepNames,
pauseMoveChunkAtStep,
unpauseMoveChunkAtStep,
waitForMoveChunkStep,
} from "jstests/libs/chunk_manipulation_util.js";
import {ShardingTest} from "jstests/libs/shardingtest.js";
let staticMongod = MongoRunner.runMongod({});
let st = new ShardingTest({shards: 2, mongos: 1});
let mongos = st.s0;
let admin = mongos.getDB("admin");
let coll = mongos.getCollection("migration_server_status.coll");
assert.commandWorked(admin.runCommand({enableSharding: coll.getDB() + "", primaryShard: st.shard0.shardName}));
assert.commandWorked(admin.runCommand({shardCollection: coll + "", key: {_id: 1}}));
assert.commandWorked(admin.runCommand({split: coll + "", middle: {_id: 0}}));
// Mimic inserts for a retryable-write session
let documents = [];
for (let x = -2600; x < 2400; x++) {
documents.push({_id: x});
}
assert.commandWorked(
mongos
.getDB("migration_server_status")
.runCommand({insert: "coll", documents: documents, lsid: {id: UUID()}, txnNumber: NumberLong(1)}),
);
// Pause the migration once it starts on both shards -- somewhat arbitrary pause point.
pauseMoveChunkAtStep(st.shard0, moveChunkStepNames.startedMoveChunk);
let joinMoveChunk = moveChunkParallel(
staticMongod,
st.s0.host,
{_id: 1},
null,
coll.getFullName(),
st.shard1.shardName,
);
let assertMigrationStatusOnServerStatus = function (
serverStatusResult,
sourceShard,
destinationShard,
isDonorShard,
minKey,
maxKey,
collectionName,
) {
let migrationResult = serverStatusResult.sharding.migrations;
assert.eq(sourceShard, migrationResult.source);
assert.eq(destinationShard, migrationResult.destination);
assert.eq(isDonorShard, migrationResult.isDonorShard);
assert.eq(minKey, migrationResult.chunk.min);
assert.eq(maxKey, migrationResult.chunk.max);
assert.eq(collectionName, migrationResult.collection);
};
let assertSessionMigrationStatusSource = function (
serverStatusResult,
expectedEntriesToBeMigrated,
expectedEntriesSkippedLowerBound,
) {
let migrationResult = serverStatusResult.sharding.migrations;
// If the expected value is null, just check that the field exists
if (expectedEntriesToBeMigrated == null) {
assert(migrationResult.sessionOplogEntriesToBeMigratedSoFar);
} else {
assert.eq(migrationResult.sessionOplogEntriesToBeMigratedSoFar, expectedEntriesToBeMigrated);
}
// If the expected value is null, just check that the field exists
if (expectedEntriesSkippedLowerBound == null) {
assert(migrationResult.sessionOplogEntriesSkippedSoFarLowerBound);
} else {
assert.eq(migrationResult.sessionOplogEntriesSkippedSoFarLowerBound, expectedEntriesSkippedLowerBound);
}
};
let assertSessionMigrationStatusDestination = function (serverStatusResult, expectedEntriesMigrated) {
let migrationResult = serverStatusResult.sharding.migrations;
// If the expected value is null, just check that the field exists
if (expectedEntriesMigrated == null) {
assert(migrationResult.sessionOplogEntriesMigrated);
} else {
assert.eq(migrationResult.sessionOplogEntriesMigrated, expectedEntriesMigrated);
}
};
waitForMoveChunkStep(st.shard0, moveChunkStepNames.startedMoveChunk);
// Source shard should return a migration status.
let shard0ServerStatus = st.shard0.getDB("admin").runCommand({serverStatus: 1});
assert(shard0ServerStatus.sharding.migrations);
assertMigrationStatusOnServerStatus(
shard0ServerStatus,
st.shard0.shardName,
st.shard1.shardName,
true,
{"_id": 0},
{"_id": {"$maxKey": 1}},
coll + "",
);
assertSessionMigrationStatusSource(shard0ServerStatus, null, null);
// Destination shard should return a migration status.
var shard1ServerStatus = st.shard1.getDB("admin").runCommand({serverStatus: 1});
assert(shard1ServerStatus.sharding.migrations);
assertMigrationStatusOnServerStatus(
shard1ServerStatus,
st.shard0.shardName,
st.shard1.shardName,
false,
{"_id": 0},
{"_id": {"$maxKey": 1}},
coll + "",
);
assertSessionMigrationStatusDestination(shard1ServerStatus, null);
// Mongos should never return a migration status.
let mongosServerStatus = st.s0.getDB("admin").runCommand({serverStatus: 1});
assert(!mongosServerStatus.sharding.migrations);
// Pause the migration once chunk data is comitted. At this point we know that the sessions
// are fully transferred because chunk migration only happens after session migration is complete.
pauseMoveChunkAtStep(st.shard0, moveChunkStepNames.chunkDataCommitted);
unpauseMoveChunkAtStep(st.shard0, moveChunkStepNames.startedMoveChunk);
waitForMoveChunkStep(st.shard0, moveChunkStepNames.chunkDataCommitted);
// Source shard should have the correct server status
shard0ServerStatus = st.shard0.getDB("admin").runCommand({serverStatus: 1});
assert(shard0ServerStatus.sharding.migrations);
assertMigrationStatusOnServerStatus(
shard0ServerStatus,
st.shard0.shardName,
st.shard1.shardName,
true,
{"_id": 0},
{"_id": {"$maxKey": 1}},
coll + "",
);
// Background metadata operations on the config server can throw off the count, so just assert the
// fields are present for a config shard.
const expectedEntriesMigrated = TestData.configShard ? undefined : 2400;
const expectedEntriesSkipped = TestData.configShard ? undefined : 2600;
assertSessionMigrationStatusSource(shard0ServerStatus, expectedEntriesMigrated, expectedEntriesSkipped);
// Destination shard should have the correct server status
shard1ServerStatus = st.shard1.getDB("admin").runCommand({serverStatus: 1});
assert(shard1ServerStatus.sharding.migrations);
assertMigrationStatusOnServerStatus(
shard1ServerStatus,
st.shard0.shardName,
st.shard1.shardName,
false,
{"_id": 0},
{"_id": {"$maxKey": 1}},
coll + "",
);
assertSessionMigrationStatusDestination(shard1ServerStatus, expectedEntriesMigrated, expectedEntriesSkipped);
unpauseMoveChunkAtStep(st.shard0, moveChunkStepNames.chunkDataCommitted);
joinMoveChunk();
// Migration is over, should no longer get a migration status.
shard0ServerStatus = st.shard0.getDB("admin").runCommand({serverStatus: 1});
assert(!shard0ServerStatus.sharding.migrations);
var shard1ServerStatus = st.shard0.getDB("admin").runCommand({serverStatus: 1});
assert(!shard1ServerStatus.sharding.migrations);
st.stop();
MongoRunner.stopMongod(staticMongod);