Files
mongo/jstests/sharding/killop.js
atesteve 19b971d34e SERVER-89664 Fix waitInFindBeforeMakingBatch fail point tests with embedded router (#21442)
GitOrigin-RevId: 1127c4c7c118e291f5b3fcdb58959cdad9fd143c
2024-04-30 09:02:00 +00:00

49 lines
1.7 KiB
JavaScript

// Confirms basic killOp execution via mongos.
// @tags: [requires_replication, requires_sharding]
import {waitForCurOpByFailPointNoNS} from "jstests/libs/curop_helpers.js";
import {configureFailPoint} from "jstests/libs/fail_point_util.js";
const st = new ShardingTest({shards: 2});
const conn = st.s;
const adminDB = conn.getDB("admin");
const db = conn.getDB("killOp");
const coll = db.test;
assert.commandWorked(db.getCollection(coll.getName()).insert({x: 1}));
const kFailPointName = "waitInFindBeforeMakingBatch";
const fp = configureFailPoint(conn, kFailPointName);
const queryToKill = `assert.commandFailedWithCode(db.getSiblingDB('${db.getName()}')` +
`.runCommand({find: '${coll.getName()}', filter: {x: 1}}), ErrorCodes.Interrupted);`;
const awaitShell = startParallelShell(queryToKill, conn.port);
const curOpFilter = {
ns: coll.getFullName(),
"command.filter": {x: 1}
};
// Wait for the operation to start.
const curOps = waitForCurOpByFailPointNoNS(db, kFailPointName, curOpFilter, {localOps: true});
const opId = curOps[0].opid;
// Kill the operation.
assert.commandWorked(db.killOp(opId));
// Ensure that the operation gets marked kill pending while it's still hanging.
let result = adminDB.aggregate([{$currentOp: {localOps: true}}, {$match: curOpFilter}]).toArray();
assert(result.length === 1, tojson(result));
assert(result[0].hasOwnProperty("killPending"));
assert.eq(true, result[0].killPending);
// Release the failpoint. The operation should check for interrupt and then finish.
fp.off();
awaitShell();
result = adminDB.aggregate([{$currentOp: {localOps: true}}, {$match: curOpFilter}]).toArray();
assert(result.length === 0, tojson(result));
st.stop();