be/src/exec/operator/scan_operator.h
Line | Count | Source |
1 | | // Licensed to the Apache Software Foundation (ASF) under one |
2 | | // or more contributor license agreements. See the NOTICE file |
3 | | // distributed with this work for additional information |
4 | | // regarding copyright ownership. The ASF licenses this file |
5 | | // to you under the Apache License, Version 2.0 (the |
6 | | // "License"); you may not use this file except in compliance |
7 | | // with the License. You may obtain a copy of the License at |
8 | | // |
9 | | // http://www.apache.org/licenses/LICENSE-2.0 |
10 | | // |
11 | | // Unless required by applicable law or agreed to in writing, |
12 | | // software distributed under the License is distributed on an |
13 | | // "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
14 | | // KIND, either express or implied. See the License for the |
15 | | // specific language governing permissions and limitations |
16 | | // under the License. |
17 | | |
18 | | #pragma once |
19 | | |
20 | | #include <cstdint> |
21 | | #include <optional> |
22 | | #include <set> |
23 | | #include <string> |
24 | | #include <utility> |
25 | | #include <vector> |
26 | | |
27 | | #include "common/status.h" |
28 | | #include "common/thread_safety_annotations.h" |
29 | | #include "core/field.h" |
30 | | #include "exec/common/util.hpp" |
31 | | #include "exec/operator/operator.h" |
32 | | #include "exec/pipeline/dependency.h" |
33 | | #include "exec/runtime_filter/runtime_filter_consumer_helper.h" |
34 | | #include "exec/runtime_filter/runtime_filter_partition_pruner.h" |
35 | | #include "exec/scan/scan_node.h" |
36 | | #include "exec/scan/scanner_context.h" |
37 | | #include "exprs/function_filter.h" |
38 | | #include "exprs/vectorized_fn_call.h" |
39 | | #include "exprs/vin_predicate.h" |
40 | | #include "runtime/descriptors.h" |
41 | | #include "storage/predicate/filter_olap_param.h" |
42 | | |
43 | | namespace doris { |
44 | | class ScannerDelegate; |
45 | | class OlapScanner; |
46 | | } // namespace doris |
47 | | |
48 | | namespace doris { |
49 | | |
50 | | enum class PushDownType { |
51 | | // The predicate can not be pushed down to data source |
52 | | UNACCEPTABLE, |
53 | | // The predicate can be pushed down to data source |
54 | | // and the data source can fully evaludate it |
55 | | ACCEPTABLE, |
56 | | // The predicate can be pushed down to data source |
57 | | // but the data source can not fully evaluate it. |
58 | | PARTIAL_ACCEPTABLE |
59 | | }; |
60 | | |
61 | | class ScanLocalStateBase : public PipelineXLocalState<> { |
62 | | public: |
63 | | ScanLocalStateBase(RuntimeState* state, OperatorXBase* parent) |
64 | 127 | : PipelineXLocalState<>(state, parent), _helper(parent->runtime_filter_descs()) {} |
65 | 127 | ~ScanLocalStateBase() override = default; |
66 | | |
67 | | [[nodiscard]] virtual bool should_run_serial() const = 0; |
68 | | |
69 | | virtual RuntimeProfile* scanner_profile() = 0; |
70 | | |
71 | | [[nodiscard]] virtual const TupleDescriptor* input_tuple_desc() const = 0; |
72 | | [[nodiscard]] virtual const TupleDescriptor* output_tuple_desc() const = 0; |
73 | | |
74 | | virtual int64_t limit_per_scanner() = 0; |
75 | | virtual std::atomic<int64_t>* shared_scan_limit_ptr() = 0; |
76 | | |
77 | | virtual void set_scan_ranges(RuntimeState* state, |
78 | | const std::vector<TScanRangeParams>& scan_ranges) = 0; |
79 | | virtual TPushAggOp::type get_push_down_agg_type() = 0; |
80 | | virtual const std::optional<std::vector<int32_t>>& get_push_down_count_slot_ids() const = 0; |
81 | | |
82 | | // If scan operator is serial operator(like topn), its real parallelism is 1. |
83 | | // Otherwise, its real parallelism is query_parallel_instance_num. |
84 | | // query_parallel_instance_num of olap table is usually equal to session var parallel_pipeline_task_num. |
85 | | // for file scan operator, its real parallelism will be 1 if it is in batch mode. |
86 | | // Related pr: |
87 | | // https://github.com/apache/doris/pull/42460 |
88 | | // https://github.com/apache/doris/pull/44635 |
89 | | [[nodiscard]] virtual int max_scanners_concurrency(RuntimeState* state) const; |
90 | | [[nodiscard]] virtual int min_scanners_concurrency(RuntimeState* state) const; |
91 | | [[nodiscard]] virtual ScannerScheduler* scan_scheduler(RuntimeState* state) const; |
92 | | |
93 | | // Thread-safe check whether a partition has been pruned by runtime filter. |
94 | | // Callable from any scan type's scanner in scheduling threads. |
95 | | bool is_partition_pruned(int64_t partition_id) const; |
96 | | |
97 | 0 | [[nodiscard]] std::string get_name() { return _parent->get_name(); } |
98 | | |
99 | 15 | uint64_t get_condition_cache_digest() const { return _condition_cache_digest; } |
100 | | |
101 | | Status update_late_arrival_runtime_filter(RuntimeState* state, int applied_rf_num, |
102 | | int& arrived_rf_num, |
103 | | VExprContextSPtrs& arrived_conjuncts); |
104 | | |
105 | | Status clone_conjunct_ctxs(VExprContextSPtrs& scanner_conjuncts); |
106 | | |
107 | | protected: |
108 | | friend class ScannerContext; |
109 | | friend class Scanner; |
110 | | |
111 | | virtual Status _init_profile() = 0; |
112 | | |
113 | | // Hook for subclasses to react after new runtime filters are appended. |
114 | | // Called inside update_late_arrival_runtime_filter() while _conjuncts_lock is held. |
115 | | // Default implementation runs partition pruning on the newly appended RFs. |
116 | | virtual Status _on_runtime_filter_update(); |
117 | | |
118 | | Status _do_partition_pruning_by_rf(); |
119 | | |
120 | | std::atomic<bool> _opened {false}; |
121 | | |
122 | | DependencySPtr _scan_dependency = nullptr; |
123 | | |
124 | | std::shared_ptr<RuntimeProfile> _scanner_profile; |
125 | | RuntimeProfile::Counter* _scanner_wait_worker_timer = nullptr; |
126 | | // Num of newly created free blocks when running query |
127 | | RuntimeProfile::Counter* _newly_create_free_blocks_num = nullptr; |
128 | | // Max num of scanner thread |
129 | | RuntimeProfile::Counter* _max_scan_concurrency = nullptr; |
130 | | RuntimeProfile::Counter* _min_scan_concurrency = nullptr; |
131 | | RuntimeProfile::HighWaterMarkCounter* _peak_running_scanner = nullptr; |
132 | | // time of get block from scanner |
133 | | RuntimeProfile::Counter* _scan_timer = nullptr; |
134 | | RuntimeProfile::Counter* _scan_cpu_timer = nullptr; |
135 | | // time of filter output block from scanner |
136 | | RuntimeProfile::Counter* _filter_timer = nullptr; |
137 | | // rows read from the scanner (including those discarded by (pre)filters) |
138 | | RuntimeProfile::Counter* _rows_read_counter = nullptr; |
139 | | |
140 | | RuntimeProfile::Counter* _num_scanners = nullptr; |
141 | | |
142 | | RuntimeProfile::Counter* _wait_for_rf_timer = nullptr; |
143 | | |
144 | | RuntimeProfile::Counter* _scan_rows = nullptr; |
145 | | RuntimeProfile::Counter* _scan_bytes = nullptr; |
146 | | |
147 | | AnnotatedMutex _conjuncts_lock; |
148 | | RuntimeFilterConsumerHelper _helper; |
149 | | // Preserve append identity independently of the cost-sorted operator snapshot. Every scanner |
150 | | // needs the exact RF contexts added since its own applied count. |
151 | | std::vector<std::pair<int, VExprContextSPtrs>> _late_arrival_conjunct_batches; |
152 | | // magic number as seed to generate hash value for condition cache |
153 | | uint64_t _condition_cache_digest = 0; |
154 | | // condition cache filter stats |
155 | | RuntimeProfile::Counter* _condition_cache_hit_counter = nullptr; |
156 | | RuntimeProfile::Counter* _condition_cache_filtered_rows_counter = nullptr; |
157 | | |
158 | | // ---- Runtime-filter partition pruning (scan-agnostic) ---- |
159 | | RuntimeFilterPartitionPruner _rf_partition_pruner; |
160 | | RuntimeProfile::Counter* _partitions_pruned_by_rf_counter = nullptr; |
161 | | RuntimeProfile::Counter* _total_partitions_rf_counter = nullptr; |
162 | | |
163 | | // Moved from ScanLocalState<Derived> to avoid re-instantiation for each Derived type. |
164 | | std::atomic<bool> _eos = false; |
165 | | int _max_pushdown_conditions_per_column = 1024; |
166 | | // Save all function predicates which may be pushed down to data source. |
167 | | std::vector<FunctionFilter> _push_down_functions; |
168 | | |
169 | | // Virtual methods with default implementations; overridden by subclasses when supported. |
170 | | // Declared here so that the normalize methods below (non-Derived-template) can call them. |
171 | 0 | virtual bool _push_down_topn(const RuntimePredicate& predicate) { return false; } |
172 | 0 | virtual PushDownType _should_push_down_bloom_filter() const { |
173 | 0 | return PushDownType::UNACCEPTABLE; |
174 | 0 | } |
175 | 0 | virtual PushDownType _should_push_down_topn_filter() const { |
176 | 0 | return PushDownType::UNACCEPTABLE; |
177 | 0 | } |
178 | 0 | virtual PushDownType _should_push_down_is_null_predicate(VectorizedFnCall* fn_call) const { |
179 | 0 | return PushDownType::UNACCEPTABLE; |
180 | 0 | } |
181 | 0 | virtual PushDownType _should_push_down_in_predicate() const { |
182 | 0 | return PushDownType::UNACCEPTABLE; |
183 | 0 | } |
184 | | virtual PushDownType _should_push_down_binary_predicate( |
185 | | VectorizedFnCall* fn_call, VExprContext* expr_ctx, Field& constant_val, |
186 | 0 | const std::set<std::string> fn_name) const { |
187 | 0 | return PushDownType::UNACCEPTABLE; |
188 | 0 | } |
189 | | virtual Status _should_push_down_function_filter(VectorizedFnCall* fn_call, |
190 | | VExprContext* expr_ctx, |
191 | | StringRef* constant_str, |
192 | | doris::FunctionContext** fn_ctx, |
193 | 0 | PushDownType& pdt) { |
194 | 0 | pdt = PushDownType::UNACCEPTABLE; |
195 | 0 | return Status::OK(); |
196 | 0 | } |
197 | | |
198 | | // Non-templated normalize methods, moved here to avoid re-compilation per Derived type. |
199 | | Status _eval_const_conjuncts(VExprContext* expr_ctx, PushDownType* pdt); |
200 | | Status _normalize_bloom_filter(VExprContext* expr_ctx, const VExprSPtr& root, |
201 | | SlotDescriptor* slot, |
202 | | std::vector<std::shared_ptr<ColumnPredicate>>& predicates, |
203 | | PushDownType* pdt); |
204 | | Status _normalize_topn_filter(VExprContext* expr_ctx, const VExprSPtr& root, |
205 | | SlotDescriptor* slot, |
206 | | std::vector<std::shared_ptr<ColumnPredicate>>& predicates, |
207 | | PushDownType* pdt); |
208 | | Status _normalize_function_filters(VExprContext* expr_ctx, SlotDescriptor* slot, |
209 | | PushDownType* pdt); |
210 | | |
211 | | // Inner PrimitiveType-template methods. Moved to base to avoid N(Derived)×M(PrimitiveType) |
212 | | // instantiation blowup: now instantiated M times total instead of N×M times. |
213 | | template <PrimitiveType T> |
214 | | Status _normalize_in_predicate(VExprContext* expr_ctx, const VExprSPtr& root, |
215 | | SlotDescriptor* slot, |
216 | | std::vector<std::shared_ptr<ColumnPredicate>>& predicates, |
217 | | ColumnValueRange<T>& range, PushDownType* pdt); |
218 | | template <PrimitiveType T> |
219 | | Status _normalize_binary_predicate(VExprContext* expr_ctx, const VExprSPtr& root, |
220 | | SlotDescriptor* slot, |
221 | | std::vector<std::shared_ptr<ColumnPredicate>>& predicates, |
222 | | ColumnValueRange<T>& range, PushDownType* pdt); |
223 | | template <PrimitiveType T> |
224 | | Status _normalize_is_null_predicate(VExprContext* expr_ctx, const VExprSPtr& root, |
225 | | SlotDescriptor* slot, |
226 | | std::vector<std::shared_ptr<ColumnPredicate>>& predicates, |
227 | | ColumnValueRange<T>& range, PushDownType* pdt); |
228 | | template <PrimitiveType PrimitiveType, typename ChangeFixedValueRangeFunc> |
229 | | Status _change_value_range(bool is_equal_op, ColumnValueRange<PrimitiveType>& range, |
230 | | const Field& value, const ChangeFixedValueRangeFunc& func, |
231 | | const std::string& fn_name); |
232 | | }; |
233 | | |
234 | | template <typename LocalStateType> |
235 | | class ScanOperatorX; |
236 | | template <typename Derived> |
237 | | class ScanLocalState : public ScanLocalStateBase { |
238 | | ENABLE_FACTORY_CREATOR(ScanLocalState); |
239 | | ScanLocalState(RuntimeState* state, OperatorXBase* parent) |
240 | 127 | : ScanLocalStateBase(state, parent) {}_ZN5doris14ScanLocalStateINS_18MockScanLocalStateEEC2EPNS_12RuntimeStateEPNS_13OperatorXBaseE Line | Count | Source | 240 | 108 | : ScanLocalStateBase(state, parent) {} |
_ZN5doris14ScanLocalStateINS_18OlapScanLocalStateEEC2EPNS_12RuntimeStateEPNS_13OperatorXBaseE Line | Count | Source | 240 | 15 | : ScanLocalStateBase(state, parent) {} |
_ZN5doris14ScanLocalStateINS_18FileScanLocalStateEEC2EPNS_12RuntimeStateEPNS_13OperatorXBaseE Line | Count | Source | 240 | 4 | : ScanLocalStateBase(state, parent) {} |
Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_21GroupCommitLocalStateEEC2EPNS_12RuntimeStateEPNS_13OperatorXBaseE Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18JDBCScanLocalStateEEC2EPNS_12RuntimeStateEPNS_13OperatorXBaseE Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18MetaScanLocalStateEEC2EPNS_12RuntimeStateEPNS_13OperatorXBaseE |
241 | 127 | ~ScanLocalState() override = default; _ZN5doris14ScanLocalStateINS_18MockScanLocalStateEED2Ev Line | Count | Source | 241 | 108 | ~ScanLocalState() override = default; |
_ZN5doris14ScanLocalStateINS_18OlapScanLocalStateEED2Ev Line | Count | Source | 241 | 15 | ~ScanLocalState() override = default; |
_ZN5doris14ScanLocalStateINS_18FileScanLocalStateEED2Ev Line | Count | Source | 241 | 4 | ~ScanLocalState() override = default; |
Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_21GroupCommitLocalStateEED2Ev Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18JDBCScanLocalStateEED2Ev Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18MetaScanLocalStateEED2Ev |
242 | | |
243 | | Status init(RuntimeState* state, LocalStateInfo& info) override; |
244 | | |
245 | | Status open(RuntimeState* state) override; |
246 | | |
247 | | Status close(RuntimeState* state) override; |
248 | | std::string debug_string(int indentation_level) const final; |
249 | | |
250 | | [[nodiscard]] bool should_run_serial() const override; |
251 | | |
252 | 37 | RuntimeProfile* scanner_profile() override { return _scanner_profile.get(); }Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18MockScanLocalStateEE15scanner_profileEv _ZN5doris14ScanLocalStateINS_18FileScanLocalStateEE15scanner_profileEv Line | Count | Source | 252 | 37 | RuntimeProfile* scanner_profile() override { return _scanner_profile.get(); } |
Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18OlapScanLocalStateEE15scanner_profileEv Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_21GroupCommitLocalStateEE15scanner_profileEv Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18JDBCScanLocalStateEE15scanner_profileEv Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18MetaScanLocalStateEE15scanner_profileEv |
253 | | |
254 | | [[nodiscard]] const TupleDescriptor* input_tuple_desc() const override; |
255 | | [[nodiscard]] const TupleDescriptor* output_tuple_desc() const override; |
256 | | |
257 | | int64_t limit_per_scanner() override; |
258 | | std::atomic<int64_t>* shared_scan_limit_ptr() override; |
259 | | |
260 | | void set_scan_ranges(RuntimeState* state, |
261 | 1 | const std::vector<TScanRangeParams>& scan_ranges) override {}_ZN5doris14ScanLocalStateINS_18MockScanLocalStateEE15set_scan_rangesEPNS_12RuntimeStateERKSt6vectorINS_16TScanRangeParamsESaIS6_EE Line | Count | Source | 261 | 1 | const std::vector<TScanRangeParams>& scan_ranges) override {} |
Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18FileScanLocalStateEE15set_scan_rangesEPNS_12RuntimeStateERKSt6vectorINS_16TScanRangeParamsESaIS6_EE Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18OlapScanLocalStateEE15set_scan_rangesEPNS_12RuntimeStateERKSt6vectorINS_16TScanRangeParamsESaIS6_EE Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_21GroupCommitLocalStateEE15set_scan_rangesEPNS_12RuntimeStateERKSt6vectorINS_16TScanRangeParamsESaIS6_EE Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18JDBCScanLocalStateEE15set_scan_rangesEPNS_12RuntimeStateERKSt6vectorINS_16TScanRangeParamsESaIS6_EE Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18MetaScanLocalStateEE15set_scan_rangesEPNS_12RuntimeStateERKSt6vectorINS_16TScanRangeParamsESaIS6_EE |
262 | | |
263 | | TPushAggOp::type get_push_down_agg_type() override; |
264 | | const std::optional<std::vector<int32_t>>& get_push_down_count_slot_ids() const override; |
265 | | |
266 | 0 | std::vector<Dependency*> execution_dependencies() override { |
267 | 0 | if (_filter_dependencies.empty()) { |
268 | 0 | return {}; |
269 | 0 | } |
270 | 0 | std::vector<Dependency*> res(_filter_dependencies.size()); |
271 | 0 | std::transform(_filter_dependencies.begin(), _filter_dependencies.end(), res.begin(), |
272 | 0 | [](DependencySPtr dep) { return dep.get(); });Unexecuted instantiation: _ZZN5doris14ScanLocalStateINS_18MockScanLocalStateEE22execution_dependenciesEvENKUlSt10shared_ptrINS_10DependencyEEE_clES5_ Unexecuted instantiation: _ZZN5doris14ScanLocalStateINS_18OlapScanLocalStateEE22execution_dependenciesEvENKUlSt10shared_ptrINS_10DependencyEEE_clES5_ Unexecuted instantiation: _ZZN5doris14ScanLocalStateINS_18FileScanLocalStateEE22execution_dependenciesEvENKUlSt10shared_ptrINS_10DependencyEEE_clES5_ Unexecuted instantiation: _ZZN5doris14ScanLocalStateINS_21GroupCommitLocalStateEE22execution_dependenciesEvENKUlSt10shared_ptrINS_10DependencyEEE_clES5_ Unexecuted instantiation: _ZZN5doris14ScanLocalStateINS_18JDBCScanLocalStateEE22execution_dependenciesEvENKUlSt10shared_ptrINS_10DependencyEEE_clES5_ Unexecuted instantiation: _ZZN5doris14ScanLocalStateINS_18MetaScanLocalStateEE22execution_dependenciesEvENKUlSt10shared_ptrINS_10DependencyEEE_clES5_ |
273 | 0 | return res; |
274 | 0 | } Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18MockScanLocalStateEE22execution_dependenciesEv Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18FileScanLocalStateEE22execution_dependenciesEv Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18OlapScanLocalStateEE22execution_dependenciesEv Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_21GroupCommitLocalStateEE22execution_dependenciesEv Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18JDBCScanLocalStateEE22execution_dependenciesEv Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18MetaScanLocalStateEE22execution_dependenciesEv |
275 | | |
276 | 0 | std::vector<Dependency*> dependencies() const override { return {_scan_dependency.get()}; }Unexecuted instantiation: _ZNK5doris14ScanLocalStateINS_18MockScanLocalStateEE12dependenciesEv Unexecuted instantiation: _ZNK5doris14ScanLocalStateINS_18FileScanLocalStateEE12dependenciesEv Unexecuted instantiation: _ZNK5doris14ScanLocalStateINS_18OlapScanLocalStateEE12dependenciesEv Unexecuted instantiation: _ZNK5doris14ScanLocalStateINS_21GroupCommitLocalStateEE12dependenciesEv Unexecuted instantiation: _ZNK5doris14ScanLocalStateINS_18JDBCScanLocalStateEE12dependenciesEv Unexecuted instantiation: _ZNK5doris14ScanLocalStateINS_18MetaScanLocalStateEE12dependenciesEv |
277 | | |
278 | 0 | std::vector<int> get_topn_filter_source_node_ids(RuntimeState* state, bool push_down) { |
279 | 0 | std::vector<int> result; |
280 | 0 | for (int id : _parent->cast<typename Derived::Parent>()._topn_filter_source_node_ids) { |
281 | 0 | const auto& pred = state->get_query_ctx()->get_runtime_predicate(id); |
282 | 0 | if (!pred.enable()) { |
283 | 0 | continue; |
284 | 0 | } |
285 | 0 | if (_push_down_topn(pred) == push_down) { |
286 | 0 | result.push_back(id); |
287 | 0 | } |
288 | 0 | } |
289 | 0 | return result; |
290 | 0 | } Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18OlapScanLocalStateEE31get_topn_filter_source_node_idsEPNS_12RuntimeStateEb Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18JDBCScanLocalStateEE31get_topn_filter_source_node_idsEPNS_12RuntimeStateEb Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18FileScanLocalStateEE31get_topn_filter_source_node_idsEPNS_12RuntimeStateEb Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18MetaScanLocalStateEE31get_topn_filter_source_node_idsEPNS_12RuntimeStateEb Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_21GroupCommitLocalStateEE31get_topn_filter_source_node_idsEPNS_12RuntimeStateEb Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18MockScanLocalStateEE31get_topn_filter_source_node_idsEPNS_12RuntimeStateEb |
291 | | |
292 | | protected: |
293 | | template <typename LocalStateType> |
294 | | friend class ScanOperatorX; |
295 | | friend class ScannerContext; |
296 | | friend class Scanner; |
297 | | |
298 | | Status _init_profile() override; |
299 | 0 | virtual Status _process_conjuncts(RuntimeState* state) { |
300 | 0 | RETURN_IF_ERROR(_do_partition_pruning_by_rf()); |
301 | 0 | return _normalize_conjuncts(state); |
302 | 0 | } Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18MockScanLocalStateEE18_process_conjunctsEPNS_12RuntimeStateE Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18FileScanLocalStateEE18_process_conjunctsEPNS_12RuntimeStateE Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18OlapScanLocalStateEE18_process_conjunctsEPNS_12RuntimeStateE Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_21GroupCommitLocalStateEE18_process_conjunctsEPNS_12RuntimeStateE Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18JDBCScanLocalStateEE18_process_conjunctsEPNS_12RuntimeStateE Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18MetaScanLocalStateEE18_process_conjunctsEPNS_12RuntimeStateE |
303 | 0 | virtual bool _should_push_down_common_expr(const VExprSPtr&) { return false; }Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18MockScanLocalStateEE29_should_push_down_common_exprERKSt10shared_ptrINS_5VExprEE Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18FileScanLocalStateEE29_should_push_down_common_exprERKSt10shared_ptrINS_5VExprEE Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18OlapScanLocalStateEE29_should_push_down_common_exprERKSt10shared_ptrINS_5VExprEE Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_21GroupCommitLocalStateEE29_should_push_down_common_exprERKSt10shared_ptrINS_5VExprEE Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18JDBCScanLocalStateEE29_should_push_down_common_exprERKSt10shared_ptrINS_5VExprEE Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18MetaScanLocalStateEE29_should_push_down_common_exprERKSt10shared_ptrINS_5VExprEE |
304 | | |
305 | 0 | virtual bool _storage_no_merge() { return false; }Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18MockScanLocalStateEE17_storage_no_mergeEv Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18FileScanLocalStateEE17_storage_no_mergeEv Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18OlapScanLocalStateEE17_storage_no_mergeEv Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_21GroupCommitLocalStateEE17_storage_no_mergeEv Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18JDBCScanLocalStateEE17_storage_no_mergeEv Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18MetaScanLocalStateEE17_storage_no_mergeEv |
306 | 0 | virtual bool _is_key_column(const std::string& col_name) { return false; }Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18MockScanLocalStateEE14_is_key_columnERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18FileScanLocalStateEE14_is_key_columnERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18OlapScanLocalStateEE14_is_key_columnERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_21GroupCommitLocalStateEE14_is_key_columnERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18JDBCScanLocalStateEE14_is_key_columnERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18MetaScanLocalStateEE14_is_key_columnERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE |
307 | | |
308 | | // Create a list of scanners. |
309 | | // The number of scanners is related to the implementation of the data source, |
310 | | // predicate conditions, and scheduling strategy. |
311 | | // So this method needs to be implemented separately by the subclass of ScanNode. |
312 | | // Finally, a set of scanners that have been prepared are returned. |
313 | 0 | virtual Status _init_scanners(std::list<ScannerSPtr>* scanners) { return Status::OK(); }Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18MockScanLocalStateEE14_init_scannersEPNSt7__cxx114listISt10shared_ptrINS_7ScannerEESaIS7_EEE Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18FileScanLocalStateEE14_init_scannersEPNSt7__cxx114listISt10shared_ptrINS_7ScannerEESaIS7_EEE Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18OlapScanLocalStateEE14_init_scannersEPNSt7__cxx114listISt10shared_ptrINS_7ScannerEESaIS7_EEE Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_21GroupCommitLocalStateEE14_init_scannersEPNSt7__cxx114listISt10shared_ptrINS_7ScannerEESaIS7_EEE Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18JDBCScanLocalStateEE14_init_scannersEPNSt7__cxx114listISt10shared_ptrINS_7ScannerEESaIS7_EEE Unexecuted instantiation: _ZN5doris14ScanLocalStateINS_18MetaScanLocalStateEE14_init_scannersEPNSt7__cxx114listISt10shared_ptrINS_7ScannerEESaIS7_EEE |
314 | | |
315 | | Status _normalize_conjuncts(RuntimeState* state); |
316 | | // Normalize a conjunct and try to convert it to column predicate recursively. |
317 | | Status _normalize_predicate(VExprContext* context, const VExprSPtr& root, |
318 | | VExprSPtr& output_expr); |
319 | | bool _is_predicate_acting_on_slot(const VExprSPtrs& children, SlotDescriptor** slot_desc, |
320 | | ColumnValueRangeType** range); |
321 | | Status _prepare_scanners(); |
322 | | |
323 | | // Submit the scanner to the thread pool and start execution |
324 | | Status _start_scanners(const std::list<std::shared_ptr<ScannerDelegate>>& scanners); |
325 | | |
326 | | // For some conjunct there is chance to elimate cast operator |
327 | | // Eg. Variant's sub column could eliminate cast in storage layer if |
328 | | // cast dst column type equals storage column type |
329 | | void get_cast_types_for_variants(); |
330 | | void _filter_and_collect_cast_type_for_variant( |
331 | | const VExpr* expr, |
332 | | std::unordered_map<std::string, std::vector<DataTypePtr>>& colname_to_cast_types); |
333 | | |
334 | | Status _get_topn_filters(RuntimeState* state); |
335 | | |
336 | | // Stores conjuncts that have been fully pushed down to the storage layer as predicate columns. |
337 | | // These expr contexts are kept alive to prevent their FunctionContext and constant strings |
338 | | // from being freed prematurely. |
339 | | VExprContextSPtrs _stale_expr_ctxs; |
340 | | VExprContextSPtrs _common_expr_ctxs_push_down; |
341 | | |
342 | | atomic_shared_ptr<ScannerContext> _scanner_ctx; |
343 | | |
344 | | // colname -> cast dst type |
345 | | std::map<std::string, DataTypePtr> _cast_types_for_variants; |
346 | | |
347 | | // slot id -> ColumnValueRange |
348 | | // Parsed from conjuncts |
349 | | phmap::flat_hash_map<int, ColumnValueRangeType> _slot_id_to_value_range; |
350 | | phmap::flat_hash_map<int, std::vector<std::shared_ptr<ColumnPredicate>>> _slot_id_to_predicates; |
351 | | std::vector<std::shared_ptr<MutilColumnBlockPredicate>> _or_predicates; |
352 | | |
353 | | std::vector<std::shared_ptr<Dependency>> _filter_dependencies; |
354 | | |
355 | | // ScanLocalState owns the ownership of scanner, scanner context only has its weakptr |
356 | | std::list<std::shared_ptr<ScannerDelegate>> _scanners; |
357 | | Arena _arena; |
358 | | int _instance_idx = 0; |
359 | | }; |
360 | | |
361 | | template <typename LocalStateType> |
362 | | class ScanOperatorX : public OperatorX<LocalStateType> { |
363 | | public: |
364 | | Status init(const TPlanNode& tnode, RuntimeState* state) override; |
365 | | Status prepare(RuntimeState* state) override; |
366 | | Status get_block_impl(RuntimeState* state, Block* block, bool* eos) override; |
367 | 1 | Status get_block_after_projects(RuntimeState* state, Block* block, bool* eos) override { |
368 | 1 | Status status = OperatorX<LocalStateType>::get_block(state, block, eos); |
369 | 1 | if (status.ok()) { |
370 | 1 | state->get_local_state(operator_id())->update_output_block_counters(*block); |
371 | 1 | } |
372 | 1 | return status; |
373 | 1 | } _ZN5doris13ScanOperatorXINS_18MockScanLocalStateEE24get_block_after_projectsEPNS_12RuntimeStateEPNS_5BlockEPb Line | Count | Source | 367 | 1 | Status get_block_after_projects(RuntimeState* state, Block* block, bool* eos) override { | 368 | 1 | Status status = OperatorX<LocalStateType>::get_block(state, block, eos); | 369 | 1 | if (status.ok()) { | 370 | 1 | state->get_local_state(operator_id())->update_output_block_counters(*block); | 371 | 1 | } | 372 | 1 | return status; | 373 | 1 | } |
Unexecuted instantiation: _ZN5doris13ScanOperatorXINS_18FileScanLocalStateEE24get_block_after_projectsEPNS_12RuntimeStateEPNS_5BlockEPb Unexecuted instantiation: _ZN5doris13ScanOperatorXINS_18OlapScanLocalStateEE24get_block_after_projectsEPNS_12RuntimeStateEPNS_5BlockEPb Unexecuted instantiation: _ZN5doris13ScanOperatorXINS_21GroupCommitLocalStateEE24get_block_after_projectsEPNS_12RuntimeStateEPNS_5BlockEPb Unexecuted instantiation: _ZN5doris13ScanOperatorXINS_18JDBCScanLocalStateEE24get_block_after_projectsEPNS_12RuntimeStateEPNS_5BlockEPb Unexecuted instantiation: _ZN5doris13ScanOperatorXINS_18MetaScanLocalStateEE24get_block_after_projectsEPNS_12RuntimeStateEPNS_5BlockEPb |
374 | 0 | [[nodiscard]] bool is_source() const override { return true; }Unexecuted instantiation: _ZNK5doris13ScanOperatorXINS_18MockScanLocalStateEE9is_sourceEv Unexecuted instantiation: _ZNK5doris13ScanOperatorXINS_18FileScanLocalStateEE9is_sourceEv Unexecuted instantiation: _ZNK5doris13ScanOperatorXINS_18OlapScanLocalStateEE9is_sourceEv Unexecuted instantiation: _ZNK5doris13ScanOperatorXINS_21GroupCommitLocalStateEE9is_sourceEv Unexecuted instantiation: _ZNK5doris13ScanOperatorXINS_18JDBCScanLocalStateEE9is_sourceEv Unexecuted instantiation: _ZNK5doris13ScanOperatorXINS_18MetaScanLocalStateEE9is_sourceEv |
375 | | |
376 | | [[nodiscard]] size_t get_reserve_mem_size(RuntimeState* state) override; |
377 | | |
378 | 127 | const std::vector<TRuntimeFilterDesc>& runtime_filter_descs() override { |
379 | 127 | return _runtime_filter_descs; |
380 | 127 | } _ZN5doris13ScanOperatorXINS_18MockScanLocalStateEE20runtime_filter_descsEv Line | Count | Source | 378 | 108 | const std::vector<TRuntimeFilterDesc>& runtime_filter_descs() override { | 379 | 108 | return _runtime_filter_descs; | 380 | 108 | } |
_ZN5doris13ScanOperatorXINS_18FileScanLocalStateEE20runtime_filter_descsEv Line | Count | Source | 378 | 4 | const std::vector<TRuntimeFilterDesc>& runtime_filter_descs() override { | 379 | 4 | return _runtime_filter_descs; | 380 | 4 | } |
_ZN5doris13ScanOperatorXINS_18OlapScanLocalStateEE20runtime_filter_descsEv Line | Count | Source | 378 | 15 | const std::vector<TRuntimeFilterDesc>& runtime_filter_descs() override { | 379 | 15 | return _runtime_filter_descs; | 380 | 15 | } |
Unexecuted instantiation: _ZN5doris13ScanOperatorXINS_21GroupCommitLocalStateEE20runtime_filter_descsEv Unexecuted instantiation: _ZN5doris13ScanOperatorXINS_18JDBCScanLocalStateEE20runtime_filter_descsEv Unexecuted instantiation: _ZN5doris13ScanOperatorXINS_18MetaScanLocalStateEE20runtime_filter_descsEv |
381 | | |
382 | | // Expose this operator's per-fragment shared partition-boundary parse |
383 | | // result to the non-templated ScanLocalStateBase so it can drive runtime |
384 | | // filter partition pruning without down-casting to a specific scan type. |
385 | | // Subclasses are expected to populate `_parsed_partition_boundaries` from |
386 | | // their own partition-boundary thrift field inside their `prepare()` |
387 | | // override before any LocalState observes the result. |
388 | 1 | const ParsedPartitionBoundaries* parsed_partition_boundaries() const override { |
389 | 1 | return &_parsed_partition_boundaries; |
390 | 1 | } _ZNK5doris13ScanOperatorXINS_18MockScanLocalStateEE27parsed_partition_boundariesEv Line | Count | Source | 388 | 1 | const ParsedPartitionBoundaries* parsed_partition_boundaries() const override { | 389 | 1 | return &_parsed_partition_boundaries; | 390 | 1 | } |
Unexecuted instantiation: _ZNK5doris13ScanOperatorXINS_18FileScanLocalStateEE27parsed_partition_boundariesEv Unexecuted instantiation: _ZNK5doris13ScanOperatorXINS_18OlapScanLocalStateEE27parsed_partition_boundariesEv Unexecuted instantiation: _ZNK5doris13ScanOperatorXINS_21GroupCommitLocalStateEE27parsed_partition_boundariesEv Unexecuted instantiation: _ZNK5doris13ScanOperatorXINS_18JDBCScanLocalStateEE27parsed_partition_boundariesEv Unexecuted instantiation: _ZNK5doris13ScanOperatorXINS_18MetaScanLocalStateEE27parsed_partition_boundariesEv |
391 | | |
392 | 0 | [[nodiscard]] virtual int get_column_id(const std::string& col_name) const { return -1; }Unexecuted instantiation: _ZNK5doris13ScanOperatorXINS_18MockScanLocalStateEE13get_column_idERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: _ZNK5doris13ScanOperatorXINS_18FileScanLocalStateEE13get_column_idERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: _ZNK5doris13ScanOperatorXINS_18OlapScanLocalStateEE13get_column_idERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: _ZNK5doris13ScanOperatorXINS_21GroupCommitLocalStateEE13get_column_idERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: _ZNK5doris13ScanOperatorXINS_18JDBCScanLocalStateEE13get_column_idERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE Unexecuted instantiation: _ZNK5doris13ScanOperatorXINS_18MetaScanLocalStateEE13get_column_idERKNSt7__cxx1112basic_stringIcSt11char_traitsIcESaIcEEE |
393 | | |
394 | 99 | [[nodiscard]] virtual bool can_push_down_column_predicate(const SlotDescriptor*) const { |
395 | 99 | return true; |
396 | 99 | } _ZNK5doris13ScanOperatorXINS_18MockScanLocalStateEE30can_push_down_column_predicateEPKNS_14SlotDescriptorE Line | Count | Source | 394 | 99 | [[nodiscard]] virtual bool can_push_down_column_predicate(const SlotDescriptor*) const { | 395 | 99 | return true; | 396 | 99 | } |
Unexecuted instantiation: _ZNK5doris13ScanOperatorXINS_18FileScanLocalStateEE30can_push_down_column_predicateEPKNS_14SlotDescriptorE Unexecuted instantiation: _ZNK5doris13ScanOperatorXINS_18OlapScanLocalStateEE30can_push_down_column_predicateEPKNS_14SlotDescriptorE Unexecuted instantiation: _ZNK5doris13ScanOperatorXINS_21GroupCommitLocalStateEE30can_push_down_column_predicateEPKNS_14SlotDescriptorE Unexecuted instantiation: _ZNK5doris13ScanOperatorXINS_18JDBCScanLocalStateEE30can_push_down_column_predicateEPKNS_14SlotDescriptorE Unexecuted instantiation: _ZNK5doris13ScanOperatorXINS_18MetaScanLocalStateEE30can_push_down_column_predicateEPKNS_14SlotDescriptorE |
397 | | |
398 | 0 | TPushAggOp::type get_push_down_agg_type() { return _push_down_agg_type; }Unexecuted instantiation: _ZN5doris13ScanOperatorXINS_18OlapScanLocalStateEE22get_push_down_agg_typeEv Unexecuted instantiation: _ZN5doris13ScanOperatorXINS_18JDBCScanLocalStateEE22get_push_down_agg_typeEv Unexecuted instantiation: _ZN5doris13ScanOperatorXINS_18FileScanLocalStateEE22get_push_down_agg_typeEv Unexecuted instantiation: _ZN5doris13ScanOperatorXINS_18MetaScanLocalStateEE22get_push_down_agg_typeEv Unexecuted instantiation: _ZN5doris13ScanOperatorXINS_21GroupCommitLocalStateEE22get_push_down_agg_typeEv Unexecuted instantiation: _ZN5doris13ScanOperatorXINS_18MockScanLocalStateEE22get_push_down_agg_typeEv |
399 | | |
400 | 0 | DataDistribution required_data_distribution(RuntimeState* /*state*/) const override { |
401 | 0 | if (OperatorX<LocalStateType>::is_serial_operator()) { |
402 | | // `is_serial_operator()` returns true means we ignore the distribution. |
403 | 0 | return {TLocalPartitionType::NOOP}; |
404 | 0 | } |
405 | 0 | return {TLocalPartitionType::BUCKET_HASH_SHUFFLE}; |
406 | 0 | } Unexecuted instantiation: _ZNK5doris13ScanOperatorXINS_18MockScanLocalStateEE26required_data_distributionEPNS_12RuntimeStateE Unexecuted instantiation: _ZNK5doris13ScanOperatorXINS_18FileScanLocalStateEE26required_data_distributionEPNS_12RuntimeStateE Unexecuted instantiation: _ZNK5doris13ScanOperatorXINS_18OlapScanLocalStateEE26required_data_distributionEPNS_12RuntimeStateE Unexecuted instantiation: _ZNK5doris13ScanOperatorXINS_21GroupCommitLocalStateEE26required_data_distributionEPNS_12RuntimeStateE Unexecuted instantiation: _ZNK5doris13ScanOperatorXINS_18JDBCScanLocalStateEE26required_data_distributionEPNS_12RuntimeStateE Unexecuted instantiation: _ZNK5doris13ScanOperatorXINS_18MetaScanLocalStateEE26required_data_distributionEPNS_12RuntimeStateE |
407 | | |
408 | 0 | void set_low_memory_mode(RuntimeState* state) override { |
409 | 0 | auto& local_state = get_local_state(state); |
410 | |
|
411 | 0 | if (auto ctx = local_state._scanner_ctx.load()) { |
412 | 0 | ctx->clear_free_blocks(); |
413 | 0 | } |
414 | 0 | } Unexecuted instantiation: _ZN5doris13ScanOperatorXINS_18MockScanLocalStateEE19set_low_memory_modeEPNS_12RuntimeStateE Unexecuted instantiation: _ZN5doris13ScanOperatorXINS_18FileScanLocalStateEE19set_low_memory_modeEPNS_12RuntimeStateE Unexecuted instantiation: _ZN5doris13ScanOperatorXINS_18OlapScanLocalStateEE19set_low_memory_modeEPNS_12RuntimeStateE Unexecuted instantiation: _ZN5doris13ScanOperatorXINS_21GroupCommitLocalStateEE19set_low_memory_modeEPNS_12RuntimeStateE Unexecuted instantiation: _ZN5doris13ScanOperatorXINS_18JDBCScanLocalStateEE19set_low_memory_modeEPNS_12RuntimeStateE Unexecuted instantiation: _ZN5doris13ScanOperatorXINS_18MetaScanLocalStateEE19set_low_memory_modeEPNS_12RuntimeStateE |
415 | | |
416 | | using OperatorX<LocalStateType>::node_id; |
417 | | using OperatorX<LocalStateType>::operator_id; |
418 | | using OperatorX<LocalStateType>::get_local_state; |
419 | | |
420 | | #ifdef BE_TEST |
421 | 24 | ScanOperatorX() = default; |
422 | | #endif |
423 | | |
424 | | protected: |
425 | | using LocalState = LocalStateType; |
426 | | friend class OlapScanner; |
427 | | ScanOperatorX(ObjectPool* pool, const TPlanNode& tnode, int operator_id, |
428 | | const DescriptorTbl& descs, int parallel_tasks = 0); |
429 | 45 | virtual ~ScanOperatorX() = default; _ZN5doris13ScanOperatorXINS_18MockScanLocalStateEED2Ev Line | Count | Source | 429 | 24 | virtual ~ScanOperatorX() = default; |
_ZN5doris13ScanOperatorXINS_18OlapScanLocalStateEED2Ev Line | Count | Source | 429 | 17 | virtual ~ScanOperatorX() = default; |
_ZN5doris13ScanOperatorXINS_18FileScanLocalStateEED2Ev Line | Count | Source | 429 | 4 | virtual ~ScanOperatorX() = default; |
Unexecuted instantiation: _ZN5doris13ScanOperatorXINS_21GroupCommitLocalStateEED2Ev Unexecuted instantiation: _ZN5doris13ScanOperatorXINS_18JDBCScanLocalStateEED2Ev Unexecuted instantiation: _ZN5doris13ScanOperatorXINS_18MetaScanLocalStateEED2Ev |
430 | | template <typename Derived> |
431 | | friend class ScanLocalState; |
432 | | friend class OlapScanLocalState; |
433 | | |
434 | | // For load scan node, there should be both input and output tuple descriptor. |
435 | | // For query scan node, there is only output_tuple_desc. |
436 | | TupleId _input_tuple_id = -1; |
437 | | TupleId _output_tuple_id = -1; |
438 | | const TupleDescriptor* _input_tuple_desc = nullptr; |
439 | | const TupleDescriptor* _output_tuple_desc = nullptr; |
440 | | |
441 | | phmap::flat_hash_map<int, SlotDescriptor*> _slot_id_to_slot_desc; |
442 | | std::unordered_map<std::string, int> _colname_to_slot_id; |
443 | | |
444 | | // These two values are from query_options |
445 | | int _max_scan_key_num = 48; |
446 | | int _max_pushdown_conditions_per_column = 1024; |
447 | | |
448 | | // If the query like select * from table limit 10; then the query should run in |
449 | | // single scanner to avoid too many scanners which will cause lots of useless read. |
450 | | bool _should_run_serial = false; |
451 | | |
452 | | VExprContextSPtrs _common_expr_ctxs_push_down; |
453 | | |
454 | | // If sort info is set, push limit to each scanner; |
455 | | int64_t _limit_per_scanner = -1; |
456 | | |
457 | | // Shared remaining limit across all parallel instances and their scanners. |
458 | | // Initialized to _limit (SQL LIMIT); -1 means no limit. |
459 | | std::atomic<int64_t> _shared_scan_limit {-1}; |
460 | | |
461 | | std::vector<TRuntimeFilterDesc> _runtime_filter_descs; |
462 | | |
463 | | TPushAggOp::type _push_down_agg_type; |
464 | | |
465 | | // Semantic arguments of a pushed-down COUNT. This is deliberately optional because absence |
466 | | // and an empty list have different meanings during a BE-first rolling upgrade: |
467 | | // |
468 | | // - nullopt: an old FE did not send the field, so the new BE must use the normal scan; |
469 | | // - empty: the new FE explicitly planned COUNT(*)/COUNT(1); |
470 | | // - non-empty: the new FE explicitly planned COUNT(col). |
471 | | // |
472 | | // Treating nullopt as empty would silently reinterpret an old plan as COUNT(*). |
473 | | std::optional<std::vector<int32_t>> _push_down_count_slot_ids; |
474 | | |
475 | | // Record the value of the aggregate function 'count' from doris's be |
476 | | int64_t _push_down_count = -1; |
477 | | const int _parallel_tasks = 0; |
478 | | |
479 | | std::vector<int> _topn_filter_source_node_ids; |
480 | | |
481 | | std::shared_ptr<MemShareArbitrator> _mem_arb = nullptr; |
482 | | std::shared_ptr<MemLimiter> _mem_limiter = nullptr; |
483 | | |
484 | | // Shared parse result of partition boundaries for runtime-filter partition |
485 | | // pruning. Lives here (rather than on the Olap-specific subclass) so any |
486 | | // future scan type can populate it in its `prepare()` override and reuse |
487 | | // the generic pruning machinery in ScanLocalStateBase. |
488 | | ParsedPartitionBoundaries _parsed_partition_boundaries; |
489 | | }; |
490 | | |
491 | | } // namespace doris |