mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-24 16:46:00 +01:00
771dabd098
GitOrigin-RevId: 744aa110a53786b23c62ff53f87a1418b5991e8d
93 lines
3.1 KiB
JavaScript
93 lines
3.1 KiB
JavaScript
/**
|
|
* Tests that "snapshot" level read concern are supported by the "dbHash" command.
|
|
*
|
|
* @tags: [
|
|
* requires_majority_read_concern,
|
|
* uses_transactions,
|
|
* ]
|
|
*/
|
|
import {ReplSetTest} from "jstests/libs/replsettest.js";
|
|
|
|
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 session = primary.startSession({causalConsistency: false});
|
|
const db = session.getDatabase("test");
|
|
|
|
// 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",
|
|
}));
|
|
});
|
|
|
|
// We insert a document and save the md5sum associated with the opTime of that write.
|
|
assert.commandWorked(db.mycoll.insert({_id: 1}, {writeConcern: {w: "majority"}}));
|
|
const clusterTime = db.getSession().getOperationTime();
|
|
|
|
let res = assert.commandWorked(db.runCommand({
|
|
dbHash: 1,
|
|
readConcern: {level: "snapshot", atClusterTime: clusterTime},
|
|
}));
|
|
|
|
const atClusterTimeHashBefore = {
|
|
collections: res.collections,
|
|
md5: res.md5
|
|
};
|
|
|
|
// We insert another document to ensure the collection's contents have a different md5sum now.
|
|
// We use a w=majority write concern to ensure that the insert has also been applied on the
|
|
// secondary by the time we go to run the dbHash command later. This avoids a race where the
|
|
// replication subsystem could be applying the insert operation when the dbHash command is run
|
|
// on the secondary.
|
|
assert.commandWorked(db.mycoll.insert({_id: 2}, {writeConcern: {w: "majority"}}));
|
|
|
|
// However, using snapshot read concern to read at the opTime of the first insert should return the
|
|
// same md5sum as it did originally.
|
|
res = assert.commandWorked(db.runCommand({
|
|
dbHash: 1,
|
|
readConcern: {level: "snapshot", atClusterTime: clusterTime},
|
|
}));
|
|
|
|
const atClusterTimeHashAfter = {
|
|
collections: res.collections,
|
|
md5: res.md5
|
|
};
|
|
|
|
assert.eq(atClusterTimeHashBefore,
|
|
atClusterTimeHashAfter,
|
|
"primary returned different dbhash after " +
|
|
"second insert while using \"snapshot\" level read concern");
|
|
|
|
{
|
|
const secondarySession = secondary.startSession({causalConsistency: false});
|
|
const secondaryDB = secondarySession.getDatabase("test");
|
|
|
|
// Using snapshot read concern to read at the opTime of the first insert should return the same
|
|
// md5sum on the secondary as it did on the primary.
|
|
|
|
let res = assert.commandWorked(secondaryDB.runCommand({
|
|
dbHash: 1,
|
|
readConcern: {level: "snapshot", atClusterTime: clusterTime},
|
|
}));
|
|
|
|
const atClusterTimeSecondaryHash = {collections: res.collections, md5: res.md5};
|
|
|
|
assert.eq(atClusterTimeHashBefore,
|
|
atClusterTimeSecondaryHash,
|
|
"primary returned different dbhash " +
|
|
"while using \"snapshot\" level read concern");
|
|
}
|
|
|
|
session.endSession();
|
|
rst.stopSet();
|