mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-27 23:27:11 +01:00
771dabd098
GitOrigin-RevId: 744aa110a53786b23c62ff53f87a1418b5991e8d
182 lines
5.6 KiB
JavaScript
182 lines
5.6 KiB
JavaScript
/*
|
|
* Tests running killSessions to kill internal sessions on both mongos and mongod.
|
|
*
|
|
* @tags: [requires_fcv_60, uses_transactions]
|
|
*/
|
|
import {ShardingTest} from "jstests/libs/shardingtest.js";
|
|
|
|
TestData.disableImplicitSessions = true;
|
|
|
|
let mongosOptions = {
|
|
setParameter: {'failpoint.skipClusterParameterRefresh': "{'mode':'alwaysOn'}"}
|
|
};
|
|
|
|
// Don't add a maxSessions parameter in case of embeddedRouter, otherwise it will be passed to the
|
|
// config server and the cluster won't boot.
|
|
if (!TestData.embeddedRouter) {
|
|
mongosOptions.setParameter.maxSessions = 1;
|
|
}
|
|
|
|
const st = new ShardingTest({
|
|
shards: 1,
|
|
mongosOptions: mongosOptions,
|
|
});
|
|
const shard0Primary = st.rs0.getPrimary();
|
|
|
|
const kDbName = "testDb";
|
|
const kCollName = "testColl";
|
|
const testDB = st.s.getDB(kDbName);
|
|
|
|
const sessionUUID = UUID();
|
|
|
|
assert.commandWorked(testDB.runCommand({create: kCollName}));
|
|
assert.commandWorked(shard0Primary.adminCommand({refreshLogicalSessionCacheNow: 1}));
|
|
|
|
(() => {
|
|
jsTest.log(
|
|
"Test running killSessions on mongos using an internal transaction with lsid containing " +
|
|
"txnNumber and txnUUID");
|
|
const lsid = {id: sessionUUID, txnNumber: NumberLong(0), txnUUID: UUID()};
|
|
const txnNumber = NumberLong(0);
|
|
assert.commandWorked(testDB.runCommand({
|
|
insert: kCollName,
|
|
documents: [{x: 1}],
|
|
lsid: lsid,
|
|
txnNumber: txnNumber,
|
|
startTransaction: true,
|
|
autocommit: false
|
|
}));
|
|
|
|
assert.commandWorked(st.s.adminCommand({
|
|
killSessions: [{id: sessionUUID}],
|
|
}));
|
|
|
|
// killSessions does not end/reap the session it targets. It only kills the operation running on
|
|
// the session
|
|
assert.commandFailedWithCode(
|
|
testDB.adminCommand(
|
|
{commitTransaction: 1, lsid: lsid, txnNumber: txnNumber, autocommit: false}),
|
|
ErrorCodes.NoSuchTransaction);
|
|
})();
|
|
|
|
(() => {
|
|
jsTest.log(
|
|
"Test running killSessions on mongos using an internal transaction with lsid containing " +
|
|
"txnUUID");
|
|
const lsid = {id: sessionUUID, txnUUID: UUID()};
|
|
const txnNumber = NumberLong(1);
|
|
assert.commandWorked(testDB.runCommand({
|
|
insert: kCollName,
|
|
documents: [{x: 1}],
|
|
lsid: lsid,
|
|
txnNumber: txnNumber,
|
|
startTransaction: true,
|
|
autocommit: false
|
|
}));
|
|
|
|
assert.commandWorked(st.s.adminCommand({
|
|
killSessions: [{id: sessionUUID}],
|
|
}));
|
|
|
|
// killSessions does not end/reap the session it targets. It only kills the operation running on
|
|
// the session
|
|
assert.commandFailedWithCode(
|
|
testDB.adminCommand(
|
|
{commitTransaction: 1, lsid: lsid, txnNumber: txnNumber, autocommit: false}),
|
|
ErrorCodes.NoSuchTransaction);
|
|
})();
|
|
|
|
(() => {
|
|
jsTest.log("Test running killSessions on mongos using an internal transaction with child lsid");
|
|
const lsid = {id: sessionUUID, txnUUID: UUID()};
|
|
const txnNumber = NumberLong(1);
|
|
assert.commandWorked(testDB.runCommand({
|
|
insert: kCollName,
|
|
documents: [{x: 1}],
|
|
lsid: lsid,
|
|
txnNumber: txnNumber,
|
|
startTransaction: true,
|
|
autocommit: false
|
|
}));
|
|
|
|
assert.commandFailedWithCode(st.s.adminCommand({
|
|
killSessions: [lsid],
|
|
}),
|
|
ErrorCodes.InvalidOptions);
|
|
})();
|
|
|
|
(() => {
|
|
jsTest.log(
|
|
"Test running killSessions on mongod using an internal transaction with lsid containing " +
|
|
"txnNumber and txnUUID");
|
|
const lsid = {id: sessionUUID, txnNumber: NumberLong(1), txnUUID: UUID()};
|
|
const txnNumber = NumberLong(2);
|
|
assert.commandWorked(testDB.runCommand({
|
|
insert: kCollName,
|
|
documents: [{x: 1}],
|
|
lsid: lsid,
|
|
txnNumber: txnNumber,
|
|
startTransaction: true,
|
|
autocommit: false
|
|
}));
|
|
|
|
assert.commandWorked(shard0Primary.adminCommand({
|
|
killSessions: [{id: sessionUUID}],
|
|
}));
|
|
|
|
// killSessions does not end/reap the session it targets. It only kills the operation running on
|
|
// the session
|
|
assert.commandFailedWithCode(
|
|
testDB.adminCommand(
|
|
{commitTransaction: 1, lsid: lsid, txnNumber: txnNumber, autocommit: false}),
|
|
ErrorCodes.NoSuchTransaction);
|
|
})();
|
|
|
|
(() => {
|
|
jsTest.log(
|
|
"Test running killSessions on mongod using an internal transaction with lsid containing " +
|
|
"txnUUID");
|
|
const lsid = {id: sessionUUID, txnUUID: UUID()};
|
|
const txnNumber = NumberLong(3);
|
|
assert.commandWorked(testDB.runCommand({
|
|
insert: kCollName,
|
|
documents: [{x: 1}],
|
|
lsid: lsid,
|
|
txnNumber: txnNumber,
|
|
startTransaction: true,
|
|
autocommit: false
|
|
}));
|
|
|
|
assert.commandWorked(shard0Primary.adminCommand({
|
|
killSessions: [{id: sessionUUID}],
|
|
}));
|
|
|
|
// killSessions does not end/reap the session it targets. It only kills the operation running on
|
|
// the session
|
|
assert.commandFailedWithCode(
|
|
testDB.adminCommand(
|
|
{commitTransaction: 1, lsid: lsid, txnNumber: txnNumber, autocommit: false}),
|
|
ErrorCodes.NoSuchTransaction);
|
|
})();
|
|
|
|
(() => {
|
|
jsTest.log("Test running killSessions on mongod using an internal transaction with child lsid");
|
|
const lsid = {id: sessionUUID, txnUUID: UUID()};
|
|
const txnNumber = NumberLong(3);
|
|
assert.commandWorked(testDB.runCommand({
|
|
insert: kCollName,
|
|
documents: [{x: 1}],
|
|
lsid: lsid,
|
|
txnNumber: txnNumber,
|
|
startTransaction: true,
|
|
autocommit: false
|
|
}));
|
|
|
|
assert.commandFailedWithCode(shard0Primary.adminCommand({
|
|
killSessions: [lsid],
|
|
}),
|
|
ErrorCodes.InvalidOptions);
|
|
})();
|
|
|
|
st.stop();
|