/root/doris/be/src/exec/pipeline/dependency.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 | | #ifdef __APPLE__ |
21 | | #include <netinet/in.h> |
22 | | #include <sys/_types/_u_int.h> |
23 | | #endif |
24 | | |
25 | | #include <concurrentqueue.h> |
26 | | #include <gen_cpp/internal_service.pb.h> |
27 | | #include <sqltypes.h> |
28 | | |
29 | | #include <atomic> |
30 | | #include <functional> |
31 | | #include <memory> |
32 | | #include <mutex> |
33 | | #include <thread> |
34 | | #include <utility> |
35 | | |
36 | | #include "common/config.h" |
37 | | #include "common/logging.h" |
38 | | #include "common/thread_safety_annotations.h" |
39 | | #include "core/block/block.h" |
40 | | #include "core/types.h" |
41 | | #include "exec/common/agg_utils.h" |
42 | | #include "exec/common/join_utils.h" |
43 | | #include "exec/common/set_utils.h" |
44 | | #include "exec/operator/data_queue.h" |
45 | | #include "exec/operator/join/process_hash_table_probe.h" |
46 | | #include "exec/sort/partition_sorter.h" |
47 | | #include "exec/sort/sorter.h" |
48 | | #include "exec/spill/spill_file.h" |
49 | | #include "util/brpc_closure.h" |
50 | | #include "util/stack_util.h" |
51 | | |
52 | | namespace doris { |
53 | | class AggFnEvaluator; |
54 | | class VSlotRef; |
55 | | } // namespace doris |
56 | | |
57 | | namespace doris { |
58 | | #include "common/compile_check_begin.h" |
59 | | class Dependency; |
60 | | class PipelineTask; |
61 | | struct BasicSharedState; |
62 | | using DependencySPtr = std::shared_ptr<Dependency>; |
63 | | class LocalExchangeSourceLocalState; |
64 | | |
65 | | static constexpr auto SLOW_DEPENDENCY_THRESHOLD = 60 * 1000L * 1000L * 1000L; |
66 | | static constexpr auto TIME_UNIT_DEPENDENCY_LOG = 30 * 1000L * 1000L * 1000L; |
67 | | static_assert(TIME_UNIT_DEPENDENCY_LOG < SLOW_DEPENDENCY_THRESHOLD); |
68 | | |
69 | | struct BasicSharedState { |
70 | | ENABLE_FACTORY_CREATOR(BasicSharedState) |
71 | | |
72 | | template <class TARGET> |
73 | 96.5k | TARGET* cast() { |
74 | 96.5k | DCHECK(dynamic_cast<TARGET*>(this)) |
75 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() |
76 | 0 | << " and expect type is" << typeid(TARGET).name(); |
77 | 96.5k | return reinterpret_cast<TARGET*>(this); |
78 | 96.5k | } _ZN5doris16BasicSharedState4castINS_19HashJoinSharedStateEEEPT_v Line | Count | Source | 73 | 96.0k | TARGET* cast() { | 74 | 96.0k | DCHECK(dynamic_cast<TARGET*>(this)) | 75 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 76 | 0 | << " and expect type is" << typeid(TARGET).name(); | 77 | 96.0k | return reinterpret_cast<TARGET*>(this); | 78 | 96.0k | } |
_ZN5doris16BasicSharedState4castINS_30PartitionedHashJoinSharedStateEEEPT_v Line | Count | Source | 73 | 3 | TARGET* cast() { | 74 | 3 | DCHECK(dynamic_cast<TARGET*>(this)) | 75 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 76 | 0 | << " and expect type is" << typeid(TARGET).name(); | 77 | 3 | return reinterpret_cast<TARGET*>(this); | 78 | 3 | } |
_ZN5doris16BasicSharedState4castINS_15SortSharedStateEEEPT_v Line | Count | Source | 73 | 50 | TARGET* cast() { | 74 | 50 | DCHECK(dynamic_cast<TARGET*>(this)) | 75 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 76 | 0 | << " and expect type is" << typeid(TARGET).name(); | 77 | 50 | return reinterpret_cast<TARGET*>(this); | 78 | 50 | } |
_ZN5doris16BasicSharedState4castINS_20SpillSortSharedStateEEEPT_v Line | Count | Source | 73 | 29 | TARGET* cast() { | 74 | 29 | DCHECK(dynamic_cast<TARGET*>(this)) | 75 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 76 | 0 | << " and expect type is" << typeid(TARGET).name(); | 77 | 29 | return reinterpret_cast<TARGET*>(this); | 78 | 29 | } |
_ZN5doris16BasicSharedState4castINS_25NestedLoopJoinSharedStateEEEPT_v Line | Count | Source | 73 | 1 | TARGET* cast() { | 74 | 1 | DCHECK(dynamic_cast<TARGET*>(this)) | 75 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 76 | 0 | << " and expect type is" << typeid(TARGET).name(); | 77 | 1 | return reinterpret_cast<TARGET*>(this); | 78 | 1 | } |
_ZN5doris16BasicSharedState4castINS_19AnalyticSharedStateEEEPT_v Line | Count | Source | 73 | 22 | TARGET* cast() { | 74 | 22 | DCHECK(dynamic_cast<TARGET*>(this)) | 75 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 76 | 0 | << " and expect type is" << typeid(TARGET).name(); | 77 | 22 | return reinterpret_cast<TARGET*>(this); | 78 | 22 | } |
_ZN5doris16BasicSharedState4castINS_14AggSharedStateEEEPT_v Line | Count | Source | 73 | 88 | TARGET* cast() { | 74 | 88 | DCHECK(dynamic_cast<TARGET*>(this)) | 75 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 76 | 0 | << " and expect type is" << typeid(TARGET).name(); | 77 | 88 | return reinterpret_cast<TARGET*>(this); | 78 | 88 | } |
_ZN5doris16BasicSharedState4castINS_25PartitionedAggSharedStateEEEPT_v Line | Count | Source | 73 | 30 | TARGET* cast() { | 74 | 30 | DCHECK(dynamic_cast<TARGET*>(this)) | 75 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 76 | 0 | << " and expect type is" << typeid(TARGET).name(); | 77 | 30 | return reinterpret_cast<TARGET*>(this); | 78 | 30 | } |
_ZN5doris16BasicSharedState4castINS_16UnionSharedStateEEEPT_v Line | Count | Source | 73 | 4 | TARGET* cast() { | 74 | 4 | DCHECK(dynamic_cast<TARGET*>(this)) | 75 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 76 | 0 | << " and expect type is" << typeid(TARGET).name(); | 77 | 4 | return reinterpret_cast<TARGET*>(this); | 78 | 4 | } |
_ZN5doris16BasicSharedState4castINS_28PartitionSortNodeSharedStateEEEPT_v Line | Count | Source | 73 | 204 | TARGET* cast() { | 74 | 204 | DCHECK(dynamic_cast<TARGET*>(this)) | 75 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 76 | 0 | << " and expect type is" << typeid(TARGET).name(); | 77 | 204 | return reinterpret_cast<TARGET*>(this); | 78 | 204 | } |
Unexecuted instantiation: _ZN5doris16BasicSharedState4castINS_20MultiCastSharedStateEEEPT_v _ZN5doris16BasicSharedState4castINS_14SetSharedStateEEEPT_v Line | Count | Source | 73 | 42 | TARGET* cast() { | 74 | 42 | DCHECK(dynamic_cast<TARGET*>(this)) | 75 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 76 | 0 | << " and expect type is" << typeid(TARGET).name(); | 77 | 42 | return reinterpret_cast<TARGET*>(this); | 78 | 42 | } |
Unexecuted instantiation: _ZN5doris16BasicSharedState4castINS_24LocalExchangeSharedStateEEEPT_v _ZN5doris16BasicSharedState4castIS0_EEPT_v Line | Count | Source | 73 | 16 | TARGET* cast() { | 74 | 16 | DCHECK(dynamic_cast<TARGET*>(this)) | 75 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 76 | 0 | << " and expect type is" << typeid(TARGET).name(); | 77 | 16 | return reinterpret_cast<TARGET*>(this); | 78 | 16 | } |
_ZN5doris16BasicSharedState4castINS_20DataQueueSharedStateEEEPT_v Line | Count | Source | 73 | 6 | TARGET* cast() { | 74 | 6 | DCHECK(dynamic_cast<TARGET*>(this)) | 75 | 0 | << " Mismatch type! Current type is " << typeid(*this).name() | 76 | 0 | << " and expect type is" << typeid(TARGET).name(); | 77 | 6 | return reinterpret_cast<TARGET*>(this); | 78 | 6 | } |
Unexecuted instantiation: _ZN5doris16BasicSharedState4castINS_17RecCTESharedStateEEEPT_v |
79 | | template <class TARGET> |
80 | | const TARGET* cast() const { |
81 | | DCHECK(dynamic_cast<const TARGET*>(this)) |
82 | | << " Mismatch type! Current type is " << typeid(*this).name() |
83 | | << " and expect type is" << typeid(TARGET).name(); |
84 | | return reinterpret_cast<const TARGET*>(this); |
85 | | } |
86 | | std::vector<DependencySPtr> source_deps; |
87 | | std::vector<DependencySPtr> sink_deps; |
88 | | int id = 0; |
89 | | std::set<int> related_op_ids; |
90 | | |
91 | 72.4k | virtual ~BasicSharedState() = default; |
92 | | |
93 | | void create_source_dependencies(int num_sources, int operator_id, int node_id, |
94 | | const std::string& name); |
95 | | Dependency* create_source_dependency(int operator_id, int node_id, const std::string& name); |
96 | | |
97 | | Dependency* create_sink_dependency(int dest_id, int node_id, const std::string& name); |
98 | 25 | std::vector<DependencySPtr> get_dep_by_channel_id(int channel_id) { |
99 | 25 | DCHECK_LT(channel_id, source_deps.size()); |
100 | 25 | return {source_deps[channel_id]}; |
101 | 25 | } |
102 | | }; |
103 | | |
104 | | class Dependency : public std::enable_shared_from_this<Dependency> { |
105 | | public: |
106 | | ENABLE_FACTORY_CREATOR(Dependency); |
107 | | Dependency(int id, int node_id, std::string name, bool ready = false) |
108 | 485k | : _id(id), _node_id(node_id), _name(std::move(name)), _ready(ready) {} |
109 | 485k | virtual ~Dependency() = default; |
110 | | |
111 | 0 | [[nodiscard]] int id() const { return _id; } |
112 | 96.5k | [[nodiscard]] virtual std::string name() const { return _name; } |
113 | 4 | BasicSharedState* shared_state() { return _shared_state; } |
114 | 144k | void set_shared_state(BasicSharedState* shared_state) { _shared_state = shared_state; } |
115 | | virtual std::string debug_string(int indentation_level = 0); |
116 | 1.06G | bool ready() const { return _ready; } |
117 | | |
118 | | // Start the watcher. We use it to count how long this dependency block the current pipeline task. |
119 | 25 | void start_watcher() { _watcher.start(); } |
120 | 96.1k | [[nodiscard]] int64_t watcher_elapse_time() { return _watcher.elapsed_time(); } |
121 | | |
122 | | // Which dependency current pipeline task is blocked by. `nullptr` if this dependency is ready. |
123 | | [[nodiscard]] Dependency* is_blocked_by(std::shared_ptr<PipelineTask> task = nullptr); |
124 | | // Notify downstream pipeline tasks this dependency is ready. |
125 | | void set_ready(); |
126 | 48.6k | void set_ready_to_read(int channel_id = 0) { |
127 | 48.6k | DCHECK_LT(channel_id, _shared_state->source_deps.size()) << debug_string(); |
128 | 48.6k | _shared_state->source_deps[channel_id]->set_ready(); |
129 | 48.6k | } |
130 | 0 | void set_ready_to_write() { |
131 | 0 | DCHECK_EQ(_shared_state->sink_deps.size(), 1) << debug_string(); |
132 | 0 | _shared_state->sink_deps.front()->set_ready(); |
133 | 0 | } |
134 | | |
135 | | // Notify downstream pipeline tasks this dependency is blocked. |
136 | 1.68k | void block() { |
137 | 1.68k | if (_always_ready) { |
138 | 12 | return; |
139 | 12 | } |
140 | 1.67k | std::unique_lock<std::mutex> lc(_always_ready_lock); |
141 | 1.67k | if (_always_ready) { |
142 | 0 | return; |
143 | 0 | } |
144 | 1.67k | _ready = false; |
145 | 1.67k | } |
146 | | |
147 | 158 | void set_always_ready() { |
148 | 158 | if (_always_ready) { |
149 | 39 | return; |
150 | 39 | } |
151 | 119 | std::unique_lock<std::mutex> lc(_always_ready_lock); |
152 | 119 | if (_always_ready) { |
153 | 0 | return; |
154 | 0 | } |
155 | 119 | _always_ready = true; |
156 | 119 | set_ready(); |
157 | 119 | } |
158 | | |
159 | | protected: |
160 | | void _add_block_task(std::shared_ptr<PipelineTask> task); |
161 | | |
162 | | const int _id; |
163 | | const int _node_id; |
164 | | const std::string _name; |
165 | | std::atomic<bool> _ready; |
166 | | |
167 | | BasicSharedState* _shared_state = nullptr; |
168 | | MonotonicStopWatch _watcher; |
169 | | |
170 | | std::mutex _task_lock; |
171 | | std::vector<std::weak_ptr<PipelineTask>> _blocked_task; |
172 | | |
173 | | // If `_always_ready` is true, `block()` will never block tasks. |
174 | | std::atomic<bool> _always_ready = false; |
175 | | std::mutex _always_ready_lock; |
176 | | }; |
177 | | |
178 | | struct FakeSharedState final : public BasicSharedState { |
179 | | ENABLE_FACTORY_CREATOR(FakeSharedState) |
180 | | }; |
181 | | |
182 | | class CountedFinishDependency final : public Dependency { |
183 | | public: |
184 | | using SharedState = FakeSharedState; |
185 | | CountedFinishDependency(int id, int node_id, std::string name) |
186 | 96.0k | : Dependency(id, node_id, std::move(name), true) {} |
187 | | |
188 | 8 | void add(uint32_t count = 1) { |
189 | 8 | std::unique_lock<std::mutex> l(_mtx); |
190 | 8 | if (!_counter) { |
191 | 7 | block(); |
192 | 7 | } |
193 | 8 | _counter += count; |
194 | 8 | } |
195 | | |
196 | 7 | void sub() { |
197 | 7 | std::unique_lock<std::mutex> l(_mtx); |
198 | 7 | _counter--; |
199 | 7 | if (!_counter) { |
200 | 6 | set_ready(); |
201 | 6 | } |
202 | 7 | } |
203 | | |
204 | | std::string debug_string(int indentation_level = 0) override; |
205 | | |
206 | | private: |
207 | | std::mutex _mtx; |
208 | | uint32_t _counter = 0; |
209 | | }; |
210 | | |
211 | | struct RuntimeFilterTimerQueue; |
212 | | class RuntimeFilterTimer { |
213 | | public: |
214 | | RuntimeFilterTimer(int64_t registration_time, int32_t wait_time_ms, |
215 | | std::shared_ptr<Dependency> parent, bool force_wait_timeout = false) |
216 | 4 | : _parent(std::move(parent)), |
217 | 4 | _registration_time(registration_time), |
218 | 4 | _wait_time_ms(wait_time_ms), |
219 | 4 | _force_wait_timeout(force_wait_timeout) {} |
220 | | |
221 | | // Called by runtime filter producer. |
222 | | void call_ready(); |
223 | | |
224 | | // Called by RuntimeFilterTimerQueue which is responsible for checking if this rf is timeout. |
225 | | void call_timeout(); |
226 | | |
227 | 4 | int64_t registration_time() const { return _registration_time; } |
228 | 4 | int32_t wait_time_ms() const { return _wait_time_ms; } |
229 | | |
230 | | void set_local_runtime_filter_dependencies( |
231 | 0 | const std::vector<std::shared_ptr<Dependency>>& deps) { |
232 | 0 | _local_runtime_filter_dependencies = deps; |
233 | 0 | } |
234 | | |
235 | | bool should_be_check_timeout(); |
236 | | |
237 | 6 | bool force_wait_timeout() { return _force_wait_timeout; } |
238 | | |
239 | | private: |
240 | | friend struct RuntimeFilterTimerQueue; |
241 | | std::shared_ptr<Dependency> _parent = nullptr; |
242 | | std::vector<std::shared_ptr<Dependency>> _local_runtime_filter_dependencies; |
243 | | std::mutex _lock; |
244 | | int64_t _registration_time; |
245 | | const int32_t _wait_time_ms; |
246 | | // true only for group_commit_scan_operator |
247 | | bool _force_wait_timeout; |
248 | | }; |
249 | | |
250 | | struct RuntimeFilterTimerQueue { |
251 | | constexpr static int64_t interval = 10; |
252 | 2 | void run() { _thread.detach(); } |
253 | | void start(); |
254 | | |
255 | 0 | void stop() { |
256 | 0 | _stop = true; |
257 | 0 | cv.notify_all(); |
258 | 0 | wait_for_shutdown(); |
259 | 0 | } |
260 | | |
261 | 0 | void wait_for_shutdown() const { |
262 | 0 | while (!_shutdown) { |
263 | 0 | std::this_thread::sleep_for(std::chrono::milliseconds(interval)); |
264 | 0 | } |
265 | 0 | } |
266 | | |
267 | 0 | ~RuntimeFilterTimerQueue() = default; |
268 | 2 | RuntimeFilterTimerQueue() { _thread = std::thread(&RuntimeFilterTimerQueue::start, this); } |
269 | 2 | void push_filter_timer(std::vector<std::shared_ptr<RuntimeFilterTimer>>&& filter) { |
270 | 2 | std::unique_lock<std::mutex> lc(_que_lock); |
271 | 2 | _que.insert(_que.end(), filter.begin(), filter.end()); |
272 | 2 | cv.notify_all(); |
273 | 2 | } |
274 | | |
275 | | std::thread _thread; |
276 | | std::condition_variable cv; |
277 | | std::mutex cv_m; |
278 | | std::mutex _que_lock; |
279 | | std::atomic_bool _stop = false; |
280 | | std::atomic_bool _shutdown = false; |
281 | | std::list<std::shared_ptr<RuntimeFilterTimer>> _que; |
282 | | }; |
283 | | |
284 | | struct AggSharedState : public BasicSharedState { |
285 | | ENABLE_FACTORY_CREATOR(AggSharedState) |
286 | | public: |
287 | 57 | AggSharedState() { agg_data = std::make_unique<AggregatedDataVariants>(); } |
288 | 57 | ~AggSharedState() override { |
289 | 57 | if (!probe_expr_ctxs.empty()) { |
290 | 41 | _close_with_serialized_key(); |
291 | 41 | } else { |
292 | 16 | _close_without_key(); |
293 | 16 | } |
294 | 57 | } |
295 | | |
296 | | Status reset_hash_table(); |
297 | | |
298 | | bool do_limit_filter(Block* block, size_t num_rows, const std::vector<int>* key_locs = nullptr); |
299 | | void build_limit_heap(size_t hash_table_size); |
300 | | |
301 | | // We should call this function only at 1st phase. |
302 | | // 1st phase: is_merge=true, only have one SlotRef. |
303 | | // 2nd phase: is_merge=false, maybe have multiple exprs. |
304 | | static int get_slot_column_id(const AggFnEvaluator* evaluator); |
305 | | |
306 | | AggregatedDataVariantsUPtr agg_data = nullptr; |
307 | | std::unique_ptr<AggregateDataContainer> aggregate_data_container; |
308 | | std::vector<AggFnEvaluator*> aggregate_evaluators; |
309 | | // group by k1,k2 |
310 | | VExprContextSPtrs probe_expr_ctxs; |
311 | | size_t input_num_rows = 0; |
312 | | std::vector<AggregateDataPtr> values; |
313 | | /// The total size of the row from the aggregate functions. |
314 | | size_t total_size_of_aggregate_states = 0; |
315 | | size_t align_aggregate_states = 1; |
316 | | /// The offset to the n-th aggregate function in a row of aggregate functions. |
317 | | Sizes offsets_of_aggregate_states; |
318 | | std::vector<size_t> make_nullable_keys; |
319 | | |
320 | | bool agg_data_created_without_key = false; |
321 | | bool enable_spill = false; |
322 | | bool reach_limit = false; |
323 | | |
324 | | int64_t limit = -1; |
325 | | bool do_sort_limit = false; |
326 | | MutableColumns limit_columns; |
327 | | int limit_columns_min = -1; |
328 | | PaddedPODArray<uint8_t> need_computes; |
329 | | std::vector<uint8_t> cmp_res; |
330 | | std::vector<int> order_directions; |
331 | | std::vector<int> null_directions; |
332 | | |
333 | | struct HeapLimitCursor { |
334 | | HeapLimitCursor(int row_id, MutableColumns& limit_columns, |
335 | | std::vector<int>& order_directions, std::vector<int>& null_directions) |
336 | 32 | : _row_id(row_id), |
337 | 32 | _limit_columns(limit_columns), |
338 | 32 | _order_directions(order_directions), |
339 | 32 | _null_directions(null_directions) {} |
340 | | |
341 | | HeapLimitCursor(const HeapLimitCursor& other) = default; |
342 | | |
343 | | HeapLimitCursor(HeapLimitCursor&& other) noexcept |
344 | 152 | : _row_id(other._row_id), |
345 | 152 | _limit_columns(other._limit_columns), |
346 | 152 | _order_directions(other._order_directions), |
347 | 152 | _null_directions(other._null_directions) {} |
348 | | |
349 | 0 | HeapLimitCursor& operator=(const HeapLimitCursor& other) noexcept { |
350 | 0 | _row_id = other._row_id; |
351 | 0 | return *this; |
352 | 0 | } |
353 | | |
354 | 129 | HeapLimitCursor& operator=(HeapLimitCursor&& other) noexcept { |
355 | 129 | _row_id = other._row_id; |
356 | 129 | return *this; |
357 | 129 | } |
358 | | |
359 | 79 | bool operator<(const HeapLimitCursor& rhs) const { |
360 | 85 | for (int i = 0; i < _limit_columns.size(); ++i) { |
361 | 79 | const auto& _limit_column = _limit_columns[i]; |
362 | 79 | auto res = _limit_column->compare_at(_row_id, rhs._row_id, *_limit_column, |
363 | 79 | _null_directions[i]) * |
364 | 79 | _order_directions[i]; |
365 | 79 | if (res < 0) { |
366 | 46 | return true; |
367 | 46 | } else if (res > 0) { |
368 | 27 | return false; |
369 | 27 | } |
370 | 79 | } |
371 | 6 | return false; |
372 | 79 | } |
373 | | |
374 | | int _row_id; |
375 | | MutableColumns& _limit_columns; |
376 | | std::vector<int>& _order_directions; |
377 | | std::vector<int>& _null_directions; |
378 | | }; |
379 | | |
380 | | std::priority_queue<HeapLimitCursor> limit_heap; |
381 | | |
382 | | // Refresh the top limit heap with a new row |
383 | | void refresh_top_limit(size_t row_id, const ColumnRawPtrs& key_columns); |
384 | | |
385 | | Arena agg_arena_pool; |
386 | | Arena agg_profile_arena; |
387 | | |
388 | | private: |
389 | | MutableColumns _get_keys_hash_table(); |
390 | | |
391 | 41 | void _close_with_serialized_key() { |
392 | 41 | std::visit(Overload {[&](std::monostate& arg) -> void { |
393 | | // Do nothing |
394 | 0 | }, |
395 | 41 | [&](auto& agg_method) -> void { |
396 | 41 | auto& data = *agg_method.hash_table; |
397 | 97 | data.for_each_mapped([&](auto& mapped) { |
398 | 97 | if (mapped) { |
399 | 97 | static_cast<void>(_destroy_agg_status(mapped)); |
400 | 97 | mapped = nullptr; |
401 | 97 | } |
402 | 97 | }); Unexecuted instantiation: _ZZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEEPc9HashCRC32IS9_EEEEEEvS2_ENKUlS2_E_clISA_EEDaS2_ Unexecuted instantiation: _ZZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_15MethodKeysFixedI9PHHashMapINS_7UInt136EPc9HashCRC32IS7_EEEEEEvS2_ENKUlS2_E_clIS8_EEDaS2_ Unexecuted instantiation: _ZZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEEPc9HashCRC32IS9_EEEEEEvS2_ENKUlS2_E_clISA_EEDaS2_ Unexecuted instantiation: _ZZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_15MethodKeysFixedI9PHHashMapINS_7UInt104EPc9HashCRC32IS7_EEEEEEvS2_ENKUlS2_E_clIS8_EEDaS2_ Unexecuted instantiation: _ZZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_15MethodKeysFixedI9PHHashMapINS_6UInt96EPc9HashCRC32IS7_EEEEEEvS2_ENKUlS2_E_clIS8_EEDaS2_ Unexecuted instantiation: _ZZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_15MethodKeysFixedI9PHHashMapINS_6UInt72EPc9HashCRC32IS7_EEEEEEvS2_ENKUlS2_E_clIS8_EEDaS2_ Unexecuted instantiation: _ZZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_15MethodKeysFixedI9PHHashMapImPc9HashCRC32ImEEEEEEvS2_ENKUlS2_E_clIS7_EEDaS2_ Unexecuted instantiation: _ZZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_26MethodSingleNullableColumnINS_19MethodStringNoCacheINS_15DataWithNullKeyINS_13StringHashMapIPcNS_9AllocatorILb1ELb1ELb0ENS_22DefaultMemoryAllocatorELb1EEEEEEEEEEEEEvS2_ENKUlS2_E_clIS9_EEDaS2_ Unexecuted instantiation: _ZZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm256EjEENS_15DataWithNullKeyI9PHHashMapIS9_Pc9HashCRC32IS9_EEEEEEEEEEvS2_ENKUlS2_E_clISC_EEDaS2_ Unexecuted instantiation: _ZZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm128EjEENS_15DataWithNullKeyI9PHHashMapIS9_Pc9HashCRC32IS9_EEEEEEEEEEvS2_ENKUlS2_E_clISC_EEDaS2_ _ZZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEEEEEEvS2_ENKUlS2_E_clIS9_EEDaS2_ Line | Count | Source | 397 | 20 | data.for_each_mapped([&](auto& mapped) { | 398 | 20 | if (mapped) { | 399 | 20 | static_cast<void>(_destroy_agg_status(mapped)); | 400 | 20 | mapped = nullptr; | 401 | 20 | } | 402 | 20 | }); |
Unexecuted instantiation: _ZZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEEEEEEEEEEEvS2_ENKUlS2_E_clIS9_EEDaS2_ Unexecuted instantiation: _ZZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImPc9HashCRC32ImEEEEEEEEEEvS2_ENKUlS2_E_clIS9_EEDaS2_ Unexecuted instantiation: _ZZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjPc9HashCRC32IjEEEEEEEEEEvS2_ENKUlS2_E_clIS9_EEDaS2_ Unexecuted instantiation: _ZZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_26MethodSingleNullableColumnINS_15MethodOneNumberItNS_15DataWithNullKeyI9PHHashMapItPc9HashCRC32ItEEEEEEEEEEvS2_ENKUlS2_E_clIS9_EEDaS2_ Unexecuted instantiation: _ZZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIhNS_15DataWithNullKeyI9PHHashMapIhPc9HashCRC32IhEEEEEEEEEEvS2_ENKUlS2_E_clIS9_EEDaS2_ _ZZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_15MethodOneNumberIm9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEEvS2_ENKUlS2_E_clIS7_EEDaS2_ Line | Count | Source | 397 | 61 | data.for_each_mapped([&](auto& mapped) { | 398 | 61 | if (mapped) { | 399 | 61 | static_cast<void>(_destroy_agg_status(mapped)); | 400 | 61 | mapped = nullptr; | 401 | 61 | } | 402 | 61 | }); |
_ZZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_15MethodOneNumberIj9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEEEEEEEvS2_ENKUlS2_E_clIS7_EEDaS2_ Line | Count | Source | 397 | 16 | data.for_each_mapped([&](auto& mapped) { | 398 | 16 | if (mapped) { | 399 | 16 | static_cast<void>(_destroy_agg_status(mapped)); | 400 | 16 | mapped = nullptr; | 401 | 16 | } | 402 | 16 | }); |
Unexecuted instantiation: _ZZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_15MethodOneNumberIN4wide7integerILm256EjEE9PHHashMapIS8_Pc9HashCRC32IS8_EEEEEEvS2_ENKUlS2_E_clISA_EEDaS2_ Unexecuted instantiation: _ZZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapIS8_Pc9HashCRC32IS8_EEEEEEvS2_ENKUlS2_E_clISA_EEDaS2_ Unexecuted instantiation: _ZZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_19MethodStringNoCacheINS_13StringHashMapIPcNS_9AllocatorILb1ELb1ELb0ENS_22DefaultMemoryAllocatorELb1EEEEEEEEEvS2_ENKUlS2_E_clIS7_EEDaS2_ Unexecuted instantiation: _ZZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_15MethodOneNumberIm9PHHashMapImPc9HashCRC32ImEEEEEEvS2_ENKUlS2_E_clIS7_EEDaS2_ Unexecuted instantiation: _ZZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_15MethodOneNumberIj9PHHashMapIjPc9HashCRC32IjEEEEEEvS2_ENKUlS2_E_clIS7_EEDaS2_ Unexecuted instantiation: _ZZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_15MethodOneNumberIt9PHHashMapItPc9HashCRC32ItEEEEEEvS2_ENKUlS2_E_clIS7_EEDaS2_ Unexecuted instantiation: _ZZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_15MethodOneNumberIh9PHHashMapIhPc9HashCRC32IhEEEEEEvS2_ENKUlS2_E_clIS7_EEDaS2_ Unexecuted instantiation: _ZZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_16MethodSerializedI9PHHashMapINS_9StringRefEPc11DefaultHashIS7_vEEEEEEvS2_ENKUlS2_E_clIS8_EEDaS2_ |
403 | 41 | if (data.has_null_key_data()) { |
404 | 5 | auto st = _destroy_agg_status( |
405 | 5 | data.template get_null_key_data<AggregateDataPtr>()); |
406 | 5 | if (!st) { |
407 | 0 | throw Exception(st.code(), st.to_string()); |
408 | 0 | } |
409 | 5 | } |
410 | 41 | }}, Unexecuted instantiation: _ZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEEPc9HashCRC32IS9_EEEEEEvS2_ Unexecuted instantiation: _ZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_15MethodKeysFixedI9PHHashMapINS_7UInt136EPc9HashCRC32IS7_EEEEEEvS2_ Unexecuted instantiation: _ZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEEPc9HashCRC32IS9_EEEEEEvS2_ Unexecuted instantiation: _ZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_15MethodKeysFixedI9PHHashMapINS_7UInt104EPc9HashCRC32IS7_EEEEEEvS2_ Unexecuted instantiation: _ZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_15MethodKeysFixedI9PHHashMapINS_6UInt96EPc9HashCRC32IS7_EEEEEEvS2_ Unexecuted instantiation: _ZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_15MethodKeysFixedI9PHHashMapINS_6UInt72EPc9HashCRC32IS7_EEEEEEvS2_ Unexecuted instantiation: _ZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_15MethodKeysFixedI9PHHashMapImPc9HashCRC32ImEEEEEEvS2_ Unexecuted instantiation: _ZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_26MethodSingleNullableColumnINS_19MethodStringNoCacheINS_15DataWithNullKeyINS_13StringHashMapIPcNS_9AllocatorILb1ELb1ELb0ENS_22DefaultMemoryAllocatorELb1EEEEEEEEEEEEEvS2_ Unexecuted instantiation: _ZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm256EjEENS_15DataWithNullKeyI9PHHashMapIS9_Pc9HashCRC32IS9_EEEEEEEEEEvS2_ Unexecuted instantiation: _ZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm128EjEENS_15DataWithNullKeyI9PHHashMapIS9_Pc9HashCRC32IS9_EEEEEEEEEEvS2_ _ZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEEEEEEvS2_ Line | Count | Source | 395 | 5 | [&](auto& agg_method) -> void { | 396 | 5 | auto& data = *agg_method.hash_table; | 397 | 5 | data.for_each_mapped([&](auto& mapped) { | 398 | 5 | if (mapped) { | 399 | 5 | static_cast<void>(_destroy_agg_status(mapped)); | 400 | 5 | mapped = nullptr; | 401 | 5 | } | 402 | 5 | }); | 403 | 5 | if (data.has_null_key_data()) { | 404 | 5 | auto st = _destroy_agg_status( | 405 | 5 | data.template get_null_key_data<AggregateDataPtr>()); | 406 | 5 | if (!st) { | 407 | 0 | throw Exception(st.code(), st.to_string()); | 408 | 0 | } | 409 | 5 | } | 410 | 5 | }}, |
_ZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEEEEEEEEEEEvS2_ Line | Count | Source | 395 | 1 | [&](auto& agg_method) -> void { | 396 | 1 | auto& data = *agg_method.hash_table; | 397 | 1 | data.for_each_mapped([&](auto& mapped) { | 398 | 1 | if (mapped) { | 399 | 1 | static_cast<void>(_destroy_agg_status(mapped)); | 400 | 1 | mapped = nullptr; | 401 | 1 | } | 402 | 1 | }); | 403 | 1 | if (data.has_null_key_data()) { | 404 | 0 | auto st = _destroy_agg_status( | 405 | 0 | data.template get_null_key_data<AggregateDataPtr>()); | 406 | 0 | if (!st) { | 407 | 0 | throw Exception(st.code(), st.to_string()); | 408 | 0 | } | 409 | 0 | } | 410 | 1 | }}, |
Unexecuted instantiation: _ZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImPc9HashCRC32ImEEEEEEEEEEvS2_ Unexecuted instantiation: _ZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjPc9HashCRC32IjEEEEEEEEEEvS2_ Unexecuted instantiation: _ZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_26MethodSingleNullableColumnINS_15MethodOneNumberItNS_15DataWithNullKeyI9PHHashMapItPc9HashCRC32ItEEEEEEEEEEvS2_ Unexecuted instantiation: _ZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIhNS_15DataWithNullKeyI9PHHashMapIhPc9HashCRC32IhEEEEEEEEEEvS2_ _ZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_15MethodOneNumberIm9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEEvS2_ Line | Count | Source | 395 | 16 | [&](auto& agg_method) -> void { | 396 | 16 | auto& data = *agg_method.hash_table; | 397 | 16 | data.for_each_mapped([&](auto& mapped) { | 398 | 16 | if (mapped) { | 399 | 16 | static_cast<void>(_destroy_agg_status(mapped)); | 400 | 16 | mapped = nullptr; | 401 | 16 | } | 402 | 16 | }); | 403 | 16 | if (data.has_null_key_data()) { | 404 | 0 | auto st = _destroy_agg_status( | 405 | 0 | data.template get_null_key_data<AggregateDataPtr>()); | 406 | 0 | if (!st) { | 407 | 0 | throw Exception(st.code(), st.to_string()); | 408 | 0 | } | 409 | 0 | } | 410 | 16 | }}, |
_ZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_15MethodOneNumberIj9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEEEEEEEvS2_ Line | Count | Source | 395 | 19 | [&](auto& agg_method) -> void { | 396 | 19 | auto& data = *agg_method.hash_table; | 397 | 19 | data.for_each_mapped([&](auto& mapped) { | 398 | 19 | if (mapped) { | 399 | 19 | static_cast<void>(_destroy_agg_status(mapped)); | 400 | 19 | mapped = nullptr; | 401 | 19 | } | 402 | 19 | }); | 403 | 19 | if (data.has_null_key_data()) { | 404 | 0 | auto st = _destroy_agg_status( | 405 | 0 | data.template get_null_key_data<AggregateDataPtr>()); | 406 | 0 | if (!st) { | 407 | 0 | throw Exception(st.code(), st.to_string()); | 408 | 0 | } | 409 | 0 | } | 410 | 19 | }}, |
Unexecuted instantiation: _ZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_15MethodOneNumberIN4wide7integerILm256EjEE9PHHashMapIS8_Pc9HashCRC32IS8_EEEEEEvS2_ Unexecuted instantiation: _ZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapIS8_Pc9HashCRC32IS8_EEEEEEvS2_ Unexecuted instantiation: _ZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_19MethodStringNoCacheINS_13StringHashMapIPcNS_9AllocatorILb1ELb1ELb0ENS_22DefaultMemoryAllocatorELb1EEEEEEEEEvS2_ Unexecuted instantiation: _ZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_15MethodOneNumberIm9PHHashMapImPc9HashCRC32ImEEEEEEvS2_ Unexecuted instantiation: _ZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_15MethodOneNumberIj9PHHashMapIjPc9HashCRC32IjEEEEEEvS2_ Unexecuted instantiation: _ZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_15MethodOneNumberIt9PHHashMapItPc9HashCRC32ItEEEEEEvS2_ Unexecuted instantiation: _ZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_15MethodOneNumberIh9PHHashMapIhPc9HashCRC32IhEEEEEEvS2_ Unexecuted instantiation: _ZZN5doris14AggSharedState26_close_with_serialized_keyEvENKUlRT_E_clINS_16MethodSerializedI9PHHashMapINS_9StringRefEPc11DefaultHashIS7_vEEEEEEvS2_ |
411 | 41 | agg_data->method_variant); |
412 | 41 | } |
413 | | |
414 | 16 | void _close_without_key() { |
415 | | //because prepare maybe failed, and couldn't create agg data. |
416 | | //but finally call close to destory agg data, if agg data has bitmapValue |
417 | | //will be core dump, it's not initialized |
418 | 16 | if (agg_data_created_without_key) { |
419 | 8 | static_cast<void>(_destroy_agg_status(agg_data->without_key)); |
420 | 8 | agg_data_created_without_key = false; |
421 | 8 | } |
422 | 16 | } |
423 | | Status _destroy_agg_status(AggregateDataPtr data); |
424 | | }; |
425 | | |
426 | | struct PartitionedAggSharedState : public BasicSharedState, |
427 | | public std::enable_shared_from_this<PartitionedAggSharedState> { |
428 | | ENABLE_FACTORY_CREATOR(PartitionedAggSharedState) |
429 | | |
430 | 44 | PartitionedAggSharedState() = default; |
431 | 44 | ~PartitionedAggSharedState() override { close(); } |
432 | | |
433 | | void close(); |
434 | | |
435 | | AggSharedState* _in_mem_shared_state = nullptr; |
436 | | std::shared_ptr<BasicSharedState> _in_mem_shared_state_sptr; |
437 | | |
438 | | // partition count is no longer stored in shared state; operators maintain their own |
439 | | std::atomic<bool> _is_spilled = false; |
440 | | // This state is shared by the partitioned agg sink and source pipelines. Spill files left |
441 | | // here are owned by the shared state until the source moves them into its local queue, so the |
442 | | // cleanup must be tied to the shared state's lifetime and must be idempotent. |
443 | | std::atomic_bool is_closed = false; |
444 | | std::deque<SpillFileSPtr> _spill_partitions; |
445 | | }; |
446 | | |
447 | | struct SortSharedState : public BasicSharedState { |
448 | | ENABLE_FACTORY_CREATOR(SortSharedState) |
449 | | public: |
450 | | std::shared_ptr<Sorter> sorter; |
451 | | }; |
452 | | |
453 | | struct SpillSortSharedState : public BasicSharedState, |
454 | | public std::enable_shared_from_this<SpillSortSharedState> { |
455 | | ENABLE_FACTORY_CREATOR(SpillSortSharedState) |
456 | | |
457 | 20 | SpillSortSharedState() = default; |
458 | 20 | ~SpillSortSharedState() override = default; |
459 | | |
460 | 11 | void update_spill_block_batch_row_count(RuntimeState* state, const Block* block) { |
461 | 11 | auto rows = block->rows(); |
462 | 11 | if (rows > 0 && 0 == avg_row_bytes) { |
463 | 7 | avg_row_bytes = std::max((std::size_t)1, block->bytes() / rows); |
464 | 7 | spill_block_batch_row_count = |
465 | 7 | (state->spill_buffer_size_bytes() + avg_row_bytes - 1) / avg_row_bytes; |
466 | 7 | LOG(INFO) << "spill sort block batch row count: " << spill_block_batch_row_count; |
467 | 7 | } |
468 | 11 | } |
469 | | |
470 | | void close(); |
471 | | |
472 | | SortSharedState* in_mem_shared_state = nullptr; |
473 | | bool enable_spill = false; |
474 | | bool is_spilled = false; |
475 | | int64_t limit = -1; |
476 | | int64_t offset = 0; |
477 | | std::atomic_bool is_closed = false; |
478 | | std::shared_ptr<BasicSharedState> in_mem_shared_state_sptr; |
479 | | |
480 | | std::deque<SpillFileSPtr> sorted_spill_groups; |
481 | | size_t avg_row_bytes = 0; |
482 | | size_t spill_block_batch_row_count; |
483 | | }; |
484 | | |
485 | | struct UnionSharedState : public BasicSharedState { |
486 | | ENABLE_FACTORY_CREATOR(UnionSharedState) |
487 | | |
488 | | public: |
489 | 1 | UnionSharedState(int child_count = 1) : data_queue(child_count), _child_count(child_count) {}; |
490 | 0 | int child_count() const { return _child_count; } |
491 | | DataQueue data_queue; |
492 | | const int _child_count; |
493 | | }; |
494 | | |
495 | | struct DataQueueSharedState : public BasicSharedState { |
496 | | ENABLE_FACTORY_CREATOR(DataQueueSharedState) |
497 | | public: |
498 | | DataQueue data_queue; |
499 | | }; |
500 | | |
501 | | class MultiCastDataStreamer; |
502 | | |
503 | | struct MultiCastSharedState : public BasicSharedState, |
504 | | public std::enable_shared_from_this<MultiCastSharedState> { |
505 | | MultiCastSharedState(ObjectPool* pool, int cast_sender_count, int node_id); |
506 | | |
507 | | std::unique_ptr<MultiCastDataStreamer> multi_cast_data_streamer; |
508 | | }; |
509 | | |
510 | | struct AnalyticSharedState : public BasicSharedState { |
511 | | ENABLE_FACTORY_CREATOR(AnalyticSharedState) |
512 | | |
513 | | public: |
514 | 11 | AnalyticSharedState() = default; |
515 | | std::queue<Block> blocks_buffer GUARDED_BY(buffer_mutex); |
516 | | AnnotatedMutex buffer_mutex; |
517 | | bool sink_eos GUARDED_BY(sink_eos_lock) = false; |
518 | | AnnotatedMutex sink_eos_lock; |
519 | | Arena agg_arena_pool; |
520 | | }; |
521 | | |
522 | | struct JoinSharedState : public BasicSharedState { |
523 | | // For some join case, we can apply a short circuit strategy |
524 | | // 1. _has_null_in_build_side = true |
525 | | // 2. build side rows is empty, Join op is: inner join/right outer join/left semi/right semi/right anti |
526 | | bool _has_null_in_build_side = false; |
527 | | bool short_circuit_for_probe = false; |
528 | | // for some join, when build side rows is empty, we could return directly by add some additional null data in probe table. |
529 | | bool empty_right_table_need_probe_dispose = false; |
530 | | JoinOpVariants join_op_variants; |
531 | | }; |
532 | | |
533 | | struct HashJoinSharedState : public JoinSharedState { |
534 | | ENABLE_FACTORY_CREATOR(HashJoinSharedState) |
535 | 72.1k | HashJoinSharedState() { |
536 | 72.1k | hash_table_variant_vector.push_back(std::make_shared<JoinDataVariants>()); |
537 | 72.1k | } |
538 | 1 | HashJoinSharedState(int num_instances) { |
539 | 1 | source_deps.resize(num_instances, nullptr); |
540 | 1 | hash_table_variant_vector.resize(num_instances, nullptr); |
541 | 9 | for (int i = 0; i < num_instances; i++) { |
542 | 8 | hash_table_variant_vector[i] = std::make_shared<JoinDataVariants>(); |
543 | 8 | } |
544 | 1 | } |
545 | | std::shared_ptr<Arena> arena = std::make_shared<Arena>(); |
546 | | |
547 | | const std::vector<TupleDescriptor*> build_side_child_desc; |
548 | | size_t build_exprs_size = 0; |
549 | | std::shared_ptr<Block> build_block; |
550 | | std::shared_ptr<std::vector<uint32_t>> build_indexes_null; |
551 | | |
552 | | // Used by shared hash table |
553 | | // For probe operator, hash table in _hash_table_variants is read-only if visited flags is not |
554 | | // used. (visited flags will be used only in right / full outer join). |
555 | | // |
556 | | // For broadcast join, although hash table is read-only, some states in `_hash_table_variants` |
557 | | // are still could be written. For example, serialized keys will be written in a continuous |
558 | | // memory in `_hash_table_variants`. So before execution, we should use a local _hash_table_variants |
559 | | // which has a shared hash table in it. |
560 | | std::vector<std::shared_ptr<JoinDataVariants>> hash_table_variant_vector; |
561 | | |
562 | | // whether left semi join could directly return |
563 | | // if runtime filters contains local in filter, we can make sure all input rows are matched |
564 | | // local filter will always be applied, and in filter could guarantee precise filtering |
565 | | // ATTN: we should disable always_true logic for in filter when we set this flag |
566 | | bool left_semi_direct_return = false; |
567 | | |
568 | | // ASOF JOIN specific fields |
569 | | // Whether the inequality is >= or > (true) vs <= or < (false) |
570 | | bool asof_inequality_is_greater = true; |
571 | | // Whether the inequality is strict (> or <) vs non-strict (>= or <=) |
572 | | bool asof_inequality_is_strict = false; |
573 | | |
574 | | // ASOF JOIN pre-sorted index with inline values for O(log K) branchless lookup |
575 | | // Typed AsofIndexGroups stored in a variant (uint32_t for DateV2, uint64_t for DateTimeV2/TimestampTZ) |
576 | | AsofIndexVariant asof_index_groups; |
577 | | // build_row_index -> bucket_id for O(1) reverse lookup |
578 | | std::vector<uint32_t> asof_build_row_to_bucket; |
579 | | }; |
580 | | |
581 | | struct PartitionedHashJoinSharedState |
582 | | : public HashJoinSharedState, |
583 | | public std::enable_shared_from_this<PartitionedHashJoinSharedState> { |
584 | | ENABLE_FACTORY_CREATOR(PartitionedHashJoinSharedState) |
585 | | |
586 | | std::unique_ptr<RuntimeState> _inner_runtime_state; |
587 | | std::shared_ptr<HashJoinSharedState> _inner_shared_state; |
588 | | std::vector<std::unique_ptr<MutableBlock>> _partitioned_build_blocks; |
589 | | std::vector<SpillFileSPtr> _spilled_build_groups; |
590 | | std::atomic<bool> _is_spilled = false; |
591 | | }; |
592 | | |
593 | | struct NestedLoopJoinSharedState : public JoinSharedState { |
594 | | ENABLE_FACTORY_CREATOR(NestedLoopJoinSharedState) |
595 | | // if true, left child has no more rows to process |
596 | | bool left_side_eos = false; |
597 | | // Visited flags for each row in build side. |
598 | | MutableColumns build_side_visited_flags; |
599 | | // List of build blocks, constructed in prepare() |
600 | | Blocks build_blocks; |
601 | | }; |
602 | | |
603 | | struct PartitionSortNodeSharedState : public BasicSharedState { |
604 | | ENABLE_FACTORY_CREATOR(PartitionSortNodeSharedState) |
605 | | public: |
606 | | std::queue<Block> blocks_buffer GUARDED_BY(buffer_mutex); |
607 | | AnnotatedMutex buffer_mutex; |
608 | | std::vector<std::unique_ptr<PartitionSorter>> partition_sorts; |
609 | | bool sink_eos GUARDED_BY(sink_eos_lock) = false; |
610 | | AnnotatedMutex sink_eos_lock; |
611 | | AnnotatedMutex prepared_finish_lock; |
612 | | }; |
613 | | |
614 | | struct SetSharedState : public BasicSharedState { |
615 | | ENABLE_FACTORY_CREATOR(SetSharedState) |
616 | | public: |
617 | | /// default init |
618 | | Block build_block; // build to source |
619 | | //record element size in hashtable |
620 | | int64_t valid_element_in_hash_tbl = 0; |
621 | | //first: idx mapped to column types |
622 | | //second: column_id, could point to origin column or cast column |
623 | | std::unordered_map<int, int> build_col_idx; |
624 | | |
625 | | //// shared static states (shared, decided in prepare/open...) |
626 | | |
627 | | /// init in setup_local_state |
628 | | std::unique_ptr<SetDataVariants> hash_table_variants = |
629 | | std::make_unique<SetDataVariants>(); // the real data HERE. |
630 | | std::vector<bool> build_not_ignore_null; |
631 | | |
632 | | // The SET operator's child might have different nullable attributes. |
633 | | // If a calculation involves both nullable and non-nullable columns, the final output should be a nullable column |
634 | | Status update_build_not_ignore_null(const VExprContextSPtrs& ctxs); |
635 | | |
636 | | size_t get_hash_table_size() const; |
637 | | /// init in both upstream side. |
638 | | //The i-th result expr list refers to the i-th child. |
639 | | std::vector<VExprContextSPtrs> child_exprs_lists; |
640 | | |
641 | | /// init in build side |
642 | | size_t child_quantity; |
643 | | VExprContextSPtrs build_child_exprs; |
644 | | std::vector<Dependency*> probe_finished_children_dependency; |
645 | | |
646 | | /// init in probe side |
647 | | std::vector<VExprContextSPtrs> probe_child_exprs_lists; |
648 | | |
649 | | std::atomic<bool> ready_for_read = false; |
650 | | |
651 | | Arena arena; |
652 | | |
653 | | /// called in setup_local_state |
654 | | Status hash_table_init(); |
655 | | }; |
656 | | |
657 | | enum class ExchangeType : uint8_t { |
658 | | NOOP = 0, |
659 | | // Shuffle data by Crc32CHashPartitioner |
660 | | HASH_SHUFFLE = 1, |
661 | | // Round-robin passthrough data blocks. |
662 | | PASSTHROUGH = 2, |
663 | | // Shuffle data by Crc32HashPartitioner<ShuffleChannelIds> (e.g. same as storage engine). |
664 | | BUCKET_HASH_SHUFFLE = 3, |
665 | | // Passthrough data blocks to all channels. |
666 | | BROADCAST = 4, |
667 | | // Passthrough data to channels evenly in an adaptive way. |
668 | | ADAPTIVE_PASSTHROUGH = 5, |
669 | | // Send all data to the first channel. |
670 | | PASS_TO_ONE = 6, |
671 | | }; |
672 | | |
673 | 63 | inline std::string get_exchange_type_name(ExchangeType idx) { |
674 | 63 | switch (idx) { |
675 | 14 | case ExchangeType::NOOP: |
676 | 14 | return "NOOP"; |
677 | 49 | case ExchangeType::HASH_SHUFFLE: |
678 | 49 | return "HASH_SHUFFLE"; |
679 | 0 | case ExchangeType::PASSTHROUGH: |
680 | 0 | return "PASSTHROUGH"; |
681 | 0 | case ExchangeType::BUCKET_HASH_SHUFFLE: |
682 | 0 | return "BUCKET_HASH_SHUFFLE"; |
683 | 0 | case ExchangeType::BROADCAST: |
684 | 0 | return "BROADCAST"; |
685 | 0 | case ExchangeType::ADAPTIVE_PASSTHROUGH: |
686 | 0 | return "ADAPTIVE_PASSTHROUGH"; |
687 | 0 | case ExchangeType::PASS_TO_ONE: |
688 | 0 | return "PASS_TO_ONE"; |
689 | 63 | } |
690 | 0 | throw Exception(Status::FatalError("__builtin_unreachable")); |
691 | 63 | } |
692 | | |
693 | | struct DataDistribution { |
694 | 144k | DataDistribution(ExchangeType type) : distribution_type(type) {} |
695 | | DataDistribution(ExchangeType type, const std::vector<TExpr>& partition_exprs_) |
696 | 52 | : distribution_type(type), partition_exprs(partition_exprs_) {} |
697 | 0 | DataDistribution(const DataDistribution& other) = default; |
698 | 5 | bool need_local_exchange() const { return distribution_type != ExchangeType::NOOP; } |
699 | 5 | DataDistribution& operator=(const DataDistribution& other) = default; |
700 | | ExchangeType distribution_type; |
701 | | std::vector<TExpr> partition_exprs; |
702 | | }; |
703 | | |
704 | | class ExchangerBase; |
705 | | |
706 | | struct LocalExchangeSharedState : public BasicSharedState { |
707 | | public: |
708 | | ENABLE_FACTORY_CREATOR(LocalExchangeSharedState); |
709 | | LocalExchangeSharedState(int num_instances); |
710 | | ~LocalExchangeSharedState() override; |
711 | | std::unique_ptr<ExchangerBase> exchanger {}; |
712 | | std::vector<RuntimeProfile::Counter*> mem_counters; |
713 | | std::atomic<int64_t> mem_usage = 0; |
714 | | std::atomic<size_t> _buffer_mem_limit = config::local_exchange_buffer_mem_limit; |
715 | | // We need to make sure to add mem_usage first and then enqueue, otherwise sub mem_usage may cause negative mem_usage during concurrent dequeue. |
716 | | std::mutex le_lock; |
717 | | void sub_running_sink_operators(); |
718 | | void sub_running_source_operators(); |
719 | 10 | void _set_always_ready() { |
720 | 40 | for (auto& dep : source_deps) { |
721 | 40 | DCHECK(dep); |
722 | 40 | dep->set_always_ready(); |
723 | 40 | } |
724 | 10 | for (auto& dep : sink_deps) { |
725 | 10 | DCHECK(dep); |
726 | 10 | dep->set_always_ready(); |
727 | 10 | } |
728 | 10 | } |
729 | | |
730 | 0 | Dependency* get_sink_dep_by_channel_id(int channel_id) { return nullptr; } |
731 | | |
732 | 130 | void set_ready_to_read(int channel_id) { |
733 | 130 | auto& dep = source_deps[channel_id]; |
734 | 130 | DCHECK(dep) << channel_id; |
735 | 130 | dep->set_ready(); |
736 | 130 | } |
737 | | |
738 | 162 | void add_mem_usage(int channel_id, size_t delta) { mem_counters[channel_id]->update(delta); } |
739 | | |
740 | 126 | void sub_mem_usage(int channel_id, size_t delta) { |
741 | 126 | mem_counters[channel_id]->update(-(int64_t)delta); |
742 | 126 | } |
743 | | |
744 | 115 | void add_total_mem_usage(size_t delta) { |
745 | 115 | if (cast_set<int64_t>(mem_usage.fetch_add(delta) + delta) > _buffer_mem_limit) { |
746 | 15 | sink_deps.front()->block(); |
747 | 15 | } |
748 | 115 | } |
749 | | |
750 | 115 | void sub_total_mem_usage(size_t delta) { |
751 | 115 | auto prev_usage = mem_usage.fetch_sub(delta); |
752 | 115 | DCHECK_GE(prev_usage, cast_set<int64_t>(delta)) |
753 | 0 | << "prev_usage: " << prev_usage << " delta: " << delta; |
754 | 115 | if (cast_set<int64_t>(prev_usage - delta) <= _buffer_mem_limit) { |
755 | 103 | sink_deps.front()->set_ready(); |
756 | 103 | } |
757 | 115 | } |
758 | | |
759 | 0 | void set_low_memory_mode(RuntimeState* state) { |
760 | 0 | _buffer_mem_limit = std::min<int64_t>(config::local_exchange_buffer_mem_limit, |
761 | 0 | state->low_memory_mode_buffer_limit()); |
762 | 0 | } |
763 | | }; |
764 | | |
765 | | #include "common/compile_check_end.h" |
766 | | } // namespace doris |