-
Notifications
You must be signed in to change notification settings - Fork 5.6k
/
Copy pathcommand_diagnostics_sharded.js
272 lines (247 loc) · 8.83 KB
/
command_diagnostics_sharded.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
/**
* Test that tassert during CRUD command execution on mongos will log diagnostics about the query.
*
* This test expects collections to persist across a restart.
* @tags: [requires_persistence]
*/
import {
assertOnDiagnosticLogContents,
queryPlannerAlwaysFails,
runWithFailpoint
} from "jstests/libs/query/command_diagnostic_utils.js";
import {ShardingTest} from "jstests/libs/shardingtest.js";
const hasEnterpriseModule = getBuildInfo().modules.includes("enterprise");
const dbName = "test";
const collName = jsTestName();
const ns = dbName + "." + collName;
let resetFn;
let conn;
/**
* Runs 'command' with the queryPlannerAlwaysFails failpoint enabled, finds the resulting
* ScopedDebugInfo diagnostic log line, and asserts that it contains 'expectedDiagnosticInfo'.
*/
function runTest({
description,
command,
expectedDiagnosticInfo,
redact = false,
}) {
// Can't run cases that depend on log redaction without the enterprise module.
if (!hasEnterpriseModule && redact) {
return;
}
const db = conn.getDB(dbName);
if (hasEnterpriseModule) {
assert.commandWorked(db.adminCommand({setParameter: 1, redactClientLogData: redact}));
}
// In addition to the particular diagnostic info expected per test case, all commands should
// include the following.
expectedDiagnosticInfo = expectedDiagnosticInfo.concat([
"millis:",
"locks: {}",
"flowControl: {}",
]);
print("Running test case:", tojson({description, command, expectedDiagnosticInfo, redact}));
const {failpointName, failpointOpts, errorCode} = queryPlannerAlwaysFails;
runWithFailpoint(db, failpointName, failpointOpts, () => {
// BulkWrites don't fail if sub-operations fail, but they still generate the diagnostic log.
if (!command.bulkWrite) {
assert.commandFailedWithCode(db.runCommand(command), errorCode, description);
} else {
assert.commandWorked(db.adminCommand(command), description);
}
});
assertOnDiagnosticLogContents({
description: description,
logFile: conn.fullOptions.logFile,
expectedDiagnosticInfo: expectedDiagnosticInfo
});
resetFn();
}
// The queries below require shard targeting, which uses query planning as a sub-routine. Thus,
// both mongos and the shards will hit the queryPlannerAlwaysFails failpoint when executing these
// queries.
const query = {
a: 1,
b: 1
};
const shardKey = {
a: 1,
b: 1,
c: 1
};
function runTests() {
// Find
runTest({
description: "find",
command: {find: collName, filter: query, limit: 1},
expectedDiagnosticInfo: [
"{\'currentOp\': { ",
`ns: \\"${ns}\\"`,
`\'opDescription\': { find: \\"${collName}\\", filter: { a: 1.0, b: 1.0 }, limit: 1.0`,
],
});
runTest({
description: "find with log redaction",
command: {find: collName, filter: query, limit: 1},
redact: true,
expectedDiagnosticInfo: [
'{\'currentOp\': { op: \\"###\\", ns: \\"###\\"',
'\'opDescription\': { find: \\"###\\", filter: { a: \\"###\\", b: \\"###\\" }, limit: \\"###\\"',
],
});
// Aggregate
runTest({
description: "aggregate",
command: {aggregate: collName, pipeline: [{$match: query}], cursor: {}},
expectedDiagnosticInfo: [
`{\'currentOp\': { op: \\"command\\", ns: \\"${ns}\\"`,
`\'opDescription\': { aggregate: \\"${
collName}\\", pipeline: [ { $match: { a: 1.0, b: 1.0 } } ]`,
]
});
// Count
runTest({
description: "count",
command: {count: collName, query: query},
expectedDiagnosticInfo: [
`{\'currentOp\': { op: \\"command\\", ns: \\"${ns}\\"`,
`\'opDescription\': { count: \\"${collName}\\", query: { a: 1.0, b: 1.0 }`,
]
});
// Distinct
runTest({
description: "distinct",
command: {distinct: collName, key: "a", query: query},
expectedDiagnosticInfo: [
`{\'currentOp\': { op: \\"command\\", ns: \\"${ns}\\"`,
`\'opDescription\': { distinct: \\"${
collName}\\", key: \\"a\\", query: { a: 1.0, b: 1.0 }`,
]
});
// MapReduce
runTest({
description: "mapReduce",
command: {mapReduce: collName, map: () => emit(0, 0), reduce: () => 1, out: {inline: 1}},
expectedDiagnosticInfo: [
`{\'currentOp\': { op: \\"command\\", ns: \\"${ns}\\"`,
`\'opDescription\': { mapReduce: \\"${
collName}\\", map: () => emit(0, 0), reduce: () => 1, out: { inline: 1.0 }`,
]
});
// Delete
// TODO SERVER-98444: We should be able to see the delete sub-operations under "opDescription".
runTest({
description: 'delete',
command: {
delete: collName,
deletes: [{q: query, limit: 1}],
},
expectedDiagnosticInfo: [
`{\'currentOp\': { op: \\"remove\\", ns: \\"${ns}\\"`,
'\'opDescription\': ',
]
});
// Update
// TODO SERVER-98444: We should be able to see the update sub-operations under "opDescription".
runTest({
description: 'update with simple filter',
command: {
update: collName,
updates: [{q: query, u: {a: 2, b: 2}}],
},
expectedDiagnosticInfo: [
`{\'currentOp\': { op: \\"update\\", ns: \\"${ns}\\"`,
'\'opDescription\': ',
]
});
// FindAndModify
runTest({
description: 'findAndModify remove',
command: {
findAndModify: collName,
query: query,
remove: true,
},
expectedDiagnosticInfo: [
`{\'currentOp\': { op: \\"command\\", ns: \\"${ns}\\"`,
`\'opDescription\': { findAndModify: \\"${
collName}\\", query: { a: 1.0, b: 1.0 }, remove: true`,
]
});
// BulkWrite
runTest({
command: {
bulkWrite: 1,
ops: [{update: 0, filter: query, updateMods: {a: 1}}],
nsInfo: [{ns: `test.${jsTestName()}`}],
},
description: 'bulkWrite fails',
expectedDiagnosticInfo: [
`{\'currentOp\': { op: \\"bulkWrite\\"`,
// Ensure sub-operations are included in the diagnostic log.
'update: 0',
'filter: { a: 1.0, b: 1.0 }',
'updateMods: { a: 1.0 }',
]
});
// Explain
runTest({
description: "explain find",
command: {explain: {find: collName, filter: query, limit: 1}},
expectedDiagnosticInfo: [
`{\'currentOp\': { op: \\"command\\", ns: \\"test.`,
`\'opDescription\': { explain: { find: \\"${
collName}\\", filter: { a: 1.0, b: 1.0 }, limit: 1.0`,
],
});
runTest({
description: "explain aggregate",
command: {
explain:
{aggregate: collName, pipeline: [{$match: query}, {$unwind: "$arr"}], cursor: {}}
},
expectedDiagnosticInfo: [
`{\'currentOp\': { op: \\"command\\", ns: \\"test.`,
`\'opDescription\': { explain: { aggregate: \\"${
collName}\\", pipeline: [ { $match: { a: 1.0, b: 1.0 } }, { $unwind: \\"$arr\\" } ]`,
]
});
}
jsTestLog("Testing tassert log diagnostics on mongos");
{
const st =
new ShardingTest({mongos: 1, shards: 1, other: {mongosOptions: {useLogFiles: true}}});
const db = st.s.getDB(dbName);
const coll = db[collName];
coll.drop();
assert.commandWorked(coll.createIndex(shardKey));
assert.commandWorked(st.s.adminCommand({shardCollection: coll.getFullName(), key: shardKey}));
// We expect a non-zero exit code due to tassert triggered. Restarting will also clear the
// log files that we grep in assertOnDiagnosticLogContents for the next test case.
resetFn = () => {
st.restartMongos(0, st.s0.opts, {allowedExitCode: MongoRunner.EXIT_ABRUPT});
conn = st.s;
};
conn = st.s;
runTests();
st.stop();
}
jsTestLog("Testing tassert log diagnostics on shards");
{
const st = new ShardingTest({shards: [{useLogFiles: true}], mongos: 1});
const db = st.s.getDB(dbName);
const coll = db[collName];
coll.drop();
assert.commandWorked(coll.createIndex(shardKey));
assert.commandWorked(st.s.adminCommand({shardCollection: coll.getFullName(), key: shardKey}));
// We expect a non-zero exit code due to tassert triggered. Restarting will also clear the
// log files that we grep in assertOnDiagnosticLogContents for the next test case.
resetFn = () => {
st.rs0.restart(st.rs0.getPrimary(), {allowedExitCode: MongoRunner.EXIT_ABRUPT});
conn = st.rs0.getPrimary();
};
conn = st.rs0.getPrimary();
runTests();
st.stop();
}