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
|
/**
* Copyright (C) 2018-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.
*/
#include "mongo/db/exec/distinct_scan.h"
#include <memory>
#include <vector>
#include <boost/container/small_vector.hpp>
// IWYU pragma: no_include "boost/intrusive/detail/iterator.hpp"
#include <boost/move/utility_core.hpp>
#include <boost/optional/optional.hpp>
#include "mongo/db/catalog/collection.h"
#include "mongo/db/exec/plan_stage.h"
#include "mongo/db/exec/working_set.h"
#include "mongo/db/index/index_access_method.h"
#include "mongo/db/index/index_descriptor.h"
#include "mongo/db/query/plan_executor_impl.h"
#include "mongo/db/record_id.h"
#include "mongo/db/storage/recovery_unit.h"
#include "mongo/db/transaction_resources.h"
#include "mongo/util/assert_util.h"
#define MONGO_LOGV2_DEFAULT_COMPONENT ::mongo::logv2::LogComponent::kQuery
namespace mongo {
using std::unique_ptr;
// static
const char* DistinctScan::kStageType = "DISTINCT_SCAN";
DistinctScan::DistinctScan(ExpressionContext* expCtx,
VariantCollectionPtrOrAcquisition collection,
DistinctParams params,
WorkingSet* workingSet,
std::unique_ptr<ShardFiltererImpl> shardFilterer,
bool needsFetch)
: RequiresIndexStage(kStageType, expCtx, collection, params.indexDescriptor, workingSet),
_workingSet(workingSet),
_keyPattern(std::move(params.keyPattern)),
_scanDirection(params.scanDirection),
_bounds(std::move(params.bounds)),
_fieldNo(params.fieldNo),
_checker(&_bounds, _keyPattern, _scanDirection),
_shardFilterer(std::move(shardFilterer)),
_needsFetch(needsFetch) {
_specificStats.keyPattern = _keyPattern;
_specificStats.indexName = params.name;
_specificStats.indexVersion = static_cast<int>(params.indexDescriptor->version());
_specificStats.isMultiKey = params.isMultiKey;
_specificStats.multiKeyPaths = params.multikeyPaths;
_specificStats.isUnique = params.indexDescriptor->unique();
_specificStats.isSparse = params.indexDescriptor->isSparse();
_specificStats.isPartial = params.indexDescriptor->isPartial();
_specificStats.direction = _scanDirection;
_specificStats.collation = params.indexDescriptor->infoObj()
.getObjectField(IndexDescriptor::kCollationFieldName)
.getOwned();
_specificStats.isShardFiltering = _shardFilterer != nullptr;
_specificStats.isFetching = _needsFetch;
// Set up our initial seek. If there is no valid data, just mark as EOF.
_commonStats.isEOF = !_checker.getStartSeekPoint(&_seekPoint);
}
PlanStage::StageState DistinctScan::doFetch(WorkingSetMember* member,
WorkingSetID id,
WorkingSetID* out) {
if (_idRetrying != WorkingSet::INVALID_ID) {
id = _idRetrying;
_idRetrying = WorkingSet::INVALID_ID;
}
return handlePlanStageYield(
expCtx(),
"DistinctScan",
[&] {
if (!_fetchCursor) {
_fetchCursor = collectionPtr()->getCursor(opCtx());
}
if (!WorkingSetCommon::fetch(opCtx(),
_workingSet,
id,
_fetchCursor.get(),
collectionPtr(),
collectionPtr()->ns())) {
_workingSet->free(id);
return NEED_TIME;
}
return ADVANCED;
},
[&] {
// Ensure that the BSONObj underlying the WorkingSetMember is owned because it may be
// freed when we yield.
member->makeObjOwnedIfNeeded();
_idRetrying = id;
*out = WorkingSet::INVALID_ID;
} /* yieldHandler */);
}
PlanStage::StageState DistinctScan::doWork(WorkingSetID* out) {
if (_commonStats.isEOF)
return PlanStage::IS_EOF;
boost::optional<IndexKeyEntry> kv;
const auto ret = handlePlanStageYield(
expCtx(),
"DistinctScan",
[&] {
if (!_cursor) {
_cursor = indexAccessMethod()->newCursor(opCtx(), _scanDirection == 1);
} else if (_needsFetch && _idRetrying != WorkingSet::INVALID_ID) {
// We're retrying a fetch! Don't call seek() or next().
return PlanStage::ADVANCED;
}
if (_needsSequentialScan) {
kv = _cursor->next();
_needsSequentialScan = false;
return PlanStage::ADVANCED;
}
key_string::Builder builder(
indexAccessMethod()->getSortedDataInterface()->getKeyStringVersion(),
indexAccessMethod()->getSortedDataInterface()->getOrdering());
kv = _cursor->seek(IndexEntryComparison::makeKeyStringFromSeekPointForSeek(
_seekPoint, _scanDirection == 1, builder));
return PlanStage::ADVANCED;
},
[&] {
*out = WorkingSet::INVALID_ID;
} /* yieldHandler */);
if (ret != PlanStage::ADVANCED) {
return ret;
}
if (!kv) {
_commonStats.isEOF = true;
return PlanStage::IS_EOF;
}
++_specificStats.keysExamined;
switch (_checker.checkKey(kv->key, &_seekPoint)) {
case IndexBoundsChecker::MUST_ADVANCE: {
// Try again next time. The checker has adjusted the _seekPoint.
return PlanStage::NEED_TIME;
}
case IndexBoundsChecker::DONE: {
// There won't be a next time.
_commonStats.isEOF = true;
_cursor.reset();
return IS_EOF;
}
case IndexBoundsChecker::VALID: {
if (!kv->key.isOwned())
kv->key = kv->key.getOwned();
// Package up the result for the caller.
WorkingSetID id = _workingSet->allocate();
WorkingSetMember* member = _workingSet->get(id);
member->recordId = kv->loc;
member->keyData.push_back(
IndexKeyDatum(_keyPattern,
kv->key,
workingSetIndexId(),
shard_role_details::getRecoveryUnit(opCtx())->getSnapshotId()));
_workingSet->transitionToRecordIdAndIdx(id);
if (_needsFetch) {
const auto fetchRet = doFetch(member, id, out);
if (fetchRet != PlanStage::ADVANCED) {
return fetchRet;
}
}
// We need one last check before we can return the key if we've been initialized with a
// shard filter. If this document is an orphan, we need to try the next one; otherwise,
// we can proceed.
const auto belongs = _shardFilterer ? _shardFilterer->documentBelongsToMe(*member)
: ShardFilterer::DocumentBelongsResult::kBelongs;
switch (belongs) {
case ShardFilterer::DocumentBelongsResult::kBelongs: {
// Adjust the _seekPoint so that it is exclusive on the field we are using.
_seekPoint.keyPrefix = kv->key;
_seekPoint.prefixLen = _fieldNo + 1;
_seekPoint.firstExclusive = _fieldNo;
// Return the current entry.
*out = id;
return PlanStage::ADVANCED;
}
case ShardFilterer::DocumentBelongsResult::kNoShardKey: {
tassert(9245300, "Covering index failed to provide shard key", _needsFetch);
// Skip this working set member with a warning - no shard key should not be
// possible unless manually inserting data into a shard.
tassert(9245400, "Expected document to be fetched", member->hasObj());
LOGV2_WARNING(
9245401,
"No shard key found in document, it may have been inserted manually "
"into shard",
"document"_attr = redact(member->doc.value().toBson()),
"keyPattern"_attr = _shardFilterer->getKeyPattern());
[[fallthrough]];
}
case ShardFilterer::DocumentBelongsResult::kDoesNotBelong: {
// We found an orphan; we need to try the next entry in the index in case its
// not an orphan.
_needsSequentialScan = true;
_workingSet->free(id);
return PlanStage::NEED_TIME;
}
default:
MONGO_UNREACHABLE_TASSERT(9245301);
}
}
}
MONGO_UNREACHABLE_TASSERT(9245303);
}
bool DistinctScan::isEOF() {
return _commonStats.isEOF;
}
void DistinctScan::doSaveStateRequiresIndex() {
// We always seek, so we don't care where the cursor is.
if (_cursor)
_cursor->saveUnpositioned();
}
void DistinctScan::doRestoreStateRequiresIndex() {
if (_cursor)
_cursor->restore();
}
void DistinctScan::doDetachFromOperationContext() {
if (_cursor)
_cursor->detachFromOperationContext();
}
void DistinctScan::doReattachToOperationContext() {
if (_cursor)
_cursor->reattachToOperationContext(opCtx());
}
unique_ptr<PlanStageStats> DistinctScan::getStats() {
// Serialize the bounds to BSON if we have not done so already. This is done here rather than in
// the constructor in order to avoid the expensive serialization operation unless the distinct
// command is being explained.
if (_specificStats.indexBounds.isEmpty()) {
_specificStats.indexBounds = _bounds.toBSON(!_specificStats.collation.isEmpty());
}
unique_ptr<PlanStageStats> ret =
std::make_unique<PlanStageStats>(_commonStats, STAGE_DISTINCT_SCAN);
ret->specific = std::make_unique<DistinctScanStats>(_specificStats);
return ret;
}
const SpecificStats* DistinctScan::getSpecificStats() const {
return &_specificStats;
}
} // namespace mongo
|