Coverage Report

Created: 2026-05-09 12:54

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
496k
                                                       const std::string& name) {
36
496k
    source_deps.push_back(std::make_shared<Dependency>(operator_id, node_id, name + "_DEPENDENCY"));
37
496k
    source_deps.back()->set_shared_state(this);
38
496k
    return source_deps.back().get();
39
496k
}
40
41
void BasicSharedState::create_source_dependencies(int num_sources, int operator_id, int node_id,
42
106k
                                                  const std::string& name) {
43
106k
    source_deps.resize(num_sources, nullptr);
44
661k
    for (auto& source_dep : source_deps) {
45
661k
        source_dep = std::make_shared<Dependency>(operator_id, node_id, name + "_DEPENDENCY");
46
661k
        source_dep->set_shared_state(this);
47
661k
    }
48
106k
}
49
50
Dependency* BasicSharedState::create_sink_dependency(int dest_id, int node_id,
51
1.05M
                                                     const std::string& name) {
52
1.05M
    sink_deps.push_back(std::make_shared<Dependency>(dest_id, node_id, name + "_DEPENDENCY", true));
53
1.05M
    sink_deps.back()->set_shared_state(this);
54
1.05M
    return sink_deps.back().get();
55
1.05M
}
56
57
4.61M
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
4.61M
    _blocked_task.push_back(task);
62
4.61M
}
63
64
42.1M
void Dependency::set_ready() {
65
42.1M
    if (_ready) {
66
38.4M
        return;
67
38.4M
    }
68
3.70M
    std::vector<std::weak_ptr<PipelineTask>> local_block_task {};
69
3.70M
    {
70
3.70M
        std::unique_lock<std::mutex> lc(_task_lock);
71
3.70M
        if (_ready) {
72
479
            return;
73
479
        }
74
3.70M
        _watcher.stop();
75
3.70M
        _ready = true;
76
3.70M
        local_block_task.swap(_blocked_task);
77
3.70M
    }
78
4.62M
    for (auto task : local_block_task) {
79
4.62M
        if (auto t = task.lock()) {
80
4.62M
            std::unique_lock<std::mutex> lc(_task_lock);
81
4.62M
            t->wake_up(this, lc);
82
4.62M
        }
83
4.62M
    }
84
3.70M
}
85
86
40.9M
Dependency* Dependency::is_blocked_by(std::shared_ptr<PipelineTask> task) {
87
40.9M
    std::unique_lock<std::mutex> lc(_task_lock);
88
40.9M
    auto ready = _ready.load();
89
40.9M
    if (!ready && task) {
90
4.62M
        _add_block_task(task);
91
4.62M
        start_watcher();
92
4.62M
        THROW_IF_ERROR(task->blocked(this, lc));
93
4.62M
    }
94
40.9M
    return ready ? nullptr : this;
95
40.9M
}
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
7
std::string CountedFinishDependency::debug_string(int indentation_level) {
106
7
    fmt::memory_buffer debug_string_buffer;
107
7
    fmt::format_to(debug_string_buffer,
108
7
                   "{}{}: id={}, block_task={}, ready={}, _always_ready={}, count={}",
109
7
                   std::string(indentation_level * 2, ' '), _name, _node_id, _blocked_task.size(),
110
7
                   _ready, _always_ready, _counter);
111
7
    return fmt::to_string(debug_string_buffer);
112
7
}
113
114
197
void RuntimeFilterTimer::call_timeout() {
115
197
    _parent->set_ready();
116
197
}
117
118
43.1k
void RuntimeFilterTimer::call_ready() {
119
43.1k
    _parent->set_ready();
120
43.1k
}
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
5.35M
bool RuntimeFilterTimer::should_be_check_timeout() {
126
5.35M
    if (!_parent->ready() && !_local_runtime_filter_dependencies.empty()) {
127
7.99k
        bool all_ready = true;
128
8.02k
        for (auto& dep : _local_runtime_filter_dependencies) {
129
8.02k
            if (!dep->ready()) {
130
7.97k
                all_ready = false;
131
7.97k
                break;
132
7.97k
            }
133
8.02k
        }
134
7.99k
        if (all_ready) {
135
26
            _local_runtime_filter_dependencies.clear();
136
26
            _registration_time = MonotonicMillis();
137
26
        }
138
7.99k
        return all_ready;
139
7.99k
    }
140
5.34M
    return true;
141
5.35M
}
142
143
8
void RuntimeFilterTimerQueue::start() {
144
221k
    while (!_stop) {
145
221k
        std::unique_lock<std::mutex> lk(cv_m);
146
147
225k
        while (_que.empty() && !_stop) {
148
8.21k
            cv.wait_for(lk, std::chrono::seconds(3), [this] { return !_que.empty() || _stop; });
149
4.11k
        }
150
221k
        if (_stop) {
151
2
            break;
152
2
        }
153
221k
        {
154
221k
            std::unique_lock<std::mutex> lc(_que_lock);
155
221k
            std::list<std::shared_ptr<RuntimeFilterTimer>> new_que;
156
5.35M
            for (auto& it : _que) {
157
5.35M
                if (it.use_count() == 1) {
158
                    // `use_count == 1` means this runtime filter has been released
159
5.35M
                } else if (it->should_be_check_timeout()) {
160
5.34M
                    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
5.29M
                        int64_t ms_since_registration = MonotonicMillis() - it->registration_time();
163
5.29M
                        if (ms_since_registration > it->wait_time_ms()) {
164
197
                            it->call_timeout();
165
5.29M
                        } else {
166
5.29M
                            new_que.push_back(std::move(it));
167
5.29M
                        }
168
5.29M
                    }
169
5.34M
                } else {
170
7.97k
                    new_que.push_back(std::move(it));
171
7.97k
                }
172
5.35M
            }
173
221k
            new_que.swap(_que);
174
221k
        }
175
221k
        std::this_thread::sleep_for(std::chrono::milliseconds(interval));
176
221k
    }
177
8
    _shutdown = true;
178
8
}
179
180
258k
void LocalExchangeSharedState::sub_running_sink_operators() {
181
258k
    std::unique_lock<std::mutex> lc(le_lock);
182
258k
    if (exchanger->_running_sink_operators.fetch_sub(1) == 1) {
183
101k
        _set_always_ready();
184
101k
    }
185
258k
}
186
187
641k
void LocalExchangeSharedState::sub_running_source_operators() {
188
641k
    std::unique_lock<std::mutex> lc(le_lock);
189
641k
    if (exchanger->_running_source_operators.fetch_sub(1) == 1) {
190
101k
        _set_always_ready();
191
101k
        exchanger->finalize();
192
101k
    }
193
641k
}
194
195
101k
LocalExchangeSharedState::LocalExchangeSharedState(int num_instances) {
196
101k
    source_deps.resize(num_instances, nullptr);
197
101k
    mem_counters.resize(num_instances, nullptr);
198
101k
}
199
200
82
MutableColumns AggSharedState::_get_keys_hash_table() {
201
82
    return std::visit(
202
82
            Overload {[&](std::monostate& arg) {
203
0
                          throw doris::Exception(ErrorCode::INTERNAL_ERROR, "uninited hash table");
204
0
                          return MutableColumns();
205
0
                      },
206
82
                      [&](auto&& agg_method) -> MutableColumns {
207
82
                          MutableColumns key_columns;
208
228
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
146
                              key_columns.emplace_back(
210
146
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
146
                          }
212
82
                          auto& data = *agg_method.hash_table;
213
82
                          bool has_null_key = data.has_null_key_data();
214
82
                          const auto size = data.size() - has_null_key;
215
82
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
82
                          std::vector<KeyType> keys(size);
217
218
82
                          uint32_t num_rows = 0;
219
82
                          auto iter = aggregate_data_container->begin();
220
82
                          {
221
15.2k
                              while (iter != aggregate_data_container->end()) {
222
15.1k
                                  keys[num_rows] = iter.get_key<KeyType>();
223
15.1k
                                  ++iter;
224
15.1k
                                  ++num_rows;
225
15.1k
                              }
226
82
                          }
227
82
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
82
                          if (has_null_key) {
229
2
                              key_columns[0]->insert_data(nullptr, 0);
230
2
                          }
231
82
                          return key_columns;
232
82
                      }},
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_16MethodSerializedI9PHHashMapINS_9StringRefEPc11DefaultHashIS5_vEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISE_EESaISH_EEOT_
Line
Count
Source
206
12
                      [&](auto&& agg_method) -> MutableColumns {
207
12
                          MutableColumns key_columns;
208
44
                          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
12
                          auto& data = *agg_method.hash_table;
213
12
                          bool has_null_key = data.has_null_key_data();
214
12
                          const auto size = data.size() - has_null_key;
215
12
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
12
                          std::vector<KeyType> keys(size);
217
218
12
                          uint32_t num_rows = 0;
219
12
                          auto iter = aggregate_data_container->begin();
220
12
                          {
221
8.75k
                              while (iter != aggregate_data_container->end()) {
222
8.74k
                                  keys[num_rows] = iter.get_key<KeyType>();
223
8.74k
                                  ++iter;
224
8.74k
                                  ++num_rows;
225
8.74k
                              }
226
12
                          }
227
12
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
12
                          if (has_null_key) {
229
0
                              key_columns[0]->insert_data(nullptr, 0);
230
0
                          }
231
12
                          return key_columns;
232
12
                      }},
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_
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodOneNumberIm9PHHashMapImPc9HashCRC32ImEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISD_EESaISG_EEOT_
Line
Count
Source
206
4
                      [&](auto&& agg_method) -> MutableColumns {
207
4
                          MutableColumns key_columns;
208
8
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
4
                              key_columns.emplace_back(
210
4
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
4
                          }
212
4
                          auto& data = *agg_method.hash_table;
213
4
                          bool has_null_key = data.has_null_key_data();
214
4
                          const auto size = data.size() - has_null_key;
215
4
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
4
                          std::vector<KeyType> keys(size);
217
218
4
                          uint32_t num_rows = 0;
219
4
                          auto iter = aggregate_data_container->begin();
220
4
                          {
221
24
                              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
4
                          }
227
4
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
4
                          if (has_null_key) {
229
0
                              key_columns[0]->insert_data(nullptr, 0);
230
0
                          }
231
4
                          return key_columns;
232
4
                      }},
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
2
                      [&](auto&& agg_method) -> MutableColumns {
207
2
                          MutableColumns key_columns;
208
4
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
2
                              key_columns.emplace_back(
210
2
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
2
                          }
212
2
                          auto& data = *agg_method.hash_table;
213
2
                          bool has_null_key = data.has_null_key_data();
214
2
                          const auto size = data.size() - has_null_key;
215
2
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
2
                          std::vector<KeyType> keys(size);
217
218
2
                          uint32_t num_rows = 0;
219
2
                          auto iter = aggregate_data_container->begin();
220
2
                          {
221
14
                              while (iter != aggregate_data_container->end()) {
222
12
                                  keys[num_rows] = iter.get_key<KeyType>();
223
12
                                  ++iter;
224
12
                                  ++num_rows;
225
12
                              }
226
2
                          }
227
2
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
2
                          if (has_null_key) {
229
0
                              key_columns[0]->insert_data(nullptr, 0);
230
0
                          }
231
2
                          return key_columns;
232
2
                      }},
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIhNS_15DataWithNullKeyI9PHHashMapIhPc9HashCRC32IhEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISH_EESaISK_EEOT_
Line
Count
Source
206
4
                      [&](auto&& agg_method) -> MutableColumns {
207
4
                          MutableColumns key_columns;
208
8
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
4
                              key_columns.emplace_back(
210
4
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
4
                          }
212
4
                          auto& data = *agg_method.hash_table;
213
4
                          bool has_null_key = data.has_null_key_data();
214
4
                          const auto size = data.size() - has_null_key;
215
4
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
4
                          std::vector<KeyType> keys(size);
217
218
4
                          uint32_t num_rows = 0;
219
4
                          auto iter = aggregate_data_container->begin();
220
4
                          {
221
16
                              while (iter != aggregate_data_container->end()) {
222
12
                                  keys[num_rows] = iter.get_key<KeyType>();
223
12
                                  ++iter;
224
12
                                  ++num_rows;
225
12
                              }
226
4
                          }
227
4
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
4
                          if (has_null_key) {
229
0
                              key_columns[0]->insert_data(nullptr, 0);
230
0
                          }
231
4
                          return key_columns;
232
4
                      }},
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberItNS_15DataWithNullKeyI9PHHashMapItPc9HashCRC32ItEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISH_EESaISK_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjPc9HashCRC32IjEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISH_EESaISK_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImPc9HashCRC32ImEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISH_EESaISK_EEOT_
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISJ_EESaISM_EEOT_
Line
Count
Source
206
12
                      [&](auto&& agg_method) -> MutableColumns {
207
12
                          MutableColumns key_columns;
208
24
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
12
                              key_columns.emplace_back(
210
12
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
12
                          }
212
12
                          auto& data = *agg_method.hash_table;
213
12
                          bool has_null_key = data.has_null_key_data();
214
12
                          const auto size = data.size() - has_null_key;
215
12
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
12
                          std::vector<KeyType> keys(size);
217
218
12
                          uint32_t num_rows = 0;
219
12
                          auto iter = aggregate_data_container->begin();
220
12
                          {
221
1.33k
                              while (iter != aggregate_data_container->end()) {
222
1.32k
                                  keys[num_rows] = iter.get_key<KeyType>();
223
1.32k
                                  ++iter;
224
1.32k
                                  ++num_rows;
225
1.32k
                              }
226
12
                          }
227
12
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
12
                          if (has_null_key) {
229
1
                              key_columns[0]->insert_data(nullptr, 0);
230
1
                          }
231
12
                          return key_columns;
232
12
                      }},
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISJ_EESaISM_EEOT_
Line
Count
Source
206
7
                      [&](auto&& agg_method) -> MutableColumns {
207
7
                          MutableColumns key_columns;
208
14
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
7
                              key_columns.emplace_back(
210
7
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
7
                          }
212
7
                          auto& data = *agg_method.hash_table;
213
7
                          bool has_null_key = data.has_null_key_data();
214
7
                          const auto size = data.size() - has_null_key;
215
7
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
7
                          std::vector<KeyType> keys(size);
217
218
7
                          uint32_t num_rows = 0;
219
7
                          auto iter = aggregate_data_container->begin();
220
7
                          {
221
2.07k
                              while (iter != aggregate_data_container->end()) {
222
2.06k
                                  keys[num_rows] = iter.get_key<KeyType>();
223
2.06k
                                  ++iter;
224
2.06k
                                  ++num_rows;
225
2.06k
                              }
226
7
                          }
227
7
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
7
                          if (has_null_key) {
229
1
                              key_columns[0]->insert_data(nullptr, 0);
230
1
                          }
231
7
                          return key_columns;
232
7
                      }},
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
16
                      [&](auto&& agg_method) -> MutableColumns {
207
16
                          MutableColumns key_columns;
208
32
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
16
                              key_columns.emplace_back(
210
16
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
16
                          }
212
16
                          auto& data = *agg_method.hash_table;
213
16
                          bool has_null_key = data.has_null_key_data();
214
16
                          const auto size = data.size() - has_null_key;
215
16
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
16
                          std::vector<KeyType> keys(size);
217
218
16
                          uint32_t num_rows = 0;
219
16
                          auto iter = aggregate_data_container->begin();
220
16
                          {
221
742
                              while (iter != aggregate_data_container->end()) {
222
726
                                  keys[num_rows] = iter.get_key<KeyType>();
223
726
                                  ++iter;
224
726
                                  ++num_rows;
225
726
                              }
226
16
                          }
227
16
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
16
                          if (has_null_key) {
229
0
                              key_columns[0]->insert_data(nullptr, 0);
230
0
                          }
231
16
                          return key_columns;
232
16
                      }},
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
24
                      [&](auto&& agg_method) -> MutableColumns {
207
24
                          MutableColumns key_columns;
208
92
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
68
                              key_columns.emplace_back(
210
68
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
68
                          }
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
2.25k
                              while (iter != aggregate_data_container->end()) {
222
2.23k
                                  keys[num_rows] = iter.get_key<KeyType>();
223
2.23k
                                  ++iter;
224
2.23k
                                  ++num_rows;
225
2.23k
                              }
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
                      }},
233
82
            agg_data->method_variant);
234
82
}
235
236
82
void AggSharedState::build_limit_heap(size_t hash_table_size) {
237
82
    limit_columns = _get_keys_hash_table();
238
14.9k
    for (size_t i = 0; i < hash_table_size; ++i) {
239
14.8k
        limit_heap.emplace(i, limit_columns, order_directions, null_directions);
240
14.8k
    }
241
14.6k
    while (hash_table_size > limit) {
242
14.5k
        limit_heap.pop();
243
14.5k
        hash_table_size--;
244
14.5k
    }
245
82
    limit_columns_min = limit_heap.top()._row_id;
246
82
}
247
248
bool AggSharedState::do_limit_filter(Block* block, size_t num_rows,
249
196
                                     const std::vector<int>* key_locs) {
250
196
    if (num_rows) {
251
196
        cmp_res.resize(num_rows);
252
196
        need_computes.resize(num_rows);
253
196
        memset(need_computes.data(), 0, need_computes.size());
254
196
        memset(cmp_res.data(), 0, cmp_res.size());
255
256
196
        const auto key_size = null_directions.size();
257
602
        for (int i = 0; i < key_size; i++) {
258
406
            block->get_by_position(key_locs ? key_locs->operator[](i) : i)
259
406
                    .column->compare_internal(limit_columns_min, *limit_columns[i],
260
406
                                              null_directions[i], order_directions[i], cmp_res,
261
406
                                              need_computes.data());
262
406
        }
263
264
196
        auto set_computes_arr = [](auto* __restrict res, auto* __restrict computes, size_t rows) {
265
43.6k
            for (size_t i = 0; i < rows; ++i) {
266
43.4k
                computes[i] = computes[i] == res[i];
267
43.4k
            }
268
196
        };
269
196
        set_computes_arr(cmp_res.data(), need_computes.data(), num_rows);
270
271
196
        return std::find(need_computes.begin(), need_computes.end(), 0) != need_computes.end();
272
196
    }
273
274
0
    return false;
275
196
}
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
386
void PartitionedAggSharedState::close() {
316
386
    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
386
    _spill_partitions.clear();
322
386
}
323
324
37
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
37
    bool false_close = false;
328
37
    if (!is_closed.compare_exchange_strong(false_close, true)) {
329
13
        return;
330
13
    }
331
37
    DCHECK(!false_close && is_closed);
332
24
    sorted_spill_groups.clear();
333
24
}
334
335
MultiCastSharedState::MultiCastSharedState(ObjectPool* pool, int cast_sender_count, int node_id)
336
        : multi_cast_data_streamer(
337
3.06k
                  std::make_unique<MultiCastDataStreamer>(pool, cast_sender_count, node_id)) {}
338
339
104k
int AggSharedState::get_slot_column_id(const AggFnEvaluator* evaluator) {
340
104k
    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
104k
    return ((VSlotRef*)ctxs[0]->root().get())->column_id();
345
104k
}
346
347
2.07M
void AggSharedState::_destroy_agg_status(AggregateDataPtr data) {
348
4.41M
    for (int i = 0; i < aggregate_evaluators.size(); ++i) {
349
2.34M
        aggregate_evaluators[i]->function()->destroy(data + offsets_of_aggregate_states[i]);
350
2.34M
    }
351
2.07M
}
352
353
46.2k
void BucketedAggSharedState::_destroy_agg_status(AggregateDataPtr data) {
354
46.2k
    DCHECK(!use_simple_count) << "should not call _destroy_agg_status when use_simple_count";
355
92.8k
    for (int i = 0; i < aggregate_evaluators.size(); ++i) {
356
46.5k
        aggregate_evaluators[i]->function()->destroy(data + offsets_of_aggregate_states[i]);
357
46.5k
    }
358
46.2k
}
359
360
101k
LocalExchangeSharedState::~LocalExchangeSharedState() = default;
361
362
12.8k
Status SetSharedState::update_build_not_ignore_null(const VExprContextSPtrs& ctxs) {
363
12.8k
    if (ctxs.size() > build_not_ignore_null.size()) {
364
0
        return Status::InternalError("build_not_ignore_null not initialized");
365
0
    }
366
367
102k
    for (int i = 0; i < ctxs.size(); ++i) {
368
90.0k
        build_not_ignore_null[i] = build_not_ignore_null[i] || ctxs[i]->root()->is_nullable();
369
90.0k
    }
370
371
12.8k
    return Status::OK();
372
12.8k
}
373
374
15.5k
size_t SetSharedState::get_hash_table_size() const {
375
15.5k
    size_t hash_table_size = 0;
376
15.5k
    std::visit(
377
15.5k
            [&](auto&& arg) {
378
15.5k
                using HashTableCtxType = std::decay_t<decltype(arg)>;
379
15.5k
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
380
15.5k
                    hash_table_size = arg.hash_table->size();
381
15.5k
                }
382
15.5k
            },
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRSt9monostateEEDaOT_
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_16MethodSerializedI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashIS5_vEEEEEEDaOT_
Line
Count
Source
377
13.7k
            [&](auto&& arg) {
378
13.7k
                using HashTableCtxType = std::decay_t<decltype(arg)>;
379
13.7k
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
380
13.7k
                    hash_table_size = arg.hash_table->size();
381
13.7k
                }
382
13.7k
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_19MethodStringNoCacheI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashIS5_vEEEEEEDaOT_
Line
Count
Source
377
74
            [&](auto&& arg) {
378
74
                using HashTableCtxType = std::decay_t<decltype(arg)>;
379
74
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
380
74
                    hash_table_size = arg.hash_table->size();
381
74
                }
382
74
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_19MethodStringNoCacheINS_15DataWithNullKeyI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashIS7_vEEEEEEEEEEDaOT_
Line
Count
Source
377
112
            [&](auto&& arg) {
378
112
                using HashTableCtxType = std::decay_t<decltype(arg)>;
379
112
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
380
112
                    hash_table_size = arg.hash_table->size();
381
112
                }
382
112
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIhNS_15DataWithNullKeyI9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEEEEEDaOT_
Line
Count
Source
377
20
            [&](auto&& arg) {
378
20
                using HashTableCtxType = std::decay_t<decltype(arg)>;
379
20
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
380
20
                    hash_table_size = arg.hash_table->size();
381
20
                }
382
20
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberItNS_15DataWithNullKeyI9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEEEEEDaOT_
Line
Count
Source
377
8
            [&](auto&& arg) {
378
8
                using HashTableCtxType = std::decay_t<decltype(arg)>;
379
8
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
380
8
                    hash_table_size = arg.hash_table->size();
381
8
                }
382
8
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEEEEEDaOT_
Line
Count
Source
377
1.05k
            [&](auto&& arg) {
378
1.05k
                using HashTableCtxType = std::decay_t<decltype(arg)>;
379
1.05k
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
380
1.05k
                    hash_table_size = arg.hash_table->size();
381
1.05k
                }
382
1.05k
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEEEEEDaOT_
Line
Count
Source
377
120
            [&](auto&& arg) {
378
120
                using HashTableCtxType = std::decay_t<decltype(arg)>;
379
120
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
380
120
                    hash_table_size = arg.hash_table->size();
381
120
                }
382
120
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm128EjEENS_15DataWithNullKeyI9PHHashMapIS7_NS_14RowRefWithFlagE9HashCRC32IS7_EEEEEEEEEEDaOT_
Line
Count
Source
377
126
            [&](auto&& arg) {
378
126
                using HashTableCtxType = std::decay_t<decltype(arg)>;
379
126
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
380
126
                    hash_table_size = arg.hash_table->size();
381
126
                }
382
126
            },
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm256EjEENS_15DataWithNullKeyI9PHHashMapIS7_NS_14RowRefWithFlagE9HashCRC32IS7_EEEEEEEEEEDaOT_
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodOneNumberIh9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEDaOT_
Line
Count
Source
377
2
            [&](auto&& arg) {
378
2
                using HashTableCtxType = std::decay_t<decltype(arg)>;
379
2
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
380
2
                    hash_table_size = arg.hash_table->size();
381
2
                }
382
2
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodOneNumberIt9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEDaOT_
Line
Count
Source
377
6
            [&](auto&& arg) {
378
6
                using HashTableCtxType = std::decay_t<decltype(arg)>;
379
6
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
380
6
                    hash_table_size = arg.hash_table->size();
381
6
                }
382
6
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodOneNumberIj9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEDaOT_
Line
Count
Source
377
36
            [&](auto&& arg) {
378
36
                using HashTableCtxType = std::decay_t<decltype(arg)>;
379
36
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
380
36
                    hash_table_size = arg.hash_table->size();
381
36
                }
382
36
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodOneNumberIm9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEDaOT_
Line
Count
Source
377
16
            [&](auto&& arg) {
378
16
                using HashTableCtxType = std::decay_t<decltype(arg)>;
379
16
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
380
16
                    hash_table_size = arg.hash_table->size();
381
16
                }
382
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
377
18
            [&](auto&& arg) {
378
18
                using HashTableCtxType = std::decay_t<decltype(arg)>;
379
18
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
380
18
                    hash_table_size = arg.hash_table->size();
381
18
                }
382
18
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt72ENS_14RowRefWithFlagE9HashCRC32IS5_EEEEEEDaOT_
Line
Count
Source
377
26
            [&](auto&& arg) {
378
26
                using HashTableCtxType = std::decay_t<decltype(arg)>;
379
26
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
380
26
                    hash_table_size = arg.hash_table->size();
381
26
                }
382
26
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt96ENS_14RowRefWithFlagE9HashCRC32IS5_EEEEEEDaOT_
Line
Count
Source
377
8
            [&](auto&& arg) {
378
8
                using HashTableCtxType = std::decay_t<decltype(arg)>;
379
8
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
380
8
                    hash_table_size = arg.hash_table->size();
381
8
                }
382
8
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt104ENS_14RowRefWithFlagE9HashCRC32IS5_EEEEEEDaOT_
Line
Count
Source
377
96
            [&](auto&& arg) {
378
96
                using HashTableCtxType = std::decay_t<decltype(arg)>;
379
96
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
380
96
                    hash_table_size = arg.hash_table->size();
381
96
                }
382
96
            },
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
377
4
            [&](auto&& arg) {
378
4
                using HashTableCtxType = std::decay_t<decltype(arg)>;
379
4
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
380
4
                    hash_table_size = arg.hash_table->size();
381
4
                }
382
4
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt136ENS_14RowRefWithFlagE9HashCRC32IS5_EEEEEEDaOT_
Line
Count
Source
377
42
            [&](auto&& arg) {
378
42
                using HashTableCtxType = std::decay_t<decltype(arg)>;
379
42
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
380
42
                    hash_table_size = arg.hash_table->size();
381
42
                }
382
42
            },
383
15.5k
            hash_table_variants->method_variant);
384
15.5k
    return hash_table_size;
385
15.5k
}
386
387
5.19k
Status SetSharedState::hash_table_init() {
388
5.19k
    std::vector<DataTypePtr> data_types;
389
41.2k
    for (size_t i = 0; i != child_exprs_lists[0].size(); ++i) {
390
36.0k
        auto& ctx = child_exprs_lists[0][i];
391
36.0k
        auto data_type = ctx->root()->data_type();
392
36.0k
        if (build_not_ignore_null[i]) {
393
35.8k
            data_type = make_nullable(data_type);
394
35.8k
        }
395
36.0k
        data_types.emplace_back(std::move(data_type));
396
36.0k
    }
397
5.19k
    return init_hash_method<SetDataVariants>(hash_table_variants.get(), data_types, true);
398
5.19k
}
399
400
47
void AggSharedState::refresh_top_limit(size_t row_id, const ColumnRawPtrs& key_columns) {
401
187
    for (int j = 0; j < key_columns.size(); ++j) {
402
140
        limit_columns[j]->insert_from(*key_columns[j], row_id);
403
140
    }
404
47
    limit_heap.emplace(limit_columns[0]->size() - 1, limit_columns, order_directions,
405
47
                       null_directions);
406
407
47
    limit_heap.pop();
408
47
    limit_columns_min = limit_heap.top()._row_id;
409
47
}
410
411
} // namespace doris