Coverage Report

Created: 2026-04-16 11:29

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
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
555k
                                                       const std::string& name) {
36
555k
    source_deps.push_back(std::make_shared<Dependency>(operator_id, node_id, name + "_DEPENDENCY"));
37
555k
    source_deps.back()->set_shared_state(this);
38
555k
    return source_deps.back().get();
39
555k
}
40
41
void BasicSharedState::create_source_dependencies(int num_sources, int operator_id, int node_id,
42
117k
                                                  const std::string& name) {
43
117k
    source_deps.resize(num_sources, nullptr);
44
734k
    for (auto& source_dep : source_deps) {
45
734k
        source_dep = std::make_shared<Dependency>(operator_id, node_id, name + "_DEPENDENCY");
46
734k
        source_dep->set_shared_state(this);
47
734k
    }
48
117k
}
49
50
Dependency* BasicSharedState::create_sink_dependency(int dest_id, int node_id,
51
1.15M
                                                     const std::string& name) {
52
1.15M
    sink_deps.push_back(std::make_shared<Dependency>(dest_id, node_id, name + "_DEPENDENCY", true));
53
1.15M
    sink_deps.back()->set_shared_state(this);
54
1.15M
    return sink_deps.back().get();
55
1.15M
}
56
57
5.04M
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.04M
    _blocked_task.push_back(task);
62
5.04M
}
63
64
26.8M
void Dependency::set_ready() {
65
26.8M
    if (_ready) {
66
22.1M
        return;
67
22.1M
    }
68
4.68M
    std::vector<std::weak_ptr<PipelineTask>> local_block_task {};
69
4.68M
    {
70
4.68M
        std::unique_lock<std::mutex> lc(_task_lock);
71
4.68M
        if (_ready) {
72
0
            return;
73
0
        }
74
4.68M
        _watcher.stop();
75
4.68M
        _ready = true;
76
4.68M
        local_block_task.swap(_blocked_task);
77
4.68M
    }
78
5.05M
    for (auto task : local_block_task) {
79
5.05M
        if (auto t = task.lock()) {
80
5.05M
            std::unique_lock<std::mutex> lc(_task_lock);
81
5.05M
            t->wake_up(this, lc);
82
5.05M
        }
83
5.05M
    }
84
4.68M
}
85
86
93.0M
Dependency* Dependency::is_blocked_by(std::shared_ptr<PipelineTask> task) {
87
93.0M
    std::unique_lock<std::mutex> lc(_task_lock);
88
93.0M
    auto ready = _ready.load();
89
93.0M
    if (!ready && task) {
90
5.05M
        _add_block_task(task);
91
5.05M
        start_watcher();
92
5.05M
        THROW_IF_ERROR(task->blocked(this, lc));
93
5.05M
    }
94
93.0M
    return ready ? nullptr : this;
95
93.0M
}
96
97
119k
std::string Dependency::debug_string(int indentation_level) {
98
119k
    fmt::memory_buffer debug_string_buffer;
99
119k
    fmt::format_to(debug_string_buffer, "{}{}: id={}, block task = {}, ready={}, _always_ready={}",
100
119k
                   std::string(indentation_level * 2, ' '), _name, _node_id, _blocked_task.size(),
101
119k
                   _ready, _always_ready);
102
119k
    return fmt::to_string(debug_string_buffer);
103
119k
}
104
105
14
std::string CountedFinishDependency::debug_string(int indentation_level) {
106
14
    fmt::memory_buffer debug_string_buffer;
107
14
    fmt::format_to(debug_string_buffer,
108
14
                   "{}{}: id={}, block_task={}, ready={}, _always_ready={}, count={}",
109
14
                   std::string(indentation_level * 2, ' '), _name, _node_id, _blocked_task.size(),
110
14
                   _ready, _always_ready, _counter);
111
14
    return fmt::to_string(debug_string_buffer);
112
14
}
113
114
438
void RuntimeFilterTimer::call_timeout() {
115
438
    _parent->set_ready();
116
438
}
117
118
38.8k
void RuntimeFilterTimer::call_ready() {
119
38.8k
    _parent->set_ready();
120
38.8k
}
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
3.85M
bool RuntimeFilterTimer::should_be_check_timeout() {
126
3.85M
    if (!_parent->ready() && !_local_runtime_filter_dependencies.empty()) {
127
6.13k
        bool all_ready = true;
128
6.15k
        for (auto& dep : _local_runtime_filter_dependencies) {
129
6.15k
            if (!dep->ready()) {
130
6.12k
                all_ready = false;
131
6.12k
                break;
132
6.12k
            }
133
6.15k
        }
134
6.13k
        if (all_ready) {
135
14
            _local_runtime_filter_dependencies.clear();
136
14
            _registration_time = MonotonicMillis();
137
14
        }
138
6.13k
        return all_ready;
139
6.13k
    }
140
3.85M
    return true;
141
3.85M
}
142
143
8
void RuntimeFilterTimerQueue::start() {
144
284k
    while (!_stop) {
145
284k
        std::unique_lock<std::mutex> lk(cv_m);
146
147
289k
        while (_que.empty() && !_stop) {
148
10.4k
            cv.wait_for(lk, std::chrono::seconds(3), [this] { return !_que.empty() || _stop; });
149
5.20k
        }
150
284k
        if (_stop) {
151
3
            break;
152
3
        }
153
284k
        {
154
284k
            std::unique_lock<std::mutex> lc(_que_lock);
155
284k
            std::list<std::shared_ptr<RuntimeFilterTimer>> new_que;
156
3.85M
            for (auto& it : _que) {
157
3.85M
                if (it.use_count() == 1) {
158
                    // `use_count == 1` means this runtime filter has been released
159
3.85M
                } else if (it->should_be_check_timeout()) {
160
3.85M
                    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
3.81M
                        int64_t ms_since_registration = MonotonicMillis() - it->registration_time();
163
3.81M
                        if (ms_since_registration > it->wait_time_ms()) {
164
438
                            it->call_timeout();
165
3.81M
                        } else {
166
3.81M
                            new_que.push_back(std::move(it));
167
3.81M
                        }
168
3.81M
                    }
169
3.85M
                } else {
170
6.12k
                    new_que.push_back(std::move(it));
171
6.12k
                }
172
3.85M
            }
173
284k
            new_que.swap(_que);
174
284k
        }
175
284k
        std::this_thread::sleep_for(std::chrono::milliseconds(interval));
176
284k
    }
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
114k
        _set_always_ready();
184
114k
    }
185
284k
}
186
187
711k
void LocalExchangeSharedState::sub_running_source_operators() {
188
711k
    std::unique_lock<std::mutex> lc(le_lock);
189
711k
    if (exchanger->_running_source_operators.fetch_sub(1) == 1) {
190
114k
        _set_always_ready();
191
114k
        exchanger->finalize();
192
114k
    }
193
711k
}
194
195
114k
LocalExchangeSharedState::LocalExchangeSharedState(int num_instances) {
196
114k
    source_deps.resize(num_instances, nullptr);
197
114k
    mem_counters.resize(num_instances, nullptr);
198
114k
}
199
200
152
MutableColumns AggSharedState::_get_keys_hash_table() {
201
152
    return std::visit(
202
152
            Overload {[&](std::monostate& arg) {
203
0
                          throw doris::Exception(ErrorCode::INTERNAL_ERROR, "uninited hash table");
204
0
                          return MutableColumns();
205
0
                      },
206
152
                      [&](auto&& agg_method) -> MutableColumns {
207
152
                          MutableColumns key_columns;
208
399
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
247
                              key_columns.emplace_back(
210
247
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
247
                          }
212
152
                          auto& data = *agg_method.hash_table;
213
152
                          bool has_null_key = data.has_null_key_data();
214
152
                          const auto size = data.size() - has_null_key;
215
152
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
152
                          std::vector<KeyType> keys(size);
217
218
152
                          uint32_t num_rows = 0;
219
152
                          auto iter = aggregate_data_container->begin();
220
152
                          {
221
94.4k
                              while (iter != aggregate_data_container->end()) {
222
94.3k
                                  keys[num_rows] = iter.get_key<KeyType>();
223
94.3k
                                  ++iter;
224
94.3k
                                  ++num_rows;
225
94.3k
                              }
226
152
                          }
227
152
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
152
                          if (has_null_key) {
229
2
                              key_columns[0]->insert_data(nullptr, 0);
230
2
                          }
231
152
                          return key_columns;
232
152
                      }},
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_16MethodSerializedI9PHHashMapINS_9StringRefEPc11DefaultHashIS5_vEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISE_EESaISH_EEOT_
Line
Count
Source
206
24
                      [&](auto&& agg_method) -> MutableColumns {
207
24
                          MutableColumns key_columns;
208
88
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
64
                              key_columns.emplace_back(
210
64
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
64
                          }
212
24
                          auto& data = *agg_method.hash_table;
213
24
                          bool has_null_key = data.has_null_key_data();
214
24
                          const auto size = data.size() - has_null_key;
215
24
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
24
                          std::vector<KeyType> keys(size);
217
218
24
                          uint32_t num_rows = 0;
219
24
                          auto iter = aggregate_data_container->begin();
220
24
                          {
221
57.1k
                              while (iter != aggregate_data_container->end()) {
222
57.1k
                                  keys[num_rows] = iter.get_key<KeyType>();
223
57.1k
                                  ++iter;
224
57.1k
                                  ++num_rows;
225
57.1k
                              }
226
24
                          }
227
24
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
24
                          if (has_null_key) {
229
0
                              key_columns[0]->insert_data(nullptr, 0);
230
0
                          }
231
24
                          return key_columns;
232
24
                      }},
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
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
65
                              while (iter != aggregate_data_container->end()) {
222
60
                                  keys[num_rows] = iter.get_key<KeyType>();
223
60
                                  ++iter;
224
60
                                  ++num_rows;
225
60
                              }
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
                      }},
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
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
11.7k
                              while (iter != aggregate_data_container->end()) {
222
11.7k
                                  keys[num_rows] = iter.get_key<KeyType>();
223
11.7k
                                  ++iter;
224
11.7k
                                  ++num_rows;
225
11.7k
                              }
226
10
                          }
227
10
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
10
                          if (has_null_key) {
229
0
                              key_columns[0]->insert_data(nullptr, 0);
230
0
                          }
231
10
                          return key_columns;
232
10
                      }},
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImPc9HashCRC32ImEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISH_EESaISK_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
11.7k
                              while (iter != aggregate_data_container->end()) {
222
11.7k
                                  keys[num_rows] = iter.get_key<KeyType>();
223
11.7k
                                  ++iter;
224
11.7k
                                  ++num_rows;
225
11.7k
                              }
226
10
                          }
227
10
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
10
                          if (has_null_key) {
229
0
                              key_columns[0]->insert_data(nullptr, 0);
230
0
                          }
231
10
                          return key_columns;
232
10
                      }},
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISJ_EESaISM_EEOT_
Line
Count
Source
206
11
                      [&](auto&& agg_method) -> MutableColumns {
207
11
                          MutableColumns key_columns;
208
22
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
11
                              key_columns.emplace_back(
210
11
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
11
                          }
212
11
                          auto& data = *agg_method.hash_table;
213
11
                          bool has_null_key = data.has_null_key_data();
214
11
                          const auto size = data.size() - has_null_key;
215
11
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
11
                          std::vector<KeyType> keys(size);
217
218
11
                          uint32_t num_rows = 0;
219
11
                          auto iter = aggregate_data_container->begin();
220
11
                          {
221
39
                              while (iter != aggregate_data_container->end()) {
222
28
                                  keys[num_rows] = iter.get_key<KeyType>();
223
28
                                  ++iter;
224
28
                                  ++num_rows;
225
28
                              }
226
11
                          }
227
11
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
11
                          if (has_null_key) {
229
1
                              key_columns[0]->insert_data(nullptr, 0);
230
1
                          }
231
11
                          return key_columns;
232
11
                      }},
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISJ_EESaISM_EEOT_
Line
Count
Source
206
20
                      [&](auto&& agg_method) -> MutableColumns {
207
20
                          MutableColumns key_columns;
208
40
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
20
                              key_columns.emplace_back(
210
20
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
20
                          }
212
20
                          auto& data = *agg_method.hash_table;
213
20
                          bool has_null_key = data.has_null_key_data();
214
20
                          const auto size = data.size() - has_null_key;
215
20
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
20
                          std::vector<KeyType> keys(size);
217
218
20
                          uint32_t num_rows = 0;
219
20
                          auto iter = aggregate_data_container->begin();
220
20
                          {
221
909
                              while (iter != aggregate_data_container->end()) {
222
889
                                  keys[num_rows] = iter.get_key<KeyType>();
223
889
                                  ++iter;
224
889
                                  ++num_rows;
225
889
                              }
226
20
                          }
227
20
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
20
                          if (has_null_key) {
229
1
                              key_columns[0]->insert_data(nullptr, 0);
230
1
                          }
231
20
                          return key_columns;
232
20
                      }},
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm128EjEENS_15DataWithNullKeyI9PHHashMapIS7_Pc9HashCRC32IS7_EEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISK_EESaISN_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
40
                              while (iter != aggregate_data_container->end()) {
222
35
                                  keys[num_rows] = iter.get_key<KeyType>();
223
35
                                  ++iter;
224
35
                                  ++num_rows;
225
35
                              }
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
                      }},
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.42k
                              while (iter != aggregate_data_container->end()) {
222
1.38k
                                  keys[num_rows] = iter.get_key<KeyType>();
223
1.38k
                                  ++iter;
224
1.38k
                                  ++num_rows;
225
1.38k
                              }
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
30
                      [&](auto&& agg_method) -> MutableColumns {
207
30
                          MutableColumns key_columns;
208
115
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
85
                              key_columns.emplace_back(
210
85
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
85
                          }
212
30
                          auto& data = *agg_method.hash_table;
213
30
                          bool has_null_key = data.has_null_key_data();
214
30
                          const auto size = data.size() - has_null_key;
215
30
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
30
                          std::vector<KeyType> keys(size);
217
218
30
                          uint32_t num_rows = 0;
219
30
                          auto iter = aggregate_data_container->begin();
220
30
                          {
221
11.2k
                              while (iter != aggregate_data_container->end()) {
222
11.2k
                                  keys[num_rows] = iter.get_key<KeyType>();
223
11.2k
                                  ++iter;
224
11.2k
                                  ++num_rows;
225
11.2k
                              }
226
30
                          }
227
30
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
30
                          if (has_null_key) {
229
0
                              key_columns[0]->insert_data(nullptr, 0);
230
0
                          }
231
30
                          return key_columns;
232
30
                      }},
233
152
            agg_data->method_variant);
234
152
}
235
236
152
void AggSharedState::build_limit_heap(size_t hash_table_size) {
237
152
    limit_columns = _get_keys_hash_table();
238
94.3k
    for (size_t i = 0; i < hash_table_size; ++i) {
239
94.2k
        limit_heap.emplace(i, limit_columns, order_directions, null_directions);
240
94.2k
    }
241
93.4k
    while (hash_table_size > limit) {
242
93.3k
        limit_heap.pop();
243
93.3k
        hash_table_size--;
244
93.3k
    }
245
152
    limit_columns_min = limit_heap.top()._row_id;
246
152
}
247
248
bool AggSharedState::do_limit_filter(Block* block, size_t num_rows,
249
268
                                     const std::vector<int>* key_locs) {
250
268
    if (num_rows) {
251
268
        cmp_res.resize(num_rows);
252
268
        need_computes.resize(num_rows);
253
268
        memset(need_computes.data(), 0, need_computes.size());
254
268
        memset(cmp_res.data(), 0, cmp_res.size());
255
256
268
        const auto key_size = null_directions.size();
257
693
        for (int i = 0; i < key_size; i++) {
258
425
            block->get_by_position(key_locs ? key_locs->operator[](i) : i)
259
425
                    .column->compare_internal(limit_columns_min, *limit_columns[i],
260
425
                                              null_directions[i], order_directions[i], cmp_res,
261
425
                                              need_computes.data());
262
425
        }
263
264
268
        auto set_computes_arr = [](auto* __restrict res, auto* __restrict computes, size_t rows) {
265
353k
            for (size_t i = 0; i < rows; ++i) {
266
353k
                computes[i] = computes[i] == res[i];
267
353k
            }
268
268
        };
269
268
        set_computes_arr(cmp_res.data(), need_computes.data(), num_rows);
270
271
268
        return std::find(need_computes.begin(), need_computes.end(), 0) != need_computes.end();
272
268
    }
273
274
0
    return false;
275
268
}
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.38k
                  std::make_unique<MultiCastDataStreamer>(pool, cast_sender_count, node_id)) {}
338
339
115k
int AggSharedState::get_slot_column_id(const AggFnEvaluator* evaluator) {
340
115k
    auto ctxs = evaluator->input_exprs_ctxs();
341
115k
    CHECK(ctxs.size() == 1 && ctxs[0]->root()->is_slot_ref())
342
0
            << "input_exprs_ctxs is invalid, input_exprs_ctx[0]="
343
0
            << ctxs[0]->root()->debug_string();
344
115k
    return ((VSlotRef*)ctxs[0]->root().get())->column_id();
345
115k
}
346
347
2.35M
void AggSharedState::_destroy_agg_status(AggregateDataPtr data) {
348
5.15M
    for (int i = 0; i < aggregate_evaluators.size(); ++i) {
349
2.79M
        aggregate_evaluators[i]->function()->destroy(data + offsets_of_aggregate_states[i]);
350
2.79M
    }
351
2.35M
}
352
353
114k
LocalExchangeSharedState::~LocalExchangeSharedState() = default;
354
355
12.1k
Status SetSharedState::update_build_not_ignore_null(const VExprContextSPtrs& ctxs) {
356
12.1k
    if (ctxs.size() > build_not_ignore_null.size()) {
357
0
        return Status::InternalError("build_not_ignore_null not initialized");
358
0
    }
359
360
101k
    for (int i = 0; i < ctxs.size(); ++i) {
361
89.1k
        build_not_ignore_null[i] = build_not_ignore_null[i] || ctxs[i]->root()->is_nullable();
362
89.1k
    }
363
364
12.1k
    return Status::OK();
365
12.1k
}
366
367
14.6k
size_t SetSharedState::get_hash_table_size() const {
368
14.6k
    size_t hash_table_size = 0;
369
14.6k
    std::visit(
370
14.6k
            [&](auto&& arg) {
371
14.6k
                using HashTableCtxType = std::decay_t<decltype(arg)>;
372
14.6k
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
373
14.6k
                    hash_table_size = arg.hash_table->size();
374
14.6k
                }
375
14.6k
            },
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRSt9monostateEEDaOT_
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_16MethodSerializedI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashIS5_vEEEEEEDaOT_
Line
Count
Source
370
13.5k
            [&](auto&& arg) {
371
13.5k
                using HashTableCtxType = std::decay_t<decltype(arg)>;
372
13.5k
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
373
13.5k
                    hash_table_size = arg.hash_table->size();
374
13.5k
                }
375
13.5k
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_19MethodStringNoCacheI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashIS5_vEEEEEEDaOT_
Line
Count
Source
370
65
            [&](auto&& arg) {
371
65
                using HashTableCtxType = std::decay_t<decltype(arg)>;
372
65
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
373
65
                    hash_table_size = arg.hash_table->size();
374
65
                }
375
65
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_19MethodStringNoCacheINS_15DataWithNullKeyI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashIS7_vEEEEEEEEEEDaOT_
Line
Count
Source
370
132
            [&](auto&& arg) {
371
132
                using HashTableCtxType = std::decay_t<decltype(arg)>;
372
132
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
373
132
                    hash_table_size = arg.hash_table->size();
374
132
                }
375
132
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIhNS_15DataWithNullKeyI9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEEEEEDaOT_
Line
Count
Source
370
20
            [&](auto&& arg) {
371
20
                using HashTableCtxType = std::decay_t<decltype(arg)>;
372
20
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
373
20
                    hash_table_size = arg.hash_table->size();
374
20
                }
375
20
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberItNS_15DataWithNullKeyI9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEEEEEDaOT_
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_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEEEEEDaOT_
Line
Count
Source
370
503
            [&](auto&& arg) {
371
503
                using HashTableCtxType = std::decay_t<decltype(arg)>;
372
503
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
373
503
                    hash_table_size = arg.hash_table->size();
374
503
                }
375
503
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEEEEEDaOT_
Line
Count
Source
370
72
            [&](auto&& arg) {
371
72
                using HashTableCtxType = std::decay_t<decltype(arg)>;
372
72
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
373
72
                    hash_table_size = arg.hash_table->size();
374
72
                }
375
72
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm128EjEENS_15DataWithNullKeyI9PHHashMapIS7_NS_14RowRefWithFlagE9HashCRC32IS7_EEEEEEEEEEDaOT_
Line
Count
Source
370
128
            [&](auto&& arg) {
371
128
                using HashTableCtxType = std::decay_t<decltype(arg)>;
372
128
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
373
128
                    hash_table_size = arg.hash_table->size();
374
128
                }
375
128
            },
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
2
            [&](auto&& arg) {
371
2
                using HashTableCtxType = std::decay_t<decltype(arg)>;
372
2
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
373
2
                    hash_table_size = arg.hash_table->size();
374
2
                }
375
2
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodOneNumberIj9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEDaOT_
Line
Count
Source
370
36
            [&](auto&& arg) {
371
36
                using HashTableCtxType = std::decay_t<decltype(arg)>;
372
36
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
373
36
                    hash_table_size = arg.hash_table->size();
374
36
                }
375
36
            },
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
18
            [&](auto&& arg) {
371
18
                using HashTableCtxType = std::decay_t<decltype(arg)>;
372
18
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
373
18
                    hash_table_size = arg.hash_table->size();
374
18
                }
375
18
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt72ENS_14RowRefWithFlagE9HashCRC32IS5_EEEEEEDaOT_
Line
Count
Source
370
26
            [&](auto&& arg) {
371
26
                using HashTableCtxType = std::decay_t<decltype(arg)>;
372
26
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
373
26
                    hash_table_size = arg.hash_table->size();
374
26
                }
375
26
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt96ENS_14RowRefWithFlagE9HashCRC32IS5_EEEEEEDaOT_
Line
Count
Source
370
64
            [&](auto&& arg) {
371
64
                using HashTableCtxType = std::decay_t<decltype(arg)>;
372
64
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
373
64
                    hash_table_size = arg.hash_table->size();
374
64
                }
375
64
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt104ENS_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
            },
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
34
            [&](auto&& arg) {
371
34
                using HashTableCtxType = std::decay_t<decltype(arg)>;
372
34
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
373
34
                    hash_table_size = arg.hash_table->size();
374
34
                }
375
34
            },
376
14.6k
            hash_table_variants->method_variant);
377
14.6k
    return hash_table_size;
378
14.6k
}
379
380
4.97k
Status SetSharedState::hash_table_init() {
381
4.97k
    std::vector<DataTypePtr> data_types;
382
40.5k
    for (size_t i = 0; i != child_exprs_lists[0].size(); ++i) {
383
35.5k
        auto& ctx = child_exprs_lists[0][i];
384
35.5k
        auto data_type = ctx->root()->data_type();
385
35.5k
        if (build_not_ignore_null[i]) {
386
35.3k
            data_type = make_nullable(data_type);
387
35.3k
        }
388
35.5k
        data_types.emplace_back(std::move(data_type));
389
35.5k
    }
390
4.97k
    return init_hash_method<SetDataVariants>(hash_table_variants.get(), data_types, true);
391
4.97k
}
392
393
3.07k
void AggSharedState::refresh_top_limit(size_t row_id, const ColumnRawPtrs& key_columns) {
394
6.15k
    for (int j = 0; j < key_columns.size(); ++j) {
395
3.08k
        limit_columns[j]->insert_from(*key_columns[j], row_id);
396
3.08k
    }
397
3.07k
    limit_heap.emplace(limit_columns[0]->size() - 1, limit_columns, order_directions,
398
3.07k
                       null_directions);
399
400
3.07k
    limit_heap.pop();
401
3.07k
    limit_columns_min = limit_heap.top()._row_id;
402
3.07k
}
403
404
} // namespace doris