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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
|
/**
* Copyright (C) 2023-present MongoDB, Inc.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the Server Side Public License, version 1,
* as published by MongoDB, Inc.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* Server Side Public License for more details.
*
* You should have received a copy of the Server Side Public License
* along with this program. If not, see
* <http://www.mongodb.com/licensing/server-side-public-license>.
*
* As a special exception, the copyright holders give permission to link the
* code of portions of this program with the OpenSSL library under certain
* conditions as described in each individual source file and distribute
* linked combinations including the program with the OpenSSL library. You
* must comply with the Server Side Public License in all respects for
* all of the code used other than as permitted herein. If you modify file(s)
* with this exception, you may extend this exception to your version of the
* file(s), but you are not obligated to do so. If you do not wish to do so,
* delete this exception statement from your version. If you delete this
* exception statement from all source files in the program, then also delete
* it in the license file.
*/
/**
* This file contains tests for mongo/db/exec/spool.cpp
*/
#include "mongo/db/exec/mock_stage.h"
#include "mongo/db/exec/spool.h"
#include "mongo/db/service_context_d_test_fixture.h"
using namespace mongo;
namespace {
static const NamespaceString kNss = NamespaceString::createNamespaceString_forTest("db.dummy");
class SpoolStageTest : public ServiceContextMongoDTest {
public:
SpoolStageTest() : ServiceContextMongoDTest(Options{}.useMockClock(true)) {
_opCtx = makeOperationContext();
_expCtx = std::make_unique<ExpressionContext>(_opCtx.get(), nullptr, kNss);
}
ExpressionContext* expCtx() {
return _expCtx.get();
}
/**
* Create a new working set member with the given record id.
*/
WorkingSetID makeRecord(const stdx::variant<std::string, long>& recordId) {
WorkingSetID id = ws.allocate();
WorkingSetMember* wsm = ws.get(id);
stdx::visit(OverloadedVisitor{
[&](long value) { wsm->recordId = RecordId(value); },
[&](const std::string& value) {
wsm->recordId = RecordId(value.c_str(), value.size());
},
},
recordId);
ws.transitionToRecordIdAndObj(id);
return id;
}
/**
* Helper that calls work() on the spool stage and validates the result according to the
* expected values.
*/
void workAndAssertStateAndRecordId(
SpoolStage& spool,
PlanStage::StageState expectedState,
const stdx::variant<stdx::monostate, std::string, long>& expectedId = stdx::monostate{},
bool childHasMoreRecords = true) {
ASSERT_FALSE(spool.isEOF());
WorkingSetID id = WorkingSet::INVALID_ID;
auto state = spool.work(&id);
ASSERT_EQUALS(state, expectedState);
if (expectedId.index() != 0) {
auto member = ws.get(id);
ASSERT_TRUE(member->hasRecordId());
stdx::visit(OverloadedVisitor{
[&](long value) {
ASSERT_TRUE(member->recordId.isLong());
ASSERT_EQUALS(member->recordId.getLong(), value);
},
[&](const std::string& value) {
ASSERT_TRUE(member->recordId.isStr());
ASSERT_EQUALS(member->recordId.getStr(), value);
},
[&](const stdx::monostate&) {},
},
expectedId);
_memUsage += member->recordId.memUsage();
}
// By spool definition, the child cannot have more records if we get ADVANCED or IS_EOF.
// Whether the child is EOF for other states depends on whether it has more results.
if (expectedState == PlanStage::ADVANCED) {
ASSERT_TRUE(spool.child()->isEOF());
ASSERT_FALSE(spool.isEOF());
} else if (expectedState == PlanStage::IS_EOF) {
ASSERT_TRUE(spool.child()->isEOF());
ASSERT_TRUE(spool.isEOF());
} else {
ASSERT_EQUALS(spool.child()->isEOF(), !childHasMoreRecords);
}
}
void assertEofState(SpoolStage& spool) {
workAndAssertStateAndRecordId(spool, PlanStage::IS_EOF);
auto stats = static_cast<const SpoolStats*>(spool.getSpecificStats());
ASSERT_EQUALS(stats->totalDataSizeBytes, _memUsage);
}
SpoolStage makeSpool(std::unique_ptr<PlanStage> root,
long long maxAllowedMemoryUsageBytes = 1024,
boost::optional<long long> maxAllowedDiskUsageBytes = boost::none) {
if (maxAllowedDiskUsageBytes) {
_tempDir = std::make_unique<unittest::TempDir>("SpoolStageTest");
expCtx()->tempDir = _tempDir->path();
expCtx()->allowDiskUse = maxAllowedDiskUsageBytes.has_value();
}
internalQueryMaxSpoolMemoryUsageBytes.store(maxAllowedMemoryUsageBytes);
internalQueryMaxSpoolDiskUsageBytes.store(maxAllowedDiskUsageBytes.value_or(0));
return SpoolStage(expCtx(), &ws, std::move(root));
}
WorkingSet ws;
private:
ServiceContext::UniqueOperationContext _opCtx;
std::unique_ptr<ExpressionContext> _expCtx;
std::unique_ptr<unittest::TempDir> _tempDir;
long _memUsage = 0;
};
TEST_F(SpoolStageTest, eof) {
auto mock = std::make_unique<MockStage>(expCtx(), &ws);
auto spool = makeSpool(std::move(mock));
assertEofState(spool);
}
TEST_F(SpoolStageTest, basic) {
auto mock = std::make_unique<MockStage>(expCtx(), &ws);
mock->enqueueAdvanced(makeRecord(1));
mock->enqueueAdvanced(makeRecord(2));
mock->enqueueAdvanced(makeRecord(3));
auto spool = makeSpool(std::move(mock));
// There are no NEED_TIME/NEED_YIELDs to propagate so we can exhaust the input on the first call
// to work() and then begin returning the cached results.
workAndAssertStateAndRecordId(spool, PlanStage::ADVANCED, 1);
workAndAssertStateAndRecordId(spool, PlanStage::ADVANCED, 2);
workAndAssertStateAndRecordId(spool, PlanStage::ADVANCED, 3);
assertEofState(spool);
}
TEST_F(SpoolStageTest, propagatesNeedTime) {
auto mock = std::make_unique<MockStage>(expCtx(), &ws);
mock->enqueueStateCode(PlanStage::NEED_TIME);
mock->enqueueAdvanced(makeRecord(1));
mock->enqueueStateCode(PlanStage::NEED_TIME);
mock->enqueueAdvanced(makeRecord(2));
mock->enqueueStateCode(PlanStage::NEED_TIME);
mock->enqueueAdvanced(makeRecord(3));
auto spool = makeSpool(std::move(mock));
// First, consume all of the NEED_TIMEs from the child.
workAndAssertStateAndRecordId(spool, PlanStage::NEED_TIME);
workAndAssertStateAndRecordId(spool, PlanStage::NEED_TIME);
workAndAssertStateAndRecordId(spool, PlanStage::NEED_TIME);
// Now we can exhaust the child and start returning the cached results.
for (long i = 1; i <= 3; ++i) {
workAndAssertStateAndRecordId(spool, PlanStage::ADVANCED, i);
}
assertEofState(spool);
}
TEST_F(SpoolStageTest, propagatesNeedYield) {
auto mock = std::make_unique<MockStage>(expCtx(), &ws);
mock->enqueueAdvanced(makeRecord(1));
mock->enqueueStateCode(PlanStage::NEED_YIELD);
mock->enqueueAdvanced(makeRecord(2));
mock->enqueueStateCode(PlanStage::NEED_YIELD);
mock->enqueueStateCode(PlanStage::NEED_YIELD);
mock->enqueueAdvanced(makeRecord(3));
auto spool = makeSpool(std::move(mock));
// First, consume all of the NEED_YIELDs from the child.
workAndAssertStateAndRecordId(spool, PlanStage::NEED_YIELD);
workAndAssertStateAndRecordId(spool, PlanStage::NEED_YIELD);
workAndAssertStateAndRecordId(spool, PlanStage::NEED_YIELD);
// Now we can exhaust the child and start returning the cached results.
for (long i = 1; i <= 3; ++i) {
workAndAssertStateAndRecordId(spool, PlanStage::ADVANCED, i);
}
assertEofState(spool);
}
TEST_F(SpoolStageTest, onlyNeedYieldAndNeedTime) {
auto mock = std::make_unique<MockStage>(expCtx(), &ws);
mock->enqueueStateCode(PlanStage::NEED_YIELD);
mock->enqueueStateCode(PlanStage::NEED_TIME);
mock->enqueueStateCode(PlanStage::NEED_YIELD);
auto spool = makeSpool(std::move(mock));
// Consume all the NEED_YIELD/NEED_TIMEs, then we should see EOF immediately
workAndAssertStateAndRecordId(spool, PlanStage::NEED_YIELD);
workAndAssertStateAndRecordId(spool, PlanStage::NEED_TIME);
workAndAssertStateAndRecordId(
spool, PlanStage::NEED_YIELD, stdx::monostate{}, false /* childHasMoreRecords */);
assertEofState(spool);
}
TEST_F(SpoolStageTest, spillEveryRecordId) {
auto mock = std::make_unique<MockStage>(expCtx(), &ws);
mock->enqueueAdvanced(makeRecord(1));
mock->enqueueAdvanced(makeRecord(2));
mock->enqueueAdvanced(makeRecord(3));
const uint64_t maxAllowedMemoryUsageBytes = 1;
auto spool =
makeSpool(std::move(mock), maxAllowedMemoryUsageBytes, 1024 /* maxAllowedDiskUsageBytes */);
workAndAssertStateAndRecordId(spool, PlanStage::ADVANCED, 1);
workAndAssertStateAndRecordId(spool, PlanStage::ADVANCED, 2);
workAndAssertStateAndRecordId(spool, PlanStage::ADVANCED, 3);
assertEofState(spool);
// Validate the spilling stats. We should have spilled for each record.
auto stats = static_cast<const SpoolStats*>(spool.getSpecificStats());
ASSERT_EQUALS(stats->spills, 3);
ASSERT_GREATER_THAN(stats->spilledDataStorageSize, 0);
ASSERT_EQUALS(stats->maxMemoryUsageBytes, maxAllowedMemoryUsageBytes);
}
TEST_F(SpoolStageTest, spillEveryOtherRecordId) {
auto mock = std::make_unique<MockStage>(expCtx(), &ws);
mock->enqueueAdvanced(makeRecord(1));
mock->enqueueAdvanced(makeRecord(2));
mock->enqueueAdvanced(makeRecord(3));
mock->enqueueAdvanced(makeRecord(4));
mock->enqueueAdvanced(makeRecord(5));
const uint64_t maxAllowedMemoryUsageBytes = sizeof(RecordId) * 1.5;
auto spool =
makeSpool(std::move(mock), maxAllowedMemoryUsageBytes, 1024 /* maxAllowedDiskUsageBytes */);
workAndAssertStateAndRecordId(spool, PlanStage::ADVANCED, 1);
workAndAssertStateAndRecordId(spool, PlanStage::ADVANCED, 2);
workAndAssertStateAndRecordId(spool, PlanStage::ADVANCED, 3);
workAndAssertStateAndRecordId(spool, PlanStage::ADVANCED, 4);
workAndAssertStateAndRecordId(spool, PlanStage::ADVANCED, 5);
assertEofState(spool);
// Validate the spilling stats. We should have spilled every other record.
auto stats = static_cast<const SpoolStats*>(spool.getSpecificStats());
ASSERT_EQUALS(stats->spills, 2);
ASSERT_GREATER_THAN(stats->spilledDataStorageSize, 0);
ASSERT_EQUALS(stats->maxMemoryUsageBytes, maxAllowedMemoryUsageBytes);
}
TEST_F(SpoolStageTest, spillStringRecordId) {
auto mock = std::make_unique<MockStage>(expCtx(), &ws);
mock->enqueueAdvanced(makeRecord(1));
mock->enqueueAdvanced(makeRecord("this is a short string"));
mock->enqueueAdvanced(makeRecord(2));
mock->enqueueAdvanced(makeRecord("this is a longer string........."));
mock->enqueueAdvanced(makeRecord("the last string"));
const uint64_t maxAllowedMemoryUsageBytes = sizeof(RecordId) + 1;
auto spool =
makeSpool(std::move(mock), maxAllowedMemoryUsageBytes, 1024 /* maxAllowedDiskUsageBytes */);
workAndAssertStateAndRecordId(spool, PlanStage::ADVANCED, 1);
workAndAssertStateAndRecordId(spool, PlanStage::ADVANCED, "this is a short string");
workAndAssertStateAndRecordId(spool, PlanStage::ADVANCED, 2);
workAndAssertStateAndRecordId(spool, PlanStage::ADVANCED, "this is a longer string.........");
workAndAssertStateAndRecordId(spool, PlanStage::ADVANCED, "the last string");
assertEofState(spool);
// Validate the spilling stats. We should have spilled every other record.
auto stats = static_cast<const SpoolStats*>(spool.getSpecificStats());
ASSERT_EQUALS(stats->spills, 2);
ASSERT_GREATER_THAN(stats->spilledDataStorageSize, 0);
ASSERT_EQUALS(stats->maxMemoryUsageBytes, maxAllowedMemoryUsageBytes);
}
TEST_F(SpoolStageTest, spillingDisabled) {
auto mock = std::make_unique<MockStage>(expCtx(), &ws);
mock->enqueueAdvanced(makeRecord(1));
auto spool = makeSpool(std::move(mock),
0 /* maxAllowedMemoryUsageBytes */,
boost::none /* maxAllowedDiskUsageBytes */);
WorkingSetID id;
ASSERT_THROWS_CODE(
spool.work(&id), AssertionException, ErrorCodes::QueryExceededMemoryLimitNoDiskUseAllowed);
}
TEST_F(SpoolStageTest, maxDiskSpaceUsed) {
auto mock = std::make_unique<MockStage>(expCtx(), &ws);
mock->enqueueAdvanced(makeRecord(1));
mock->enqueueAdvanced(makeRecord(2));
auto spool = makeSpool(
std::move(mock), 1 /* maxAllowedMemoryUsageBytes */, 1 /* maxAllowedDiskUsageBytes */);
WorkingSetID id;
ASSERT_THROWS_CODE(spool.work(&id), AssertionException, 7443700);
}
} // namespace
|