-
Notifications
You must be signed in to change notification settings - Fork 5.6k
/
Copy pathfail_unclean_shutdown_incompatible_commands.js
37 lines (30 loc) · 1.64 KB
/
fail_unclean_shutdown_incompatible_commands.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
/**
* This override prevents running commands that use the WiredTiger size storer. Because the size
* storer is only updated periodically, commands that use it after an unclean shutdown could return
* inaccurate results.
*/
import {OverrideHelpers} from "jstests/libs/override_methods/override_helpers.js";
function runCommandFailUncleanShutdownIncompatibleCommands(
conn, dbName, commandName, commandObj, func, makeFuncArgs) {
if (typeof commandObj !== "object" || commandObj === null) {
return func.apply(conn, makeFuncArgs(commandObj));
}
if (commandName === "count" &&
(!commandObj.hasOwnProperty("query") || Object.keys(commandObj["query"]).length === 0)) {
throw new Error("Cowardly fail if fastcount is run with a mongod that had an unclean" +
" shutdown: " + tojson(commandObj));
}
if (commandName === "dataSize" && !commandObj.hasOwnProperty("min") &&
!commandObj.hasOwnProperty("max")) {
throw new Error("Cowardly fail if unbounded dataSize is run with a mongod that had an" +
" unclean shutdown: " + tojson(commandObj));
}
if (commandName === "collStats" || commandName === "dbStats") {
throw new Error("Cowardly fail if " + commandName + " is run with a mongod that had" +
" an unclean shutdown: " + tojson(commandObj));
}
return func.apply(conn, makeFuncArgs(commandObj));
}
OverrideHelpers.prependOverrideInParallelShell(
"jstests/libs/override_methods/fail_unclean_shutdown_incompatible_commands.js");
OverrideHelpers.overrideRunCommand(runCommandFailUncleanShutdownIncompatibleCommands);