be/src/exec/pipeline/dependency.cpp
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 | | #include "exec/pipeline/dependency.h" |
19 | | |
20 | | #include <memory> |
21 | | #include <mutex> |
22 | | |
23 | | #include "common/logging.h" |
24 | | #include "exec/operator/multi_cast_data_streamer.h" |
25 | | #include "exec/pipeline/pipeline_fragment_context.h" |
26 | | #include "exec/pipeline/pipeline_task.h" |
27 | | #include "exec/spill/spill_file_manager.h" |
28 | | #include "exprs/vectorized_agg_fn.h" |
29 | | #include "exprs/vslot_ref.h" |
30 | | #include "runtime/exec_env.h" |
31 | | |
32 | | namespace doris { |
33 | | |
34 | | Dependency* BasicSharedState::create_source_dependency(int operator_id, int node_id, |
35 | 551k | const std::string& name) { |
36 | 551k | source_deps.push_back(std::make_shared<Dependency>(operator_id, node_id, name + "_DEPENDENCY")); |
37 | 551k | source_deps.back()->set_shared_state(this); |
38 | 551k | return source_deps.back().get(); |
39 | 551k | } |
40 | | |
41 | | void BasicSharedState::create_source_dependencies(int num_sources, int operator_id, int node_id, |
42 | 109k | const std::string& name) { |
43 | 109k | source_deps.resize(num_sources, nullptr); |
44 | 721k | for (auto& source_dep : source_deps) { |
45 | 721k | source_dep = std::make_shared<Dependency>(operator_id, node_id, name + "_DEPENDENCY"); |
46 | 721k | source_dep->set_shared_state(this); |
47 | 721k | } |
48 | 109k | } |
49 | | |
50 | | Dependency* BasicSharedState::create_sink_dependency(int dest_id, int node_id, |
51 | 1.14M | const std::string& name) { |
52 | 1.14M | sink_deps.push_back(std::make_shared<Dependency>(dest_id, node_id, name + "_DEPENDENCY", true)); |
53 | 1.14M | sink_deps.back()->set_shared_state(this); |
54 | 1.14M | return sink_deps.back().get(); |
55 | 1.14M | } |
56 | | |
57 | 5.02M | void Dependency::_add_block_task(std::shared_ptr<PipelineTask> task) { |
58 | 18.4E | DCHECK(_blocked_task.empty() || _blocked_task[_blocked_task.size() - 1].lock() == nullptr || |
59 | 18.4E | _blocked_task[_blocked_task.size() - 1].lock().get() != task.get()) |
60 | 18.4E | << "Duplicate task: " << task->debug_string(); |
61 | 5.02M | _blocked_task.push_back(task); |
62 | 5.02M | } |
63 | | |
64 | 28.3M | void Dependency::set_ready() { |
65 | 28.3M | if (_ready) { |
66 | 23.8M | return; |
67 | 23.8M | } |
68 | 4.53M | std::vector<std::weak_ptr<PipelineTask>> local_block_task {}; |
69 | 4.53M | { |
70 | 4.53M | std::unique_lock<std::mutex> lc(_task_lock); |
71 | 4.53M | if (_ready) { |
72 | 2 | return; |
73 | 2 | } |
74 | 4.53M | _watcher.stop(); |
75 | 4.53M | _ready = true; |
76 | 4.53M | local_block_task.swap(_blocked_task); |
77 | 4.53M | } |
78 | 5.03M | for (auto task : local_block_task) { |
79 | 5.03M | if (auto t = task.lock()) { |
80 | 5.03M | std::unique_lock<std::mutex> lc(_task_lock); |
81 | 5.03M | t->wake_up(this, lc); |
82 | 5.03M | } |
83 | 5.03M | } |
84 | 4.53M | } |
85 | | |
86 | 101M | Dependency* Dependency::is_blocked_by(std::shared_ptr<PipelineTask> task) { |
87 | 101M | std::unique_lock<std::mutex> lc(_task_lock); |
88 | 101M | auto ready = _ready.load(); |
89 | 101M | if (!ready && task) { |
90 | 5.03M | _add_block_task(task); |
91 | 5.03M | start_watcher(); |
92 | 5.03M | THROW_IF_ERROR(task->blocked(this, lc)); |
93 | 5.03M | } |
94 | 101M | return ready ? nullptr : this; |
95 | 101M | } |
96 | | |
97 | 92.5k | std::string Dependency::debug_string(int indentation_level) { |
98 | 92.5k | fmt::memory_buffer debug_string_buffer; |
99 | 92.5k | fmt::format_to(debug_string_buffer, "{}{}: id={}, block task = {}, ready={}, _always_ready={}", |
100 | 92.5k | std::string(indentation_level * 2, ' '), _name, _node_id, _blocked_task.size(), |
101 | 92.5k | _ready, _always_ready); |
102 | 92.5k | return fmt::to_string(debug_string_buffer); |
103 | 92.5k | } |
104 | | |
105 | 85 | std::string CountedFinishDependency::debug_string(int indentation_level) { |
106 | 85 | fmt::memory_buffer debug_string_buffer; |
107 | 85 | fmt::format_to(debug_string_buffer, |
108 | 85 | "{}{}: id={}, block_task={}, ready={}, _always_ready={}, count={}", |
109 | 85 | std::string(indentation_level * 2, ' '), _name, _node_id, _blocked_task.size(), |
110 | 85 | _ready, _always_ready, _counter); |
111 | 85 | return fmt::to_string(debug_string_buffer); |
112 | 85 | } |
113 | | |
114 | 656 | void RuntimeFilterTimer::call_timeout() { |
115 | 656 | _parent->set_ready(); |
116 | 656 | } |
117 | | |
118 | 46.2k | void RuntimeFilterTimer::call_ready() { |
119 | 46.2k | _parent->set_ready(); |
120 | 46.2k | } |
121 | | |
122 | | // should check rf timeout in two case: |
123 | | // 1. the rf is ready just remove the wait queue |
124 | | // 2. if the rf have local dependency, the rf should start wait when all local dependency is ready |
125 | 8.03M | bool RuntimeFilterTimer::should_be_check_timeout() { |
126 | 8.03M | if (!_parent->ready() && !_local_runtime_filter_dependencies.empty()) { |
127 | 3.87k | bool all_ready = true; |
128 | 3.89k | for (auto& dep : _local_runtime_filter_dependencies) { |
129 | 3.89k | if (!dep->ready()) { |
130 | 3.85k | all_ready = false; |
131 | 3.85k | break; |
132 | 3.85k | } |
133 | 3.89k | } |
134 | 3.87k | if (all_ready) { |
135 | 25 | _local_runtime_filter_dependencies.clear(); |
136 | 25 | _registration_time = MonotonicMillis(); |
137 | 25 | } |
138 | 3.87k | return all_ready; |
139 | 3.87k | } |
140 | 8.02M | return true; |
141 | 8.03M | } |
142 | | |
143 | 8 | void RuntimeFilterTimerQueue::start() { |
144 | 211k | while (!_stop) { |
145 | 211k | std::unique_lock<std::mutex> lk(cv_m); |
146 | | |
147 | 217k | while (_que.empty() && !_stop) { |
148 | 11.5k | cv.wait_for(lk, std::chrono::seconds(3), [this] { return !_que.empty() || _stop; }); |
149 | 5.76k | } |
150 | 211k | if (_stop) { |
151 | 3 | break; |
152 | 3 | } |
153 | 211k | { |
154 | 211k | std::unique_lock<std::mutex> lc(_que_lock); |
155 | 211k | std::list<std::shared_ptr<RuntimeFilterTimer>> new_que; |
156 | 8.03M | for (auto& it : _que) { |
157 | 8.03M | if (it.use_count() == 1) { |
158 | | // `use_count == 1` means this runtime filter has been released |
159 | 8.03M | } else if (it->should_be_check_timeout()) { |
160 | 8.02M | if (it->force_wait_timeout() || it->_parent->is_blocked_by()) { |
161 | | // This means runtime filter is not ready, so we call timeout or continue to poll this timer. |
162 | 7.98M | int64_t ms_since_registration = MonotonicMillis() - it->registration_time(); |
163 | 7.98M | if (ms_since_registration > it->wait_time_ms()) { |
164 | 656 | it->call_timeout(); |
165 | 7.98M | } else { |
166 | 7.98M | new_que.push_back(std::move(it)); |
167 | 7.98M | } |
168 | 7.98M | } |
169 | 8.02M | } else { |
170 | 3.85k | new_que.push_back(std::move(it)); |
171 | 3.85k | } |
172 | 8.03M | } |
173 | 211k | new_que.swap(_que); |
174 | 211k | } |
175 | 211k | std::this_thread::sleep_for(std::chrono::milliseconds(interval)); |
176 | 211k | } |
177 | 8 | _shutdown = true; |
178 | 8 | } |
179 | | |
180 | 284k | void LocalExchangeSharedState::sub_running_sink_operators() { |
181 | 284k | std::unique_lock<std::mutex> lc(le_lock); |
182 | 284k | if (exchanger->_running_sink_operators.fetch_sub(1) == 1) { |
183 | 106k | _set_always_ready(); |
184 | 106k | } |
185 | 284k | } |
186 | | |
187 | 699k | void LocalExchangeSharedState::sub_running_source_operators() { |
188 | 699k | std::unique_lock<std::mutex> lc(le_lock); |
189 | 699k | if (exchanger->_running_source_operators.fetch_sub(1) == 1) { |
190 | 106k | _set_always_ready(); |
191 | 106k | exchanger->finalize(); |
192 | 106k | } |
193 | 699k | } |
194 | | |
195 | 106k | LocalExchangeSharedState::LocalExchangeSharedState(int num_instances) { |
196 | 106k | source_deps.resize(num_instances, nullptr); |
197 | 106k | mem_counters.resize(num_instances, nullptr); |
198 | 106k | } |
199 | | |
200 | 162 | MutableColumns AggSharedState::_get_keys_hash_table() { |
201 | 162 | return std::visit( |
202 | 162 | Overload {[&](std::monostate& arg) { |
203 | 0 | throw doris::Exception(ErrorCode::INTERNAL_ERROR, "uninited hash table"); |
204 | 0 | return MutableColumns(); |
205 | 0 | }, |
206 | 162 | [&](auto&& agg_method) -> MutableColumns { |
207 | 162 | MutableColumns key_columns; |
208 | 480 | for (int i = 0; i < probe_expr_ctxs.size(); ++i) { |
209 | 318 | key_columns.emplace_back( |
210 | 318 | probe_expr_ctxs[i]->root()->data_type()->create_column()); |
211 | 318 | } |
212 | 162 | auto& data = *agg_method.hash_table; |
213 | 162 | bool has_null_key = data.has_null_key_data(); |
214 | 162 | const auto size = data.size() - has_null_key; |
215 | 162 | using KeyType = std::decay_t<decltype(agg_method)>::Key; |
216 | 162 | std::vector<KeyType> keys(size); |
217 | | |
218 | 162 | uint32_t num_rows = 0; |
219 | 162 | auto iter = aggregate_data_container->begin(); |
220 | 162 | { |
221 | 30.6k | while (iter != aggregate_data_container->end()) { |
222 | 30.5k | keys[num_rows] = iter.get_key<KeyType>(); |
223 | 30.5k | ++iter; |
224 | 30.5k | ++num_rows; |
225 | 30.5k | } |
226 | 162 | } |
227 | 162 | agg_method.insert_keys_into_columns(keys, key_columns, num_rows); |
228 | 162 | if (has_null_key) { |
229 | 2 | key_columns[0]->insert_data(nullptr, 0); |
230 | 2 | } |
231 | 162 | return key_columns; |
232 | 162 | }}, dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_16MethodSerializedI9PHHashMapINS_9StringRefEPc11DefaultHashIS5_vEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISE_EESaISH_EEOT_ Line | Count | Source | 206 | 26 | [&](auto&& agg_method) -> MutableColumns { | 207 | 26 | MutableColumns key_columns; | 208 | 98 | for (int i = 0; i < probe_expr_ctxs.size(); ++i) { | 209 | 72 | key_columns.emplace_back( | 210 | 72 | probe_expr_ctxs[i]->root()->data_type()->create_column()); | 211 | 72 | } | 212 | 26 | auto& data = *agg_method.hash_table; | 213 | 26 | bool has_null_key = data.has_null_key_data(); | 214 | 26 | const auto size = data.size() - has_null_key; | 215 | 26 | using KeyType = std::decay_t<decltype(agg_method)>::Key; | 216 | 26 | std::vector<KeyType> keys(size); | 217 | | | 218 | 26 | uint32_t num_rows = 0; | 219 | 26 | auto iter = aggregate_data_container->begin(); | 220 | 26 | { | 221 | 21.6k | while (iter != aggregate_data_container->end()) { | 222 | 21.6k | keys[num_rows] = iter.get_key<KeyType>(); | 223 | 21.6k | ++iter; | 224 | 21.6k | ++num_rows; | 225 | 21.6k | } | 226 | 26 | } | 227 | 26 | agg_method.insert_keys_into_columns(keys, key_columns, num_rows); | 228 | 26 | if (has_null_key) { | 229 | 0 | key_columns[0]->insert_data(nullptr, 0); | 230 | 0 | } | 231 | 26 | return key_columns; | 232 | 26 | }}, |
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodOneNumberIh9PHHashMapIhPc9HashCRC32IhEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISD_EESaISG_EEOT_ Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodOneNumberIt9PHHashMapItPc9HashCRC32ItEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISD_EESaISG_EEOT_ Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodOneNumberIj9PHHashMapIjPc9HashCRC32IjEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISD_EESaISG_EEOT_ Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodOneNumberIm9PHHashMapImPc9HashCRC32ImEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISD_EESaISG_EEOT_ Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_19MethodStringNoCacheINS_13StringHashMapIPcNS_9AllocatorILb1ELb1ELb0ENS_22DefaultMemoryAllocatorELb1EEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISE_EESaISH_EEOT_ Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapIS6_Pc9HashCRC32IS6_EEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISG_EESaISJ_EEOT_ Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodOneNumberIN4wide7integerILm256EjEE9PHHashMapIS6_Pc9HashCRC32IS6_EEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISG_EESaISJ_EEOT_ Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodOneNumberIj9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISF_EESaISI_EEOT_ dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodOneNumberIm9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISF_EESaISI_EEOT_ Line | Count | Source | 206 | 5 | [&](auto&& agg_method) -> MutableColumns { | 207 | 5 | MutableColumns key_columns; | 208 | 10 | for (int i = 0; i < probe_expr_ctxs.size(); ++i) { | 209 | 5 | key_columns.emplace_back( | 210 | 5 | probe_expr_ctxs[i]->root()->data_type()->create_column()); | 211 | 5 | } | 212 | 5 | auto& data = *agg_method.hash_table; | 213 | 5 | bool has_null_key = data.has_null_key_data(); | 214 | 5 | const auto size = data.size() - has_null_key; | 215 | 5 | using KeyType = std::decay_t<decltype(agg_method)>::Key; | 216 | 5 | std::vector<KeyType> keys(size); | 217 | | | 218 | 5 | uint32_t num_rows = 0; | 219 | 5 | auto iter = aggregate_data_container->begin(); | 220 | 5 | { | 221 | 25 | while (iter != aggregate_data_container->end()) { | 222 | 20 | keys[num_rows] = iter.get_key<KeyType>(); | 223 | 20 | ++iter; | 224 | 20 | ++num_rows; | 225 | 20 | } | 226 | 5 | } | 227 | 5 | agg_method.insert_keys_into_columns(keys, key_columns, num_rows); | 228 | 5 | if (has_null_key) { | 229 | 0 | key_columns[0]->insert_data(nullptr, 0); | 230 | 0 | } | 231 | 5 | return key_columns; | 232 | 5 | }}, |
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIhNS_15DataWithNullKeyI9PHHashMapIhPc9HashCRC32IhEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISH_EESaISK_EEOT_ Line | Count | Source | 206 | 3 | [&](auto&& agg_method) -> MutableColumns { | 207 | 3 | MutableColumns key_columns; | 208 | 6 | for (int i = 0; i < probe_expr_ctxs.size(); ++i) { | 209 | 3 | key_columns.emplace_back( | 210 | 3 | probe_expr_ctxs[i]->root()->data_type()->create_column()); | 211 | 3 | } | 212 | 3 | auto& data = *agg_method.hash_table; | 213 | 3 | bool has_null_key = data.has_null_key_data(); | 214 | 3 | const auto size = data.size() - has_null_key; | 215 | 3 | using KeyType = std::decay_t<decltype(agg_method)>::Key; | 216 | 3 | std::vector<KeyType> keys(size); | 217 | | | 218 | 3 | uint32_t num_rows = 0; | 219 | 3 | auto iter = aggregate_data_container->begin(); | 220 | 3 | { | 221 | 13 | while (iter != aggregate_data_container->end()) { | 222 | 10 | keys[num_rows] = iter.get_key<KeyType>(); | 223 | 10 | ++iter; | 224 | 10 | ++num_rows; | 225 | 10 | } | 226 | 3 | } | 227 | 3 | agg_method.insert_keys_into_columns(keys, key_columns, num_rows); | 228 | 3 | if (has_null_key) { | 229 | 0 | key_columns[0]->insert_data(nullptr, 0); | 230 | 0 | } | 231 | 3 | return key_columns; | 232 | 3 | }}, |
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberItNS_15DataWithNullKeyI9PHHashMapItPc9HashCRC32ItEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISH_EESaISK_EEOT_ dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjPc9HashCRC32IjEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISH_EESaISK_EEOT_ Line | Count | Source | 206 | 5 | [&](auto&& agg_method) -> MutableColumns { | 207 | 5 | MutableColumns key_columns; | 208 | 10 | for (int i = 0; i < probe_expr_ctxs.size(); ++i) { | 209 | 5 | key_columns.emplace_back( | 210 | 5 | probe_expr_ctxs[i]->root()->data_type()->create_column()); | 211 | 5 | } | 212 | 5 | auto& data = *agg_method.hash_table; | 213 | 5 | bool has_null_key = data.has_null_key_data(); | 214 | 5 | const auto size = data.size() - has_null_key; | 215 | 5 | using KeyType = std::decay_t<decltype(agg_method)>::Key; | 216 | 5 | std::vector<KeyType> keys(size); | 217 | | | 218 | 5 | uint32_t num_rows = 0; | 219 | 5 | auto iter = aggregate_data_container->begin(); | 220 | 5 | { | 221 | 2.03k | while (iter != aggregate_data_container->end()) { | 222 | 2.03k | keys[num_rows] = iter.get_key<KeyType>(); | 223 | 2.03k | ++iter; | 224 | 2.03k | ++num_rows; | 225 | 2.03k | } | 226 | 5 | } | 227 | 5 | agg_method.insert_keys_into_columns(keys, key_columns, num_rows); | 228 | 5 | if (has_null_key) { | 229 | 0 | key_columns[0]->insert_data(nullptr, 0); | 230 | 0 | } | 231 | 5 | return key_columns; | 232 | 5 | }}, |
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImPc9HashCRC32ImEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISH_EESaISK_EEOT_ Line | Count | Source | 206 | 5 | [&](auto&& agg_method) -> MutableColumns { | 207 | 5 | MutableColumns key_columns; | 208 | 10 | for (int i = 0; i < probe_expr_ctxs.size(); ++i) { | 209 | 5 | key_columns.emplace_back( | 210 | 5 | probe_expr_ctxs[i]->root()->data_type()->create_column()); | 211 | 5 | } | 212 | 5 | auto& data = *agg_method.hash_table; | 213 | 5 | bool has_null_key = data.has_null_key_data(); | 214 | 5 | const auto size = data.size() - has_null_key; | 215 | 5 | using KeyType = std::decay_t<decltype(agg_method)>::Key; | 216 | 5 | std::vector<KeyType> keys(size); | 217 | | | 218 | 5 | uint32_t num_rows = 0; | 219 | 5 | auto iter = aggregate_data_container->begin(); | 220 | 5 | { | 221 | 2.11k | while (iter != aggregate_data_container->end()) { | 222 | 2.11k | keys[num_rows] = iter.get_key<KeyType>(); | 223 | 2.11k | ++iter; | 224 | 2.11k | ++num_rows; | 225 | 2.11k | } | 226 | 5 | } | 227 | 5 | agg_method.insert_keys_into_columns(keys, key_columns, num_rows); | 228 | 5 | if (has_null_key) { | 229 | 0 | key_columns[0]->insert_data(nullptr, 0); | 230 | 0 | } | 231 | 5 | return key_columns; | 232 | 5 | }}, |
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISJ_EESaISM_EEOT_ Line | Count | Source | 206 | 15 | [&](auto&& agg_method) -> MutableColumns { | 207 | 15 | MutableColumns key_columns; | 208 | 30 | for (int i = 0; i < probe_expr_ctxs.size(); ++i) { | 209 | 15 | key_columns.emplace_back( | 210 | 15 | probe_expr_ctxs[i]->root()->data_type()->create_column()); | 211 | 15 | } | 212 | 15 | auto& data = *agg_method.hash_table; | 213 | 15 | bool has_null_key = data.has_null_key_data(); | 214 | 15 | const auto size = data.size() - has_null_key; | 215 | 15 | using KeyType = std::decay_t<decltype(agg_method)>::Key; | 216 | 15 | std::vector<KeyType> keys(size); | 217 | | | 218 | 15 | uint32_t num_rows = 0; | 219 | 15 | auto iter = aggregate_data_container->begin(); | 220 | 15 | { | 221 | 47 | while (iter != aggregate_data_container->end()) { | 222 | 32 | keys[num_rows] = iter.get_key<KeyType>(); | 223 | 32 | ++iter; | 224 | 32 | ++num_rows; | 225 | 32 | } | 226 | 15 | } | 227 | 15 | agg_method.insert_keys_into_columns(keys, key_columns, num_rows); | 228 | 15 | if (has_null_key) { | 229 | 1 | key_columns[0]->insert_data(nullptr, 0); | 230 | 1 | } | 231 | 15 | return key_columns; | 232 | 15 | }}, |
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISJ_EESaISM_EEOT_ Line | Count | Source | 206 | 10 | [&](auto&& agg_method) -> MutableColumns { | 207 | 10 | MutableColumns key_columns; | 208 | 20 | for (int i = 0; i < probe_expr_ctxs.size(); ++i) { | 209 | 10 | key_columns.emplace_back( | 210 | 10 | probe_expr_ctxs[i]->root()->data_type()->create_column()); | 211 | 10 | } | 212 | 10 | auto& data = *agg_method.hash_table; | 213 | 10 | bool has_null_key = data.has_null_key_data(); | 214 | 10 | const auto size = data.size() - has_null_key; | 215 | 10 | using KeyType = std::decay_t<decltype(agg_method)>::Key; | 216 | 10 | std::vector<KeyType> keys(size); | 217 | | | 218 | 10 | uint32_t num_rows = 0; | 219 | 10 | auto iter = aggregate_data_container->begin(); | 220 | 10 | { | 221 | 915 | while (iter != aggregate_data_container->end()) { | 222 | 905 | keys[num_rows] = iter.get_key<KeyType>(); | 223 | 905 | ++iter; | 224 | 905 | ++num_rows; | 225 | 905 | } | 226 | 10 | } | 227 | 10 | agg_method.insert_keys_into_columns(keys, key_columns, num_rows); | 228 | 10 | if (has_null_key) { | 229 | 1 | key_columns[0]->insert_data(nullptr, 0); | 230 | 1 | } | 231 | 10 | return key_columns; | 232 | 10 | }}, |
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm128EjEENS_15DataWithNullKeyI9PHHashMapIS7_Pc9HashCRC32IS7_EEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISK_EESaISN_EEOT_ Line | Count | Source | 206 | 1 | [&](auto&& agg_method) -> MutableColumns { | 207 | 1 | MutableColumns key_columns; | 208 | 2 | for (int i = 0; i < probe_expr_ctxs.size(); ++i) { | 209 | 1 | key_columns.emplace_back( | 210 | 1 | probe_expr_ctxs[i]->root()->data_type()->create_column()); | 211 | 1 | } | 212 | 1 | auto& data = *agg_method.hash_table; | 213 | 1 | bool has_null_key = data.has_null_key_data(); | 214 | 1 | const auto size = data.size() - has_null_key; | 215 | 1 | using KeyType = std::decay_t<decltype(agg_method)>::Key; | 216 | 1 | std::vector<KeyType> keys(size); | 217 | | | 218 | 1 | uint32_t num_rows = 0; | 219 | 1 | auto iter = aggregate_data_container->begin(); | 220 | 1 | { | 221 | 4 | while (iter != aggregate_data_container->end()) { | 222 | 3 | keys[num_rows] = iter.get_key<KeyType>(); | 223 | 3 | ++iter; | 224 | 3 | ++num_rows; | 225 | 3 | } | 226 | 1 | } | 227 | 1 | agg_method.insert_keys_into_columns(keys, key_columns, num_rows); | 228 | 1 | if (has_null_key) { | 229 | 0 | key_columns[0]->insert_data(nullptr, 0); | 230 | 0 | } | 231 | 1 | return key_columns; | 232 | 1 | }}, |
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm256EjEENS_15DataWithNullKeyI9PHHashMapIS7_Pc9HashCRC32IS7_EEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISK_EESaISN_EEOT_ dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_19MethodStringNoCacheINS_15DataWithNullKeyINS_13StringHashMapIPcNS_9AllocatorILb1ELb1ELb0ENS_22DefaultMemoryAllocatorELb1EEEEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISI_EESaISL_EEOT_ Line | Count | Source | 206 | 32 | [&](auto&& agg_method) -> MutableColumns { | 207 | 32 | MutableColumns key_columns; | 208 | 64 | for (int i = 0; i < probe_expr_ctxs.size(); ++i) { | 209 | 32 | key_columns.emplace_back( | 210 | 32 | probe_expr_ctxs[i]->root()->data_type()->create_column()); | 211 | 32 | } | 212 | 32 | auto& data = *agg_method.hash_table; | 213 | 32 | bool has_null_key = data.has_null_key_data(); | 214 | 32 | const auto size = data.size() - has_null_key; | 215 | 32 | using KeyType = std::decay_t<decltype(agg_method)>::Key; | 216 | 32 | std::vector<KeyType> keys(size); | 217 | | | 218 | 32 | uint32_t num_rows = 0; | 219 | 32 | auto iter = aggregate_data_container->begin(); | 220 | 32 | { | 221 | 1.48k | while (iter != aggregate_data_container->end()) { | 222 | 1.45k | keys[num_rows] = iter.get_key<KeyType>(); | 223 | 1.45k | ++iter; | 224 | 1.45k | ++num_rows; | 225 | 1.45k | } | 226 | 32 | } | 227 | 32 | agg_method.insert_keys_into_columns(keys, key_columns, num_rows); | 228 | 32 | if (has_null_key) { | 229 | 0 | key_columns[0]->insert_data(nullptr, 0); | 230 | 0 | } | 231 | 32 | return key_columns; | 232 | 32 | }}, |
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodKeysFixedI9PHHashMapImPc9HashCRC32ImEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISD_EESaISG_EEOT_ Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt72EPc9HashCRC32IS5_EEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISE_EESaISH_EEOT_ Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt96EPc9HashCRC32IS5_EEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISE_EESaISH_EEOT_ Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt104EPc9HashCRC32IS5_EEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISE_EESaISH_EEOT_ Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEEPc9HashCRC32IS7_EEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISG_EESaISJ_EEOT_ Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt136EPc9HashCRC32IS5_EEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISE_EESaISH_EEOT_ dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEEPc9HashCRC32IS7_EEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISG_EESaISJ_EEOT_ Line | Count | Source | 206 | 60 | [&](auto&& agg_method) -> MutableColumns { | 207 | 60 | MutableColumns key_columns; | 208 | 230 | for (int i = 0; i < probe_expr_ctxs.size(); ++i) { | 209 | 170 | key_columns.emplace_back( | 210 | 170 | probe_expr_ctxs[i]->root()->data_type()->create_column()); | 211 | 170 | } | 212 | 60 | auto& data = *agg_method.hash_table; | 213 | 60 | bool has_null_key = data.has_null_key_data(); | 214 | 60 | const auto size = data.size() - has_null_key; | 215 | 60 | using KeyType = std::decay_t<decltype(agg_method)>::Key; | 216 | 60 | std::vector<KeyType> keys(size); | 217 | | | 218 | 60 | uint32_t num_rows = 0; | 219 | 60 | auto iter = aggregate_data_container->begin(); | 220 | 60 | { | 221 | 2.39k | while (iter != aggregate_data_container->end()) { | 222 | 2.33k | keys[num_rows] = iter.get_key<KeyType>(); | 223 | 2.33k | ++iter; | 224 | 2.33k | ++num_rows; | 225 | 2.33k | } | 226 | 60 | } | 227 | 60 | agg_method.insert_keys_into_columns(keys, key_columns, num_rows); | 228 | 60 | if (has_null_key) { | 229 | 0 | key_columns[0]->insert_data(nullptr, 0); | 230 | 0 | } | 231 | 60 | return key_columns; | 232 | 60 | }}, |
|
233 | 162 | agg_data->method_variant); |
234 | 162 | } |
235 | | |
236 | 162 | void AggSharedState::build_limit_heap(size_t hash_table_size) { |
237 | 162 | limit_columns = _get_keys_hash_table(); |
238 | 30.4k | for (size_t i = 0; i < hash_table_size; ++i) { |
239 | 30.2k | limit_heap.emplace(i, limit_columns, order_directions, null_directions); |
240 | 30.2k | } |
241 | 29.6k | while (hash_table_size > limit) { |
242 | 29.5k | limit_heap.pop(); |
243 | 29.5k | hash_table_size--; |
244 | 29.5k | } |
245 | 162 | limit_columns_min = limit_heap.top()._row_id; |
246 | 162 | } |
247 | | |
248 | | bool AggSharedState::do_limit_filter(Block* block, size_t num_rows, |
249 | 524 | const std::vector<int>* key_locs) { |
250 | 524 | if (num_rows) { |
251 | 524 | cmp_res.resize(num_rows); |
252 | 524 | need_computes.resize(num_rows); |
253 | 524 | memset(need_computes.data(), 0, need_computes.size()); |
254 | 524 | memset(cmp_res.data(), 0, cmp_res.size()); |
255 | | |
256 | 524 | const auto key_size = null_directions.size(); |
257 | 1.74k | for (int i = 0; i < key_size; i++) { |
258 | 1.22k | block->get_by_position(key_locs ? key_locs->operator[](i) : i) |
259 | 1.22k | .column->compare_internal(limit_columns_min, *limit_columns[i], |
260 | 1.22k | null_directions[i], order_directions[i], cmp_res, |
261 | 1.22k | need_computes.data()); |
262 | 1.22k | } |
263 | | |
264 | 524 | auto set_computes_arr = [](auto* __restrict res, auto* __restrict computes, size_t rows) { |
265 | 524k | for (size_t i = 0; i < rows; ++i) { |
266 | 524k | computes[i] = computes[i] == res[i]; |
267 | 524k | } |
268 | 524 | }; |
269 | 524 | set_computes_arr(cmp_res.data(), need_computes.data(), num_rows); |
270 | | |
271 | 524 | return std::find(need_computes.begin(), need_computes.end(), 0) != need_computes.end(); |
272 | 524 | } |
273 | | |
274 | 0 | return false; |
275 | 524 | } |
276 | | |
277 | 54 | Status AggSharedState::reset_hash_table() { |
278 | 54 | return std::visit( |
279 | 54 | Overload { |
280 | 54 | [&](std::monostate& arg) -> Status { |
281 | 0 | return Status::InternalError("Uninited hash table"); |
282 | 0 | }, |
283 | 54 | [&](auto& agg_method) { |
284 | 54 | auto& hash_table = *agg_method.hash_table; |
285 | 54 | using HashTableType = std::decay_t<decltype(hash_table)>; |
286 | | |
287 | 54 | agg_method.arena.clear(); |
288 | 54 | agg_method.inited_iterator = false; |
289 | | |
290 | 54 | if (!use_simple_count) { |
291 | 1.06M | hash_table.for_each_mapped([&](auto& mapped) { |
292 | 1.06M | if (mapped) { |
293 | 1.06M | _destroy_agg_status(mapped); |
294 | 1.06M | mapped = nullptr; |
295 | 1.06M | } |
296 | 1.06M | }); Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_16MethodSerializedI9PHHashMapINS_9StringRefEPc11DefaultHashIS5_vEEEEEEDaRT_ENKUlSC_E_clIS6_EEDaSC_ Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIh9PHHashMapIhPc9HashCRC32IhEEEEEEDaRT_ENKUlSB_E_clIS5_EEDaSB_ Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIt9PHHashMapItPc9HashCRC32ItEEEEEEDaRT_ENKUlSB_E_clIS5_EEDaSB_ Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIj9PHHashMapIjPc9HashCRC32IjEEEEEEDaRT_ENKUlSB_E_clIS5_EEDaSB_ Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIm9PHHashMapImPc9HashCRC32ImEEEEEEDaRT_ENKUlSB_E_clIS5_EEDaSB_ Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_19MethodStringNoCacheINS_13StringHashMapIPcNS_9AllocatorILb1ELb1ELb0ENS_22DefaultMemoryAllocatorELb1EEEEEEEEEDaRT_ENKUlSC_E_clIS5_EEDaSC_ Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapIS6_Pc9HashCRC32IS6_EEEEEEDaRT_ENKUlSE_E_clIS8_EEDaSE_ Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIN4wide7integerILm256EjEE9PHHashMapIS6_Pc9HashCRC32IS6_EEEEEEDaRT_ENKUlSE_E_clIS8_EEDaSE_ dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIj9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEEEEEEEDaRT_ENKUlSD_E_clIS5_EEDaSD_ Line | Count | Source | 291 | 1.06M | hash_table.for_each_mapped([&](auto& mapped) { | 292 | 1.06M | if (mapped) { | 293 | 1.06M | _destroy_agg_status(mapped); | 294 | 1.06M | mapped = nullptr; | 295 | 1.06M | } | 296 | 1.06M | }); |
Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIm9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEEDaRT_ENKUlSD_E_clIS5_EEDaSD_ Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIhNS_15DataWithNullKeyI9PHHashMapIhPc9HashCRC32IhEEEEEEEEEEDaRT_ENKUlSF_E_clIS7_EEDaSF_ Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberItNS_15DataWithNullKeyI9PHHashMapItPc9HashCRC32ItEEEEEEEEEEDaRT_ENKUlSF_E_clIS7_EEDaSF_ Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjPc9HashCRC32IjEEEEEEEEEEDaRT_ENKUlSF_E_clIS7_EEDaSF_ Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImPc9HashCRC32ImEEEEEEEEEEDaRT_ENKUlSF_E_clIS7_EEDaSF_ Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEEEEEEEEEEEDaRT_ENKUlSH_E_clIS7_EEDaSH_ Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEEEEEEDaRT_ENKUlSH_E_clIS7_EEDaSH_ Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm128EjEENS_15DataWithNullKeyI9PHHashMapIS7_Pc9HashCRC32IS7_EEEEEEEEEEDaRT_ENKUlSI_E_clISA_EEDaSI_ Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm256EjEENS_15DataWithNullKeyI9PHHashMapIS7_Pc9HashCRC32IS7_EEEEEEEEEEDaRT_ENKUlSI_E_clISA_EEDaSI_ Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_19MethodStringNoCacheINS_15DataWithNullKeyINS_13StringHashMapIPcNS_9AllocatorILb1ELb1ELb0ENS_22DefaultMemoryAllocatorELb1EEEEEEEEEEEEEDaRT_ENKUlSG_E_clIS7_EEDaSG_ Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapImPc9HashCRC32ImEEEEEEDaRT_ENKUlSB_E_clIS5_EEDaSB_ Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapINS_6UInt72EPc9HashCRC32IS5_EEEEEEDaRT_ENKUlSC_E_clIS6_EEDaSC_ Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapINS_6UInt96EPc9HashCRC32IS5_EEEEEEDaRT_ENKUlSC_E_clIS6_EEDaSC_ Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapINS_7UInt104EPc9HashCRC32IS5_EEEEEEDaRT_ENKUlSC_E_clIS6_EEDaSC_ Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEEPc9HashCRC32IS7_EEEEEEDaRT_ENKUlSE_E_clIS8_EEDaSE_ Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapINS_7UInt136EPc9HashCRC32IS5_EEEEEEDaRT_ENKUlSC_E_clIS6_EEDaSC_ Unexecuted instantiation: dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEEPc9HashCRC32IS7_EEEEEEDaRT_ENKUlSE_E_clIS8_EEDaSE_ |
297 | | |
298 | 54 | if (hash_table.has_null_key_data()) { |
299 | 2 | _destroy_agg_status( |
300 | 2 | hash_table.template get_null_key_data<AggregateDataPtr>()); |
301 | 2 | } |
302 | | |
303 | 54 | aggregate_data_container.reset(new AggregateDataContainer( |
304 | 54 | sizeof(typename HashTableType::key_type), |
305 | 54 | ((total_size_of_aggregate_states + align_aggregate_states - 1) / |
306 | 54 | align_aggregate_states) * |
307 | 54 | align_aggregate_states)); |
308 | 54 | } |
309 | 54 | agg_method.hash_table.reset(new HashTableType()); |
310 | 54 | return Status::OK(); |
311 | 54 | }}, Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_16MethodSerializedI9PHHashMapINS_9StringRefEPc11DefaultHashIS5_vEEEEEEDaRT_ Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIh9PHHashMapIhPc9HashCRC32IhEEEEEEDaRT_ Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIt9PHHashMapItPc9HashCRC32ItEEEEEEDaRT_ Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIj9PHHashMapIjPc9HashCRC32IjEEEEEEDaRT_ Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIm9PHHashMapImPc9HashCRC32ImEEEEEEDaRT_ Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_19MethodStringNoCacheINS_13StringHashMapIPcNS_9AllocatorILb1ELb1ELb0ENS_22DefaultMemoryAllocatorELb1EEEEEEEEEDaRT_ Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapIS6_Pc9HashCRC32IS6_EEEEEEDaRT_ Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIN4wide7integerILm256EjEE9PHHashMapIS6_Pc9HashCRC32IS6_EEEEEEDaRT_ dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIj9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEEEEEEEDaRT_ Line | Count | Source | 283 | 52 | [&](auto& agg_method) { | 284 | 52 | auto& hash_table = *agg_method.hash_table; | 285 | 52 | using HashTableType = std::decay_t<decltype(hash_table)>; | 286 | | | 287 | 52 | agg_method.arena.clear(); | 288 | 52 | agg_method.inited_iterator = false; | 289 | | | 290 | 52 | if (!use_simple_count) { | 291 | 52 | hash_table.for_each_mapped([&](auto& mapped) { | 292 | 52 | if (mapped) { | 293 | 52 | _destroy_agg_status(mapped); | 294 | 52 | mapped = nullptr; | 295 | 52 | } | 296 | 52 | }); | 297 | | | 298 | 52 | if (hash_table.has_null_key_data()) { | 299 | 0 | _destroy_agg_status( | 300 | 0 | hash_table.template get_null_key_data<AggregateDataPtr>()); | 301 | 0 | } | 302 | | | 303 | 52 | aggregate_data_container.reset(new AggregateDataContainer( | 304 | 52 | sizeof(typename HashTableType::key_type), | 305 | 52 | ((total_size_of_aggregate_states + align_aggregate_states - 1) / | 306 | 52 | align_aggregate_states) * | 307 | 52 | align_aggregate_states)); | 308 | 52 | } | 309 | 52 | agg_method.hash_table.reset(new HashTableType()); | 310 | 52 | return Status::OK(); | 311 | 52 | }}, |
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIm9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEEDaRT_ Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIhNS_15DataWithNullKeyI9PHHashMapIhPc9HashCRC32IhEEEEEEEEEEDaRT_ Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberItNS_15DataWithNullKeyI9PHHashMapItPc9HashCRC32ItEEEEEEEEEEDaRT_ Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjPc9HashCRC32IjEEEEEEEEEEDaRT_ Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImPc9HashCRC32ImEEEEEEEEEEDaRT_ dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEEEEEEEEEEEDaRT_ Line | Count | Source | 283 | 2 | [&](auto& agg_method) { | 284 | 2 | auto& hash_table = *agg_method.hash_table; | 285 | 2 | using HashTableType = std::decay_t<decltype(hash_table)>; | 286 | | | 287 | 2 | agg_method.arena.clear(); | 288 | 2 | agg_method.inited_iterator = false; | 289 | | | 290 | 2 | if (!use_simple_count) { | 291 | 2 | hash_table.for_each_mapped([&](auto& mapped) { | 292 | 2 | if (mapped) { | 293 | 2 | _destroy_agg_status(mapped); | 294 | 2 | mapped = nullptr; | 295 | 2 | } | 296 | 2 | }); | 297 | | | 298 | 2 | if (hash_table.has_null_key_data()) { | 299 | 2 | _destroy_agg_status( | 300 | 2 | hash_table.template get_null_key_data<AggregateDataPtr>()); | 301 | 2 | } | 302 | | | 303 | 2 | aggregate_data_container.reset(new AggregateDataContainer( | 304 | 2 | sizeof(typename HashTableType::key_type), | 305 | 2 | ((total_size_of_aggregate_states + align_aggregate_states - 1) / | 306 | 2 | align_aggregate_states) * | 307 | 2 | align_aggregate_states)); | 308 | 2 | } | 309 | 2 | agg_method.hash_table.reset(new HashTableType()); | 310 | 2 | return Status::OK(); | 311 | 2 | }}, |
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEEEEEEDaRT_ Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm128EjEENS_15DataWithNullKeyI9PHHashMapIS7_Pc9HashCRC32IS7_EEEEEEEEEEDaRT_ Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm256EjEENS_15DataWithNullKeyI9PHHashMapIS7_Pc9HashCRC32IS7_EEEEEEEEEEDaRT_ Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_26MethodSingleNullableColumnINS_19MethodStringNoCacheINS_15DataWithNullKeyINS_13StringHashMapIPcNS_9AllocatorILb1ELb1ELb0ENS_22DefaultMemoryAllocatorELb1EEEEEEEEEEEEEDaRT_ Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapImPc9HashCRC32ImEEEEEEDaRT_ Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapINS_6UInt72EPc9HashCRC32IS5_EEEEEEDaRT_ Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapINS_6UInt96EPc9HashCRC32IS5_EEEEEEDaRT_ Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapINS_7UInt104EPc9HashCRC32IS5_EEEEEEDaRT_ Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEEPc9HashCRC32IS7_EEEEEEDaRT_ Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapINS_7UInt136EPc9HashCRC32IS5_EEEEEEDaRT_ Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEEPc9HashCRC32IS7_EEEEEEDaRT_ |
312 | 54 | agg_data->method_variant); |
313 | 54 | } |
314 | | |
315 | 26 | void PartitionedAggSharedState::close() { |
316 | 32 | for (auto& partition : _spill_partitions) { |
317 | 32 | if (partition) { |
318 | 4 | ExecEnv::GetInstance()->spill_file_mgr()->delete_spill_file(partition); |
319 | 4 | } |
320 | 32 | } |
321 | 26 | _spill_partitions.clear(); |
322 | 26 | } |
323 | | |
324 | 33 | void SpillSortSharedState::close() { |
325 | | // need to use CAS instead of only `if (!is_closed)` statement, |
326 | | // to avoid concurrent entry of close() both pass the if statement |
327 | 33 | bool false_close = false; |
328 | 33 | if (!is_closed.compare_exchange_strong(false_close, true)) { |
329 | 11 | return; |
330 | 11 | } |
331 | 33 | DCHECK(!false_close && is_closed); |
332 | 22 | sorted_spill_groups.clear(); |
333 | 22 | } |
334 | | |
335 | | MultiCastSharedState::MultiCastSharedState(ObjectPool* pool, int cast_sender_count, int node_id) |
336 | | : multi_cast_data_streamer( |
337 | 3.49k | std::make_unique<MultiCastDataStreamer>(pool, cast_sender_count, node_id)) {} |
338 | | |
339 | 117k | int AggSharedState::get_slot_column_id(const AggFnEvaluator* evaluator) { |
340 | 117k | auto ctxs = evaluator->input_exprs_ctxs(); |
341 | 18.4E | CHECK(ctxs.size() == 1 && ctxs[0]->root()->is_slot_ref()) |
342 | 18.4E | << "input_exprs_ctxs is invalid, input_exprs_ctx[0]=" |
343 | 18.4E | << ctxs[0]->root()->debug_string(); |
344 | 117k | return ((VSlotRef*)ctxs[0]->root().get())->column_id(); |
345 | 117k | } |
346 | | |
347 | 2.49M | void AggSharedState::_destroy_agg_status(AggregateDataPtr data) { |
348 | 5.34M | for (int i = 0; i < aggregate_evaluators.size(); ++i) { |
349 | 2.85M | aggregate_evaluators[i]->function()->destroy(data + offsets_of_aggregate_states[i]); |
350 | 2.85M | } |
351 | 2.49M | } |
352 | | |
353 | 106k | LocalExchangeSharedState::~LocalExchangeSharedState() = default; |
354 | | |
355 | 12.4k | Status SetSharedState::update_build_not_ignore_null(const VExprContextSPtrs& ctxs) { |
356 | 12.4k | if (ctxs.size() > build_not_ignore_null.size()) { |
357 | 0 | return Status::InternalError("build_not_ignore_null not initialized"); |
358 | 0 | } |
359 | | |
360 | 102k | for (int i = 0; i < ctxs.size(); ++i) { |
361 | 89.5k | build_not_ignore_null[i] = build_not_ignore_null[i] || ctxs[i]->root()->is_nullable(); |
362 | 89.5k | } |
363 | | |
364 | 12.4k | return Status::OK(); |
365 | 12.4k | } |
366 | | |
367 | 20.0k | size_t SetSharedState::get_hash_table_size() const { |
368 | 20.0k | size_t hash_table_size = 0; |
369 | 20.0k | std::visit( |
370 | 20.0k | [&](auto&& arg) { |
371 | 20.0k | using HashTableCtxType = std::decay_t<decltype(arg)>; |
372 | 20.0k | if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) { |
373 | 20.0k | hash_table_size = arg.hash_table->size(); |
374 | 20.0k | } |
375 | 20.0k | }, Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRSt9monostateEEDaOT_ dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_16MethodSerializedI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashIS5_vEEEEEEDaOT_ Line | Count | Source | 370 | 17.9k | [&](auto&& arg) { | 371 | 17.9k | using HashTableCtxType = std::decay_t<decltype(arg)>; | 372 | 17.9k | if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) { | 373 | 17.9k | hash_table_size = arg.hash_table->size(); | 374 | 17.9k | } | 375 | 17.9k | }, |
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_19MethodStringNoCacheI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashIS5_vEEEEEEDaOT_ Line | Count | Source | 370 | 133 | [&](auto&& arg) { | 371 | 133 | using HashTableCtxType = std::decay_t<decltype(arg)>; | 372 | 133 | if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) { | 373 | 133 | hash_table_size = arg.hash_table->size(); | 374 | 133 | } | 375 | 133 | }, |
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_19MethodStringNoCacheINS_15DataWithNullKeyI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashIS7_vEEEEEEEEEEDaOT_ Line | Count | Source | 370 | 77 | [&](auto&& arg) { | 371 | 77 | using HashTableCtxType = std::decay_t<decltype(arg)>; | 372 | 77 | if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) { | 373 | 77 | hash_table_size = arg.hash_table->size(); | 374 | 77 | } | 375 | 77 | }, |
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIhNS_15DataWithNullKeyI9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEEEEEDaOT_ Line | Count | Source | 370 | 42 | [&](auto&& arg) { | 371 | 42 | using HashTableCtxType = std::decay_t<decltype(arg)>; | 372 | 42 | if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) { | 373 | 42 | hash_table_size = arg.hash_table->size(); | 374 | 42 | } | 375 | 42 | }, |
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberItNS_15DataWithNullKeyI9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEEEEEDaOT_ Line | Count | Source | 370 | 6 | [&](auto&& arg) { | 371 | 6 | using HashTableCtxType = std::decay_t<decltype(arg)>; | 372 | 6 | if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) { | 373 | 6 | hash_table_size = arg.hash_table->size(); | 374 | 6 | } | 375 | 6 | }, |
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEEEEEDaOT_ Line | Count | Source | 370 | 1.39k | [&](auto&& arg) { | 371 | 1.39k | using HashTableCtxType = std::decay_t<decltype(arg)>; | 372 | 1.39k | if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) { | 373 | 1.39k | hash_table_size = arg.hash_table->size(); | 374 | 1.39k | } | 375 | 1.39k | }, |
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEEEEEDaOT_ Line | Count | Source | 370 | 133 | [&](auto&& arg) { | 371 | 133 | using HashTableCtxType = std::decay_t<decltype(arg)>; | 372 | 133 | if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) { | 373 | 133 | hash_table_size = arg.hash_table->size(); | 374 | 133 | } | 375 | 133 | }, |
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm128EjEENS_15DataWithNullKeyI9PHHashMapIS7_NS_14RowRefWithFlagE9HashCRC32IS7_EEEEEEEEEEDaOT_ Line | Count | Source | 370 | 48 | [&](auto&& arg) { | 371 | 48 | using HashTableCtxType = std::decay_t<decltype(arg)>; | 372 | 48 | if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) { | 373 | 48 | hash_table_size = arg.hash_table->size(); | 374 | 48 | } | 375 | 48 | }, |
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm256EjEENS_15DataWithNullKeyI9PHHashMapIS7_NS_14RowRefWithFlagE9HashCRC32IS7_EEEEEEEEEEDaOT_ Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodOneNumberIh9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEDaOT_ dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodOneNumberIt9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEDaOT_ Line | Count | Source | 370 | 3 | [&](auto&& arg) { | 371 | 3 | using HashTableCtxType = std::decay_t<decltype(arg)>; | 372 | 3 | if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) { | 373 | 3 | hash_table_size = arg.hash_table->size(); | 374 | 3 | } | 375 | 3 | }, |
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodOneNumberIj9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEDaOT_ Line | Count | Source | 370 | 29 | [&](auto&& arg) { | 371 | 29 | using HashTableCtxType = std::decay_t<decltype(arg)>; | 372 | 29 | if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) { | 373 | 29 | hash_table_size = arg.hash_table->size(); | 374 | 29 | } | 375 | 29 | }, |
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodOneNumberIm9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEDaOT_ Line | Count | Source | 370 | 16 | [&](auto&& arg) { | 371 | 16 | using HashTableCtxType = std::decay_t<decltype(arg)>; | 372 | 16 | if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) { | 373 | 16 | hash_table_size = arg.hash_table->size(); | 374 | 16 | } | 375 | 16 | }, |
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapIS6_NS_14RowRefWithFlagE9HashCRC32IS6_EEEEEEDaOT_ Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodOneNumberIN4wide7integerILm256EjEE9PHHashMapIS6_NS_14RowRefWithFlagE9HashCRC32IS6_EEEEEEDaOT_ dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEDaOT_ Line | Count | Source | 370 | 27 | [&](auto&& arg) { | 371 | 27 | using HashTableCtxType = std::decay_t<decltype(arg)>; | 372 | 27 | if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) { | 373 | 27 | hash_table_size = arg.hash_table->size(); | 374 | 27 | } | 375 | 27 | }, |
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt72ENS_14RowRefWithFlagE9HashCRC32IS5_EEEEEEDaOT_ Line | Count | Source | 370 | 95 | [&](auto&& arg) { | 371 | 95 | using HashTableCtxType = std::decay_t<decltype(arg)>; | 372 | 95 | if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) { | 373 | 95 | hash_table_size = arg.hash_table->size(); | 374 | 95 | } | 375 | 95 | }, |
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt96ENS_14RowRefWithFlagE9HashCRC32IS5_EEEEEEDaOT_ Line | Count | Source | 370 | 6 | [&](auto&& arg) { | 371 | 6 | using HashTableCtxType = std::decay_t<decltype(arg)>; | 372 | 6 | if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) { | 373 | 6 | hash_table_size = arg.hash_table->size(); | 374 | 6 | } | 375 | 6 | }, |
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt104ENS_14RowRefWithFlagE9HashCRC32IS5_EEEEEEDaOT_ Line | Count | Source | 370 | 45 | [&](auto&& arg) { | 371 | 45 | using HashTableCtxType = std::decay_t<decltype(arg)>; | 372 | 45 | if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) { | 373 | 45 | hash_table_size = arg.hash_table->size(); | 374 | 45 | } | 375 | 45 | }, |
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEENS_14RowRefWithFlagE9HashCRC32IS7_EEEEEEDaOT_ dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEENS_14RowRefWithFlagE9HashCRC32IS7_EEEEEEDaOT_ Line | Count | Source | 370 | 4 | [&](auto&& arg) { | 371 | 4 | using HashTableCtxType = std::decay_t<decltype(arg)>; | 372 | 4 | if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) { | 373 | 4 | hash_table_size = arg.hash_table->size(); | 374 | 4 | } | 375 | 4 | }, |
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt136ENS_14RowRefWithFlagE9HashCRC32IS5_EEEEEEDaOT_ Line | Count | Source | 370 | 86 | [&](auto&& arg) { | 371 | 86 | using HashTableCtxType = std::decay_t<decltype(arg)>; | 372 | 86 | if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) { | 373 | 86 | hash_table_size = arg.hash_table->size(); | 374 | 86 | } | 375 | 86 | }, |
|
376 | 20.0k | hash_table_variants->method_variant); |
377 | 20.0k | return hash_table_size; |
378 | 20.0k | } |
379 | | |
380 | 4.99k | Status SetSharedState::hash_table_init() { |
381 | 4.99k | std::vector<DataTypePtr> data_types; |
382 | 40.8k | for (size_t i = 0; i != child_exprs_lists[0].size(); ++i) { |
383 | 35.8k | auto& ctx = child_exprs_lists[0][i]; |
384 | 35.8k | auto data_type = ctx->root()->data_type(); |
385 | 35.8k | if (build_not_ignore_null[i]) { |
386 | 35.6k | data_type = make_nullable(data_type); |
387 | 35.6k | } |
388 | 35.8k | data_types.emplace_back(std::move(data_type)); |
389 | 35.8k | } |
390 | 4.99k | return init_hash_method<SetDataVariants>(hash_table_variants.get(), data_types, true); |
391 | 4.99k | } |
392 | | |
393 | 4.16k | void AggSharedState::refresh_top_limit(size_t row_id, const ColumnRawPtrs& key_columns) { |
394 | 8.44k | for (int j = 0; j < key_columns.size(); ++j) { |
395 | 4.27k | limit_columns[j]->insert_from(*key_columns[j], row_id); |
396 | 4.27k | } |
397 | 4.16k | limit_heap.emplace(limit_columns[0]->size() - 1, limit_columns, order_directions, |
398 | 4.16k | null_directions); |
399 | | |
400 | 4.16k | limit_heap.pop(); |
401 | 4.16k | limit_columns_min = limit_heap.top()._row_id; |
402 | 4.16k | } |
403 | | |
404 | | } // namespace doris |