Files
mongo/jstests/sharding/updateOne_with_id_without_shard_key_basic.js
Abdul Qadeer c55bc0ca2c SERVER-80834 Enable PM-3190 FF (#20160)
GitOrigin-RevId: 3d568a639698bd79cede0ea7fe6b5b7769ffae76
2024-03-21 02:14:33 +00:00

114 lines
3.4 KiB
JavaScript

/**
* Tests updateOne with id without shard key uses PM-3190 for retryable
* writes and doesn't for transactions or non-retryable writes.
*
* @tags: [requires_fcv_80]
*/
import {configureFailPoint} from "jstests/libs/fail_point_util.js";
import {funWithArgs} from "jstests/libs/parallel_shell_helpers.js";
import {CreateShardedCollectionUtil} from "jstests/sharding/libs/create_sharded_collection_util.js";
const st = new ShardingTest({shards: 2, mongos: 1});
const mongos = st.s0;
let db = mongos.getDB(jsTestName());
const coll = db.coll;
coll.drop();
CreateShardedCollectionUtil.shardCollectionWithChunks(coll, {x: 1}, [
{min: {x: MinKey}, max: {x: 0}, shard: st.shard0.shardName},
{min: {x: 0}, max: {x: MaxKey}, shard: st.shard1.shardName},
]);
// Write two documents.
assert.commandWorked(coll.insert({x: -1, _id: -1}));
assert.commandWorked(coll.insert({x: 1, _id: 1}));
let fp = configureFailPoint(st.s, 'hangAfterCompletingWriteWithoutShardKeyWithId');
// Test that transactions do not use broadcast protocol per PM-3190.
let session = st.s.startSession({retryWrites: false});
session.startTransaction();
let sessionColl = session.getDatabase(db.getName()).getCollection(coll.getName());
let updateCmd = {
updates: [
{q: {_id: -1}, u: {$inc: {counter: 1}}},
],
txnNumber: NumberLong(0),
};
assert.commandWorked(sessionColl.runCommand("update", updateCmd));
session.commitTransaction();
session.endSession();
// Test that retryable internal transactions do not use broadcast protocol per PM-3190.
const lsidWithUUID = {
id: UUID(),
txnUUID: UUID()
};
assert.commandWorked(db.runCommand({
update: coll.getName(),
updates: [{q: {_id: -1}, u: {$inc: {counter: 1}}}],
lsid: lsidWithUUID,
txnNumber: NumberLong(1),
startTransaction: true,
autocommit: false
}));
const lsidWithUUIDAndTxnNum = {
id: UUID(),
txnUUID: UUID(),
txnNumber: NumberLong(2),
};
assert.commandWorked(db.runCommand({
update: coll.getName(),
updates: [{q: {_id: -5}, u: {$inc: {counter: 1}}}],
lsid: lsidWithUUIDAndTxnNum,
txnNumber: NumberLong(1),
startTransaction: true,
autocommit: false
}));
// Test that non-retryable writes do not use broadcast protocol per PM-3190.
assert.commandWorked(coll.updateOne({_id: 1}, {$inc: {counter: 1}}));
// Test that non-retryable write sessions do not use broadcast protocol per PM-3190.
session = st.s.startSession({retryWrites: false});
sessionColl = session.getDatabase(db.getName()).getCollection(coll.getName());
updateCmd = {
updates: [
{q: {_id: 1}, u: {$inc: {counter: 1}}},
]
};
assert.commandWorked(sessionColl.runCommand("update", updateCmd));
session.endSession();
// Test that retryable writes use broadcast protocol per PM-3190
session = st.s.startSession({retryWrites: true});
const lsid = session.getSessionId();
const joinUpdate = startParallelShell(
funWithArgs(function(dbName, collName, lsid) {
assert.commandWorked(db.getSiblingDB(dbName).getCollection(collName).runCommand("update", {
updates: [
{q: {_id: 1}, u: {$inc: {counter: 1}}},
],
lsid: lsid,
txnNumber: NumberLong(5)
}));
}, db.getName(), coll.getName(), lsid), mongos.port);
// We should hit the configured failpoint if PM-3190 code is used.
fp.wait();
fp.off();
joinUpdate();
session.endSession();
st.stop();