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
|
/**
* Copyright (C) 2022-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.
*/
#pragma once
#include <set>
#include <sstream>
#include <string>
#include <vector>
#include "mongo/db/query/optimizer/containers.h"
#include "mongo/db/query/optimizer/utils/printable_enum.h"
namespace mongo::optimizer {
using FieldNameType = std::string;
using FieldPathType = std::vector<FieldNameType>;
using CollectionNameType = std::string;
using ProjectionName = std::string;
using ProjectionNameSet = opt::unordered_set<ProjectionName>;
using ProjectionNameOrderedSet = std::set<ProjectionName>;
using ProjectionNameVector = std::vector<ProjectionName>;
using ProjectionRenames = opt::unordered_map<ProjectionName, ProjectionName>;
// Map from scanDefName to rid projection name.
using RIDProjectionsMap = opt::unordered_map<std::string, ProjectionName>;
class ProjectionNameOrderPreservingSet {
public:
ProjectionNameOrderPreservingSet() = default;
ProjectionNameOrderPreservingSet(ProjectionNameVector v);
ProjectionNameOrderPreservingSet(const ProjectionNameOrderPreservingSet& other);
ProjectionNameOrderPreservingSet(ProjectionNameOrderPreservingSet&& other) noexcept;
bool operator==(const ProjectionNameOrderPreservingSet& other) const;
std::pair<size_t, bool> emplace_back(ProjectionName projectionName);
std::pair<size_t, bool> find(const ProjectionName& projectionName) const;
bool erase(const ProjectionName& projectionName);
bool isEqualIgnoreOrder(const ProjectionNameOrderPreservingSet& other) const;
const ProjectionNameVector& getVector() const;
private:
opt::unordered_map<ProjectionName, size_t> _map;
ProjectionNameVector _vector;
};
#define INDEXREQTARGET_NAMES(F) \
F(Index) \
F(Seek) \
F(Complete)
MAKE_PRINTABLE_ENUM(IndexReqTarget, INDEXREQTARGET_NAMES);
MAKE_PRINTABLE_ENUM_STRING_ARRAY(IndexReqTargetEnum, IndexReqTarget, INDEXREQTARGET_NAMES);
#undef INDEXREQTARGET_NAMES
#define DISTRIBUTIONTYPE_NAMES(F) \
F(Centralized) \
F(Replicated) \
F(RoundRobin) \
F(HashPartitioning) \
F(RangePartitioning) \
F(UnknownPartitioning)
MAKE_PRINTABLE_ENUM(DistributionType, DISTRIBUTIONTYPE_NAMES);
MAKE_PRINTABLE_ENUM_STRING_ARRAY(DistributionTypeEnum, DistributionType, DISTRIBUTIONTYPE_NAMES);
#undef DISTRIBUTIONTYPE_NAMES
// In case of covering scan, index, or fetch, specify names of bound projections for each field.
// Also optionally specify if applicable the rid and record (root) projections.
struct FieldProjectionMap {
ProjectionName _ridProjection;
ProjectionName _rootProjection;
opt::unordered_map<FieldNameType, ProjectionName> _fieldProjections;
bool operator==(const FieldProjectionMap& other) const;
};
// Used to generate field names encoding index keys for covered indexes.
static constexpr const char* kIndexKeyPrefix = "<indexKey>";
/**
* Memo-related types.
*/
using GroupIdType = int64_t;
// Logical node id.
struct MemoLogicalNodeId {
GroupIdType _groupId;
size_t _index;
bool operator==(const MemoLogicalNodeId& other) const;
};
struct NodeIdHash {
size_t operator()(const MemoLogicalNodeId& id) const;
};
using NodeIdSet = opt::unordered_set<MemoLogicalNodeId, NodeIdHash>;
// Physical node id.
struct MemoPhysicalNodeId {
GroupIdType _groupId;
size_t _index;
bool operator==(const MemoPhysicalNodeId& other) const;
};
class DebugInfo {
public:
static const int kIterationLimitForTests = 10000;
static const int kDefaultDebugLevelForTests = 1;
static DebugInfo kDefaultForTests;
static DebugInfo kDefaultForProd;
DebugInfo(bool debugMode, int debugLevel, int iterationLimit);
bool isDebugMode() const;
bool hasDebugLevel(int debugLevel) const;
bool exceedsIterationLimit(int iterations) const;
private:
// Are we in debug mode? Can we do additional logging, etc?
const bool _debugMode;
const int _debugLevel;
// Maximum number of rewrite iterations.
const int _iterationLimit;
};
using CEType = double;
using SelectivityType = double;
class CostType {
static constexpr double kPrecision = 0.00000001;
public:
static CostType kInfinity;
static CostType kZero;
static CostType fromDouble(double cost);
CostType(const CostType& other) = default;
CostType(CostType&& other) = default;
CostType& operator=(const CostType& other) = default;
bool operator==(const CostType& other) = delete;
bool operator!=(const CostType& other) = delete;
bool operator<(const CostType& other) const;
CostType operator+(const CostType& other) const;
CostType operator-(const CostType& other) const;
CostType& operator+=(const CostType& other);
std::string toString() const;
/**
* Returns the cost as a double, or asserts if infinite.
*/
double getCost() const;
bool isInfinite() const;
private:
CostType(bool isInfinite, double cost);
bool _isInfinite;
double _cost;
};
struct CostAndCE {
CostType _cost;
CEType _ce;
};
#define COLLATIONOP_OPNAMES(F) \
F(Ascending) \
F(Descending) \
F(Clustered)
MAKE_PRINTABLE_ENUM(CollationOp, COLLATIONOP_OPNAMES);
MAKE_PRINTABLE_ENUM_STRING_ARRAY(CollationOpEnum, CollationOp, COLLATIONOP_OPNAMES);
#undef PATHSYNTAX_OPNAMES
using ProjectionCollationEntry = std::pair<ProjectionName, CollationOp>;
using ProjectionCollationSpec = std::vector<ProjectionCollationEntry>;
CollationOp reverseCollationOp(CollationOp op);
bool collationOpsCompatible(CollationOp availableOp, CollationOp requiredOp);
bool collationsCompatible(const ProjectionCollationSpec& available,
const ProjectionCollationSpec& required);
enum class DisableIndexOptions {
Enabled, // All types of indexes are enabled.
DisableAll, // Disable all indexes.
DisablePartialOnly // Only disable partial indexes.
};
struct QueryHints {
// Disable full collection scans.
bool _disableScan = false;
// Disable index scans.
DisableIndexOptions _disableIndexes = DisableIndexOptions::Enabled;
// Disable placing a hash-join during RIDIntersect implementation.
bool _disableHashJoinRIDIntersect = false;
// Disable placing a merge-join during RIDIntersect implementation.
bool _disableMergeJoinRIDIntersect = false;
// Disable placing a group-by and union based RIDIntersect implementation.
bool _disableGroupByAndUnionRIDIntersect = false;
// If set keep track of rejected plans in the memo.
bool _keepRejectedPlans = false;
// Disable Cascades branch-and-bound strategy, and fully evaluate all plans. Used in conjunction
// with keeping rejected plans.
bool _disableBranchAndBound = false;
// Controls if we prefer to cover queries which may return nulls with indexes, even though we
// may not distinguish between null and missing. Alternatively we always fetch (slower).
bool _fastIndexNullHandling = false;
// Controls if we prefer to insert redundant index predicates on the Seek side in order to
// prevent issues arising from yielding.
bool _disableYieldingTolerantPlans = true;
};
} // namespace mongo::optimizer
|