143 lines
5.5 KiB
JavaScript
143 lines
5.5 KiB
JavaScript
/**
|
|
* Ensures that performing a write in a prepared transaction, followed by a write outside of a
|
|
* transaction, it is possible to specify snapshot read concern with 'atClusterTime' as the
|
|
* timestamp of the second write for 'dbHash'. The commands should block until the prepared
|
|
* transaction is committed or aborted.
|
|
*
|
|
* @tags: [
|
|
* uses_prepare_transaction,
|
|
* uses_transactions,
|
|
* ]
|
|
*/
|
|
import {PrepareHelpers} from "jstests/core/txns/libs/prepare_helpers.js";
|
|
import {Thread} from "jstests/libs/parallelTester.js";
|
|
import {ReplSetTest} from "jstests/libs/replsettest.js";
|
|
|
|
const runDBHashFn = (host, dbName, clusterTime) => {
|
|
const conn = new Mongo(host);
|
|
const db = conn.getDB(dbName);
|
|
|
|
conn.setSecondaryOk();
|
|
const cmd = {dbHash: 1, readConcern: {level: "snapshot", atClusterTime: eval(clusterTime)}};
|
|
|
|
const firstHash = assert.commandWorked(db.runCommand(cmd));
|
|
// This code will execute once the prepared transaction is committed as the call above will
|
|
// be blocked until an abort or commit happens. Ensure that running dbHash here yields the
|
|
// same result as above.
|
|
const secondHash = assert.commandWorked(db.runCommand({dbHash: 1}));
|
|
|
|
assert.eq(firstHash.collections, secondHash.collections);
|
|
assert.eq(firstHash.md5, secondHash.md5);
|
|
|
|
return firstHash;
|
|
};
|
|
|
|
const assertOpHasPrepareConflict = (db, commandName, opsObj) => {
|
|
assert.soon(
|
|
() => {
|
|
const ops = db.currentOp(opsObj).inprog;
|
|
if (ops.length === 1) {
|
|
return ops[0].prepareReadConflicts > 0;
|
|
}
|
|
return false;
|
|
},
|
|
() =>
|
|
`Failed to find '${commandName}' command in the ${db.getMongo().host} currentOp()` +
|
|
` output: ${tojson(db.currentOp())}`,
|
|
);
|
|
};
|
|
|
|
const rst = new ReplSetTest({nodes: 2});
|
|
rst.startSet();
|
|
|
|
const replSetConfig = rst.getReplSetConfig();
|
|
replSetConfig.members[1].priority = 0;
|
|
rst.initiate(replSetConfig);
|
|
|
|
const primary = rst.getPrimary();
|
|
const secondary = rst.getSecondary();
|
|
|
|
const dbName = "prepare_transaction_read_at_cluster_time";
|
|
const collName = "testColl";
|
|
|
|
// We prevent the replica set from advancing oldest_timestamp. This ensures that the snapshot
|
|
// associated with 'clusterTime' is retained for the duration of this test.
|
|
rst.nodes.forEach((conn) => {
|
|
assert.commandWorked(
|
|
conn.adminCommand({
|
|
configureFailPoint: "WTPreserveSnapshotHistoryIndefinitely",
|
|
mode: "alwaysOn",
|
|
}),
|
|
);
|
|
});
|
|
|
|
const testDB = primary.getDB(dbName);
|
|
const testDBSecondary = secondary.getDB(dbName);
|
|
|
|
testDB.createCollection(collName);
|
|
assert.commandWorked(testDB.getCollection(collName).insert({x: 0}));
|
|
|
|
const session = primary.startSession({causalConsistency: false});
|
|
const sessionDB = session.getDatabase(dbName);
|
|
const sessionColl = sessionDB[collName];
|
|
|
|
// Perform a write inside of a prepared transaction.
|
|
session.startTransaction();
|
|
assert.commandWorked(sessionColl.insert({x: 1}));
|
|
const prepareTimestamp = PrepareHelpers.prepareTransaction(session);
|
|
|
|
// Perform a write outside of a prepared transaction. We wait for the write to have replication
|
|
// to the secondary because we're going to read from it at the returned operationTime.
|
|
assert.commandWorked(testDB.getCollection(collName).insert({x: 2}, {writeConcern: {w: 2}}));
|
|
|
|
// It should be possible to specify snapshot read concern with 'atClusterTime' as the timestamp of
|
|
// the second write without an error for dbHash and find.
|
|
const clusterTime = testDB.getSession().getOperationTime();
|
|
|
|
// Run dbHash and find while the prepared transaction has not commit or aborted yet.
|
|
// These should block until the prepared transaction commits or aborts if we specify
|
|
// snapshot read concern with 'atClusterTime' to be the timestamp of the second write we did,
|
|
// outside of the transaction.
|
|
|
|
const dbHashClusterTimePrimaryThread = new Thread(runDBHashFn, primary.host, dbName, tojson(clusterTime));
|
|
const dbHashClusterTimeSecondaryThread = new Thread(runDBHashFn, secondary.host, dbName, tojson(clusterTime));
|
|
|
|
dbHashClusterTimePrimaryThread.start();
|
|
dbHashClusterTimeSecondaryThread.start();
|
|
|
|
const curOpObj = {
|
|
"command.readConcern.atClusterTime": {$exists: true},
|
|
"command.dbHash": {$exists: true},
|
|
};
|
|
|
|
assertOpHasPrepareConflict(testDB, "dbHash", curOpObj);
|
|
assertOpHasPrepareConflict(testDBSecondary, "dbHash", curOpObj);
|
|
|
|
// Run a series of DDL operations which shouldn't block before committing the prepared
|
|
// transaction.
|
|
const otherDbName = "prepare_transaction_read_at_cluster_time_secondary_other";
|
|
const otherTestDB = primary.getDB(otherDbName);
|
|
|
|
assert.commandWorked(otherTestDB.runCommand({create: collName, writeConcern: {w: 2}}));
|
|
assert.commandWorked(otherTestDB.runCommand({collMod: collName, validator: {v: 1}, writeConcern: {w: 2}}));
|
|
assert.commandWorked(
|
|
otherTestDB.runCommand({createIndexes: collName, indexes: [{key: {x: 1}, name: "x_1"}], writeConcern: {w: 2}}),
|
|
);
|
|
assert.commandWorked(otherTestDB.runCommand({dropIndexes: collName, index: "x_1", writeConcern: {w: 2}}));
|
|
|
|
// Committing or aborting the transaction should unblock the parallel tasks.
|
|
PrepareHelpers.commitTransaction(session, prepareTimestamp);
|
|
session.endSession();
|
|
|
|
dbHashClusterTimePrimaryThread.join();
|
|
dbHashClusterTimeSecondaryThread.join();
|
|
|
|
// Ensure the dbHashes across the replica set match.
|
|
const primaryDBHash = dbHashClusterTimePrimaryThread.returnData();
|
|
const secondaryDBHash = dbHashClusterTimeSecondaryThread.returnData();
|
|
|
|
assert.eq(primaryDBHash.collections, secondaryDBHash.collections);
|
|
assert.eq(primaryDBHash.md5, secondaryDBHash.md5);
|
|
|
|
rst.stopSet();
|