Coverage Report

Created: 2026-03-20 13:00

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
#include "common/compile_check_begin.h"
34
35
Dependency* BasicSharedState::create_source_dependency(int operator_id, int node_id,
36
650k
                                                       const std::string& name) {
37
650k
    source_deps.push_back(std::make_shared<Dependency>(operator_id, node_id, name + "_DEPENDENCY"));
38
650k
    source_deps.back()->set_shared_state(this);
39
650k
    return source_deps.back().get();
40
650k
}
41
42
void BasicSharedState::create_source_dependencies(int num_sources, int operator_id, int node_id,
43
122k
                                                  const std::string& name) {
44
122k
    source_deps.resize(num_sources, nullptr);
45
936k
    for (auto& source_dep : source_deps) {
46
936k
        source_dep = std::make_shared<Dependency>(operator_id, node_id, name + "_DEPENDENCY");
47
936k
        source_dep->set_shared_state(this);
48
936k
    }
49
122k
}
50
51
Dependency* BasicSharedState::create_sink_dependency(int dest_id, int node_id,
52
1.34M
                                                     const std::string& name) {
53
1.34M
    sink_deps.push_back(std::make_shared<Dependency>(dest_id, node_id, name + "_DEPENDENCY", true));
54
1.34M
    sink_deps.back()->set_shared_state(this);
55
1.34M
    return sink_deps.back().get();
56
1.34M
}
57
58
5.79M
void Dependency::_add_block_task(std::shared_ptr<PipelineTask> task) {
59
18.4E
    DCHECK(_blocked_task.empty() || _blocked_task[_blocked_task.size() - 1].lock() == nullptr ||
60
18.4E
           _blocked_task[_blocked_task.size() - 1].lock().get() != task.get())
61
18.4E
            << "Duplicate task: " << task->debug_string();
62
5.79M
    _blocked_task.push_back(task);
63
5.79M
}
64
65
67.5M
void Dependency::set_ready() {
66
67.5M
    if (_ready) {
67
65.3M
        return;
68
65.3M
    }
69
2.24M
    std::vector<std::weak_ptr<PipelineTask>> local_block_task {};
70
2.24M
    {
71
2.24M
        std::unique_lock<std::mutex> lc(_task_lock);
72
2.24M
        if (_ready) {
73
561
            return;
74
561
        }
75
2.24M
        _watcher.stop();
76
2.24M
        _ready = true;
77
2.24M
        local_block_task.swap(_blocked_task);
78
2.24M
    }
79
5.81M
    for (auto task : local_block_task) {
80
5.81M
        if (auto t = task.lock()) {
81
5.81M
            std::unique_lock<std::mutex> lc(_task_lock);
82
5.81M
            THROW_IF_ERROR(t->wake_up(this, lc));
83
5.81M
        }
84
5.81M
    }
85
2.24M
}
86
87
152M
Dependency* Dependency::is_blocked_by(std::shared_ptr<PipelineTask> task) {
88
152M
    std::unique_lock<std::mutex> lc(_task_lock);
89
152M
    auto ready = _ready.load();
90
152M
    if (!ready && task) {
91
5.81M
        _add_block_task(task);
92
5.81M
        start_watcher();
93
5.81M
        THROW_IF_ERROR(task->blocked(this, lc));
94
5.81M
    }
95
152M
    return ready ? nullptr : this;
96
152M
}
97
98
382k
std::string Dependency::debug_string(int indentation_level) {
99
382k
    fmt::memory_buffer debug_string_buffer;
100
382k
    fmt::format_to(debug_string_buffer, "{}{}: id={}, block task = {}, ready={}, _always_ready={}",
101
382k
                   std::string(indentation_level * 2, ' '), _name, _node_id, _blocked_task.size(),
102
382k
                   _ready, _always_ready);
103
382k
    return fmt::to_string(debug_string_buffer);
104
382k
}
105
106
396
std::string CountedFinishDependency::debug_string(int indentation_level) {
107
396
    fmt::memory_buffer debug_string_buffer;
108
396
    fmt::format_to(debug_string_buffer,
109
396
                   "{}{}: id={}, block_task={}, ready={}, _always_ready={}, count={}",
110
396
                   std::string(indentation_level * 2, ' '), _name, _node_id, _blocked_task.size(),
111
396
                   _ready, _always_ready, _counter);
112
396
    return fmt::to_string(debug_string_buffer);
113
396
}
114
115
2.27k
void RuntimeFilterTimer::call_timeout() {
116
2.27k
    _parent->set_ready();
117
2.27k
}
118
119
86.3k
void RuntimeFilterTimer::call_ready() {
120
86.3k
    _parent->set_ready();
121
86.3k
}
122
123
// should check rf timeout in two case:
124
// 1. the rf is ready just remove the wait queue
125
// 2. if the rf have local dependency, the rf should start wait when all local dependency is ready
126
7.20M
bool RuntimeFilterTimer::should_be_check_timeout() {
127
7.20M
    if (!_parent->ready() && !_local_runtime_filter_dependencies.empty()) {
128
710k
        bool all_ready = true;
129
710k
        for (auto& dep : _local_runtime_filter_dependencies) {
130
710k
            if (!dep->ready()) {
131
710k
                all_ready = false;
132
710k
                break;
133
710k
            }
134
710k
        }
135
710k
        if (all_ready) {
136
4
            _local_runtime_filter_dependencies.clear();
137
4
            _registration_time = MonotonicMillis();
138
4
        }
139
710k
        return all_ready;
140
710k
    }
141
6.49M
    return true;
142
7.20M
}
143
144
8
void RuntimeFilterTimerQueue::start() {
145
238k
    while (!_stop) {
146
238k
        std::unique_lock<std::mutex> lk(cv_m);
147
148
245k
        while (_que.empty() && !_stop) {
149
14.0k
            cv.wait_for(lk, std::chrono::seconds(3), [this] { return !_que.empty() || _stop; });
150
7.04k
        }
151
238k
        if (_stop) {
152
3
            break;
153
3
        }
154
238k
        {
155
238k
            std::unique_lock<std::mutex> lc(_que_lock);
156
238k
            std::list<std::shared_ptr<RuntimeFilterTimer>> new_que;
157
7.20M
            for (auto& it : _que) {
158
7.20M
                if (it.use_count() == 1) {
159
                    // `use_count == 1` means this runtime filter has been released
160
7.20M
                } else if (it->should_be_check_timeout()) {
161
6.49M
                    if (it->force_wait_timeout() || it->_parent->is_blocked_by()) {
162
                        // This means runtime filter is not ready, so we call timeout or continue to poll this timer.
163
6.41M
                        int64_t ms_since_registration = MonotonicMillis() - it->registration_time();
164
6.41M
                        if (ms_since_registration > it->wait_time_ms()) {
165
2.27k
                            it->call_timeout();
166
6.41M
                        } else {
167
6.41M
                            new_que.push_back(std::move(it));
168
6.41M
                        }
169
6.41M
                    }
170
6.49M
                } else {
171
710k
                    new_que.push_back(std::move(it));
172
710k
                }
173
7.20M
            }
174
238k
            new_que.swap(_que);
175
238k
        }
176
238k
        std::this_thread::sleep_for(std::chrono::milliseconds(interval));
177
238k
    }
178
8
    _shutdown = true;
179
8
}
180
181
409k
void LocalExchangeSharedState::sub_running_sink_operators() {
182
409k
    std::unique_lock<std::mutex> lc(le_lock);
183
409k
    if (exchanger->_running_sink_operators.fetch_sub(1) == 1) {
184
119k
        _set_always_ready();
185
119k
    }
186
409k
}
187
188
915k
void LocalExchangeSharedState::sub_running_source_operators() {
189
915k
    std::unique_lock<std::mutex> lc(le_lock);
190
915k
    if (exchanger->_running_source_operators.fetch_sub(1) == 1) {
191
119k
        _set_always_ready();
192
119k
        exchanger->finalize();
193
119k
    }
194
915k
}
195
196
119k
LocalExchangeSharedState::LocalExchangeSharedState(int num_instances) {
197
119k
    source_deps.resize(num_instances, nullptr);
198
119k
    mem_counters.resize(num_instances, nullptr);
199
119k
}
200
201
300
MutableColumns AggSharedState::_get_keys_hash_table() {
202
300
    return std::visit(
203
300
            Overload {[&](std::monostate& arg) {
204
0
                          throw doris::Exception(ErrorCode::INTERNAL_ERROR, "uninited hash table");
205
0
                          return MutableColumns();
206
0
                      },
207
300
                      [&](auto&& agg_method) -> MutableColumns {
208
300
                          MutableColumns key_columns;
209
832
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
210
532
                              key_columns.emplace_back(
211
532
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
212
532
                          }
213
300
                          auto& data = *agg_method.hash_table;
214
300
                          bool has_null_key = data.has_null_key_data();
215
300
                          const auto size = data.size() - has_null_key;
216
300
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
217
300
                          std::vector<KeyType> keys(size);
218
219
300
                          uint32_t num_rows = 0;
220
300
                          auto iter = aggregate_data_container->begin();
221
300
                          {
222
37.4k
                              while (iter != aggregate_data_container->end()) {
223
37.1k
                                  keys[num_rows] = iter.get_key<KeyType>();
224
37.1k
                                  ++iter;
225
37.1k
                                  ++num_rows;
226
37.1k
                              }
227
300
                          }
228
300
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
229
300
                          if (has_null_key) {
230
4
                              key_columns[0]->insert_data(nullptr, 0);
231
4
                          }
232
300
                          return key_columns;
233
300
                      }},
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_16MethodSerializedI9PHHashMapINS_9StringRefEPc11DefaultHashIS5_vEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISE_EESaISH_EEOT_
Line
Count
Source
207
32
                      [&](auto&& agg_method) -> MutableColumns {
208
32
                          MutableColumns key_columns;
209
128
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
210
96
                              key_columns.emplace_back(
211
96
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
212
96
                          }
213
32
                          auto& data = *agg_method.hash_table;
214
32
                          bool has_null_key = data.has_null_key_data();
215
32
                          const auto size = data.size() - has_null_key;
216
32
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
217
32
                          std::vector<KeyType> keys(size);
218
219
32
                          uint32_t num_rows = 0;
220
32
                          auto iter = aggregate_data_container->begin();
221
32
                          {
222
19.6k
                              while (iter != aggregate_data_container->end()) {
223
19.5k
                                  keys[num_rows] = iter.get_key<KeyType>();
224
19.5k
                                  ++iter;
225
19.5k
                                  ++num_rows;
226
19.5k
                              }
227
32
                          }
228
32
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
229
32
                          if (has_null_key) {
230
0
                              key_columns[0]->insert_data(nullptr, 0);
231
0
                          }
232
32
                          return key_columns;
233
32
                      }},
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
207
2
                      [&](auto&& agg_method) -> MutableColumns {
208
2
                          MutableColumns key_columns;
209
4
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
210
2
                              key_columns.emplace_back(
211
2
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
212
2
                          }
213
2
                          auto& data = *agg_method.hash_table;
214
2
                          bool has_null_key = data.has_null_key_data();
215
2
                          const auto size = data.size() - has_null_key;
216
2
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
217
2
                          std::vector<KeyType> keys(size);
218
219
2
                          uint32_t num_rows = 0;
220
2
                          auto iter = aggregate_data_container->begin();
221
2
                          {
222
12
                              while (iter != aggregate_data_container->end()) {
223
10
                                  keys[num_rows] = iter.get_key<KeyType>();
224
10
                                  ++iter;
225
10
                                  ++num_rows;
226
10
                              }
227
2
                          }
228
2
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
229
2
                          if (has_null_key) {
230
0
                              key_columns[0]->insert_data(nullptr, 0);
231
0
                          }
232
2
                          return key_columns;
233
2
                      }},
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_
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodOneNumberIj9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISF_EESaISI_EEOT_
Line
Count
Source
207
10
                      [&](auto&& agg_method) -> MutableColumns {
208
10
                          MutableColumns key_columns;
209
20
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
210
10
                              key_columns.emplace_back(
211
10
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
212
10
                          }
213
10
                          auto& data = *agg_method.hash_table;
214
10
                          bool has_null_key = data.has_null_key_data();
215
10
                          const auto size = data.size() - has_null_key;
216
10
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
217
10
                          std::vector<KeyType> keys(size);
218
219
10
                          uint32_t num_rows = 0;
220
10
                          auto iter = aggregate_data_container->begin();
221
10
                          {
222
20
                              while (iter != aggregate_data_container->end()) {
223
10
                                  keys[num_rows] = iter.get_key<KeyType>();
224
10
                                  ++iter;
225
10
                                  ++num_rows;
226
10
                              }
227
10
                          }
228
10
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
229
10
                          if (has_null_key) {
230
0
                              key_columns[0]->insert_data(nullptr, 0);
231
0
                          }
232
10
                          return key_columns;
233
10
                      }},
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodOneNumberIm9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISF_EESaISI_EEOT_
Line
Count
Source
207
5
                      [&](auto&& agg_method) -> MutableColumns {
208
5
                          MutableColumns key_columns;
209
10
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
210
5
                              key_columns.emplace_back(
211
5
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
212
5
                          }
213
5
                          auto& data = *agg_method.hash_table;
214
5
                          bool has_null_key = data.has_null_key_data();
215
5
                          const auto size = data.size() - has_null_key;
216
5
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
217
5
                          std::vector<KeyType> keys(size);
218
219
5
                          uint32_t num_rows = 0;
220
5
                          auto iter = aggregate_data_container->begin();
221
5
                          {
222
29
                              while (iter != aggregate_data_container->end()) {
223
24
                                  keys[num_rows] = iter.get_key<KeyType>();
224
24
                                  ++iter;
225
24
                                  ++num_rows;
226
24
                              }
227
5
                          }
228
5
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
229
5
                          if (has_null_key) {
230
0
                              key_columns[0]->insert_data(nullptr, 0);
231
0
                          }
232
5
                          return key_columns;
233
5
                      }},
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIhNS_15DataWithNullKeyI9PHHashMapIhPc9HashCRC32IhEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISH_EESaISK_EEOT_
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
207
77
                      [&](auto&& agg_method) -> MutableColumns {
208
77
                          MutableColumns key_columns;
209
154
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
210
77
                              key_columns.emplace_back(
211
77
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
212
77
                          }
213
77
                          auto& data = *agg_method.hash_table;
214
77
                          bool has_null_key = data.has_null_key_data();
215
77
                          const auto size = data.size() - has_null_key;
216
77
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
217
77
                          std::vector<KeyType> keys(size);
218
219
77
                          uint32_t num_rows = 0;
220
77
                          auto iter = aggregate_data_container->begin();
221
77
                          {
222
7.21k
                              while (iter != aggregate_data_container->end()) {
223
7.14k
                                  keys[num_rows] = iter.get_key<KeyType>();
224
7.14k
                                  ++iter;
225
7.14k
                                  ++num_rows;
226
7.14k
                              }
227
77
                          }
228
77
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
229
77
                          if (has_null_key) {
230
3
                              key_columns[0]->insert_data(nullptr, 0);
231
3
                          }
232
77
                          return key_columns;
233
77
                      }},
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISJ_EESaISM_EEOT_
Line
Count
Source
207
54
                      [&](auto&& agg_method) -> MutableColumns {
208
54
                          MutableColumns key_columns;
209
108
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
210
54
                              key_columns.emplace_back(
211
54
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
212
54
                          }
213
54
                          auto& data = *agg_method.hash_table;
214
54
                          bool has_null_key = data.has_null_key_data();
215
54
                          const auto size = data.size() - has_null_key;
216
54
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
217
54
                          std::vector<KeyType> keys(size);
218
219
54
                          uint32_t num_rows = 0;
220
54
                          auto iter = aggregate_data_container->begin();
221
54
                          {
222
6.71k
                              while (iter != aggregate_data_container->end()) {
223
6.66k
                                  keys[num_rows] = iter.get_key<KeyType>();
224
6.66k
                                  ++iter;
225
6.66k
                                  ++num_rows;
226
6.66k
                              }
227
54
                          }
228
54
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
229
54
                          if (has_null_key) {
230
1
                              key_columns[0]->insert_data(nullptr, 0);
231
1
                          }
232
54
                          return key_columns;
233
54
                      }},
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm128EjEENS_15DataWithNullKeyI9PHHashMapIS7_Pc9HashCRC32IS7_EEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISK_EESaISN_EEOT_
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
207
32
                      [&](auto&& agg_method) -> MutableColumns {
208
32
                          MutableColumns key_columns;
209
64
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
210
32
                              key_columns.emplace_back(
211
32
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
212
32
                          }
213
32
                          auto& data = *agg_method.hash_table;
214
32
                          bool has_null_key = data.has_null_key_data();
215
32
                          const auto size = data.size() - has_null_key;
216
32
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
217
32
                          std::vector<KeyType> keys(size);
218
219
32
                          uint32_t num_rows = 0;
220
32
                          auto iter = aggregate_data_container->begin();
221
32
                          {
222
1.48k
                              while (iter != aggregate_data_container->end()) {
223
1.45k
                                  keys[num_rows] = iter.get_key<KeyType>();
224
1.45k
                                  ++iter;
225
1.45k
                                  ++num_rows;
226
1.45k
                              }
227
32
                          }
228
32
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
229
32
                          if (has_null_key) {
230
0
                              key_columns[0]->insert_data(nullptr, 0);
231
0
                          }
232
32
                          return key_columns;
233
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
207
88
                      [&](auto&& agg_method) -> MutableColumns {
208
88
                          MutableColumns key_columns;
209
344
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
210
256
                              key_columns.emplace_back(
211
256
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
212
256
                          }
213
88
                          auto& data = *agg_method.hash_table;
214
88
                          bool has_null_key = data.has_null_key_data();
215
88
                          const auto size = data.size() - has_null_key;
216
88
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
217
88
                          std::vector<KeyType> keys(size);
218
219
88
                          uint32_t num_rows = 0;
220
88
                          auto iter = aggregate_data_container->begin();
221
88
                          {
222
2.29k
                              while (iter != aggregate_data_container->end()) {
223
2.20k
                                  keys[num_rows] = iter.get_key<KeyType>();
224
2.20k
                                  ++iter;
225
2.20k
                                  ++num_rows;
226
2.20k
                              }
227
88
                          }
228
88
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
229
88
                          if (has_null_key) {
230
0
                              key_columns[0]->insert_data(nullptr, 0);
231
0
                          }
232
88
                          return key_columns;
233
88
                      }},
234
300
            agg_data->method_variant);
235
300
}
236
237
300
void AggSharedState::build_limit_heap(size_t hash_table_size) {
238
300
    limit_columns = _get_keys_hash_table();
239
37.1k
    for (size_t i = 0; i < hash_table_size; ++i) {
240
36.8k
        limit_heap.emplace(i, limit_columns, order_directions, null_directions);
241
36.8k
    }
242
35.9k
    while (hash_table_size > limit) {
243
35.6k
        limit_heap.pop();
244
35.6k
        hash_table_size--;
245
35.6k
    }
246
300
    limit_columns_min = limit_heap.top()._row_id;
247
300
}
248
249
bool AggSharedState::do_limit_filter(Block* block, size_t num_rows,
250
1.53k
                                     const std::vector<int>* key_locs) {
251
1.53k
    if (num_rows) {
252
1.53k
        cmp_res.resize(num_rows);
253
1.53k
        need_computes.resize(num_rows);
254
1.53k
        memset(need_computes.data(), 0, need_computes.size());
255
1.53k
        memset(cmp_res.data(), 0, cmp_res.size());
256
257
1.53k
        const auto key_size = null_directions.size();
258
5.13k
        for (int i = 0; i < key_size; i++) {
259
3.60k
            block->get_by_position(key_locs ? key_locs->operator[](i) : i)
260
3.60k
                    .column->compare_internal(limit_columns_min, *limit_columns[i],
261
3.60k
                                              null_directions[i], order_directions[i], cmp_res,
262
3.60k
                                              need_computes.data());
263
3.60k
        }
264
265
1.53k
        auto set_computes_arr = [](auto* __restrict res, auto* __restrict computes, size_t rows) {
266
271k
            for (size_t i = 0; i < rows; ++i) {
267
270k
                computes[i] = computes[i] == res[i];
268
270k
            }
269
1.53k
        };
270
1.53k
        set_computes_arr(cmp_res.data(), need_computes.data(), num_rows);
271
272
1.53k
        return std::find(need_computes.begin(), need_computes.end(), 0) != need_computes.end();
273
1.53k
    }
274
275
0
    return false;
276
1.53k
}
277
278
70
Status AggSharedState::reset_hash_table() {
279
70
    return std::visit(
280
70
            Overload {[&](std::monostate& arg) -> Status {
281
0
                          return Status::InternalError("Uninited hash table");
282
0
                      },
283
70
                      [&](auto& agg_method) {
284
70
                          auto& hash_table = *agg_method.hash_table;
285
70
                          using HashTableType = std::decay_t<decltype(hash_table)>;
286
287
70
                          agg_method.arena.clear();
288
70
                          agg_method.inited_iterator = false;
289
290
1.28M
                          hash_table.for_each_mapped([&](auto& mapped) {
291
1.28M
                              if (mapped) {
292
1.28M
                                  _destroy_agg_status(mapped);
293
1.28M
                                  mapped = nullptr;
294
1.28M
                              }
295
1.28M
                          });
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
290
1.06M
                          hash_table.for_each_mapped([&](auto& mapped) {
291
1.06M
                              if (mapped) {
292
1.06M
                                  _destroy_agg_status(mapped);
293
1.06M
                                  mapped = nullptr;
294
1.06M
                              }
295
1.06M
                          });
dependency.cpp:_ZZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIm9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEEDaRT_ENKUlSD_E_clIS5_EEDaSD_
Line
Count
Source
290
218k
                          hash_table.for_each_mapped([&](auto& mapped) {
291
218k
                              if (mapped) {
292
218k
                                  _destroy_agg_status(mapped);
293
218k
                                  mapped = nullptr;
294
218k
                              }
295
218k
                          });
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_
296
297
70
                          if (hash_table.has_null_key_data()) {
298
2
                              _destroy_agg_status(
299
2
                                      hash_table.template get_null_key_data<AggregateDataPtr>());
300
2
                          }
301
302
70
                          aggregate_data_container.reset(new AggregateDataContainer(
303
70
                                  sizeof(typename HashTableType::key_type),
304
70
                                  ((total_size_of_aggregate_states + align_aggregate_states - 1) /
305
70
                                   align_aggregate_states) *
306
70
                                          align_aggregate_states));
307
70
                          agg_method.hash_table.reset(new HashTableType());
308
70
                          return Status::OK();
309
70
                      }},
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
                          hash_table.for_each_mapped([&](auto& mapped) {
291
52
                              if (mapped) {
292
52
                                  _destroy_agg_status(mapped);
293
52
                                  mapped = nullptr;
294
52
                              }
295
52
                          });
296
297
52
                          if (hash_table.has_null_key_data()) {
298
0
                              _destroy_agg_status(
299
0
                                      hash_table.template get_null_key_data<AggregateDataPtr>());
300
0
                          }
301
302
52
                          aggregate_data_container.reset(new AggregateDataContainer(
303
52
                                  sizeof(typename HashTableType::key_type),
304
52
                                  ((total_size_of_aggregate_states + align_aggregate_states - 1) /
305
52
                                   align_aggregate_states) *
306
52
                                          align_aggregate_states));
307
52
                          agg_method.hash_table.reset(new HashTableType());
308
52
                          return Status::OK();
309
52
                      }},
dependency.cpp:_ZZN5doris14AggSharedState16reset_hash_tableEvENK3$_1clINS_15MethodOneNumberIm9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEEDaRT_
Line
Count
Source
283
16
                      [&](auto& agg_method) {
284
16
                          auto& hash_table = *agg_method.hash_table;
285
16
                          using HashTableType = std::decay_t<decltype(hash_table)>;
286
287
16
                          agg_method.arena.clear();
288
16
                          agg_method.inited_iterator = false;
289
290
16
                          hash_table.for_each_mapped([&](auto& mapped) {
291
16
                              if (mapped) {
292
16
                                  _destroy_agg_status(mapped);
293
16
                                  mapped = nullptr;
294
16
                              }
295
16
                          });
296
297
16
                          if (hash_table.has_null_key_data()) {
298
0
                              _destroy_agg_status(
299
0
                                      hash_table.template get_null_key_data<AggregateDataPtr>());
300
0
                          }
301
302
16
                          aggregate_data_container.reset(new AggregateDataContainer(
303
16
                                  sizeof(typename HashTableType::key_type),
304
16
                                  ((total_size_of_aggregate_states + align_aggregate_states - 1) /
305
16
                                   align_aggregate_states) *
306
16
                                          align_aggregate_states));
307
16
                          agg_method.hash_table.reset(new HashTableType());
308
16
                          return Status::OK();
309
16
                      }},
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
                          hash_table.for_each_mapped([&](auto& mapped) {
291
2
                              if (mapped) {
292
2
                                  _destroy_agg_status(mapped);
293
2
                                  mapped = nullptr;
294
2
                              }
295
2
                          });
296
297
2
                          if (hash_table.has_null_key_data()) {
298
2
                              _destroy_agg_status(
299
2
                                      hash_table.template get_null_key_data<AggregateDataPtr>());
300
2
                          }
301
302
2
                          aggregate_data_container.reset(new AggregateDataContainer(
303
2
                                  sizeof(typename HashTableType::key_type),
304
2
                                  ((total_size_of_aggregate_states + align_aggregate_states - 1) /
305
2
                                   align_aggregate_states) *
306
2
                                          align_aggregate_states));
307
2
                          agg_method.hash_table.reset(new HashTableType());
308
2
                          return Status::OK();
309
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_
310
70
            agg_data->method_variant);
311
70
}
312
313
1.26k
void PartitionedAggSharedState::close() {
314
1.26k
    for (auto& partition : _spill_partitions) {
315
32
        if (partition) {
316
4
            ExecEnv::GetInstance()->spill_file_mgr()->delete_spill_file(partition);
317
4
        }
318
32
    }
319
1.26k
    _spill_partitions.clear();
320
1.26k
}
321
322
31
void SpillSortSharedState::close() {
323
    // need to use CAS instead of only `if (!is_closed)` statement,
324
    // to avoid concurrent entry of close() both pass the if statement
325
31
    bool false_close = false;
326
31
    if (!is_closed.compare_exchange_strong(false_close, true)) {
327
10
        return;
328
10
    }
329
31
    DCHECK(!false_close && is_closed);
330
21
    sorted_spill_groups.clear();
331
21
}
332
333
MultiCastSharedState::MultiCastSharedState(ObjectPool* pool, int cast_sender_count, int node_id)
334
        : multi_cast_data_streamer(
335
3.76k
                  std::make_unique<MultiCastDataStreamer>(pool, cast_sender_count, node_id)) {}
336
337
140k
int AggSharedState::get_slot_column_id(const AggFnEvaluator* evaluator) {
338
140k
    auto ctxs = evaluator->input_exprs_ctxs();
339
18.4E
    CHECK(ctxs.size() == 1 && ctxs[0]->root()->is_slot_ref())
340
18.4E
            << "input_exprs_ctxs is invalid, input_exprs_ctx[0]="
341
18.4E
            << ctxs[0]->root()->debug_string();
342
140k
    return ((VSlotRef*)ctxs[0]->root().get())->column_id();
343
140k
}
344
345
3.73M
void AggSharedState::_destroy_agg_status(AggregateDataPtr data) {
346
8.93M
    for (int i = 0; i < aggregate_evaluators.size(); ++i) {
347
5.20M
        aggregate_evaluators[i]->function()->destroy(data + offsets_of_aggregate_states[i]);
348
5.20M
    }
349
3.73M
}
350
351
119k
LocalExchangeSharedState::~LocalExchangeSharedState() = default;
352
353
12.7k
Status SetSharedState::update_build_not_ignore_null(const VExprContextSPtrs& ctxs) {
354
12.7k
    if (ctxs.size() > build_not_ignore_null.size()) {
355
0
        return Status::InternalError("build_not_ignore_null not initialized");
356
0
    }
357
358
102k
    for (int i = 0; i < ctxs.size(); ++i) {
359
89.8k
        build_not_ignore_null[i] = build_not_ignore_null[i] || ctxs[i]->root()->is_nullable();
360
89.8k
    }
361
362
12.7k
    return Status::OK();
363
12.7k
}
364
365
20.2k
size_t SetSharedState::get_hash_table_size() const {
366
20.2k
    size_t hash_table_size = 0;
367
20.2k
    std::visit(
368
20.3k
            [&](auto&& arg) {
369
20.3k
                using HashTableCtxType = std::decay_t<decltype(arg)>;
370
20.3k
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
371
20.3k
                    hash_table_size = arg.hash_table->size();
372
20.3k
                }
373
20.3k
            },
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRSt9monostateEEDaOT_
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_16MethodSerializedI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashIS5_vEEEEEEDaOT_
Line
Count
Source
368
18.0k
            [&](auto&& arg) {
369
18.0k
                using HashTableCtxType = std::decay_t<decltype(arg)>;
370
18.0k
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
371
18.0k
                    hash_table_size = arg.hash_table->size();
372
18.0k
                }
373
18.0k
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_19MethodStringNoCacheI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashIS5_vEEEEEEDaOT_
Line
Count
Source
368
272
            [&](auto&& arg) {
369
272
                using HashTableCtxType = std::decay_t<decltype(arg)>;
370
272
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
371
272
                    hash_table_size = arg.hash_table->size();
372
272
                }
373
272
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_19MethodStringNoCacheINS_15DataWithNullKeyI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashIS7_vEEEEEEEEEEDaOT_
Line
Count
Source
368
120
            [&](auto&& arg) {
369
120
                using HashTableCtxType = std::decay_t<decltype(arg)>;
370
120
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
371
120
                    hash_table_size = arg.hash_table->size();
372
120
                }
373
120
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIhNS_15DataWithNullKeyI9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEEEEEDaOT_
Line
Count
Source
368
66
            [&](auto&& arg) {
369
66
                using HashTableCtxType = std::decay_t<decltype(arg)>;
370
66
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
371
66
                    hash_table_size = arg.hash_table->size();
372
66
                }
373
66
            },
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberItNS_15DataWithNullKeyI9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEEEEEDaOT_
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEEEEEDaOT_
Line
Count
Source
368
926
            [&](auto&& arg) {
369
926
                using HashTableCtxType = std::decay_t<decltype(arg)>;
370
926
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
371
926
                    hash_table_size = arg.hash_table->size();
372
926
                }
373
926
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEEEEEDaOT_
Line
Count
Source
368
362
            [&](auto&& arg) {
369
362
                using HashTableCtxType = std::decay_t<decltype(arg)>;
370
362
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
371
362
                    hash_table_size = arg.hash_table->size();
372
362
                }
373
362
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm128EjEENS_15DataWithNullKeyI9PHHashMapIS7_NS_14RowRefWithFlagE9HashCRC32IS7_EEEEEEEEEEDaOT_
Line
Count
Source
368
36
            [&](auto&& arg) {
369
36
                using HashTableCtxType = std::decay_t<decltype(arg)>;
370
36
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
371
36
                    hash_table_size = arg.hash_table->size();
372
36
                }
373
36
            },
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
368
96
            [&](auto&& arg) {
369
96
                using HashTableCtxType = std::decay_t<decltype(arg)>;
370
96
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
371
96
                    hash_table_size = arg.hash_table->size();
372
96
                }
373
96
            },
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodOneNumberIt9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEDaOT_
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodOneNumberIj9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEDaOT_
Line
Count
Source
368
30
            [&](auto&& arg) {
369
30
                using HashTableCtxType = std::decay_t<decltype(arg)>;
370
30
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
371
30
                    hash_table_size = arg.hash_table->size();
372
30
                }
373
30
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodOneNumberIm9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEDaOT_
Line
Count
Source
368
28
            [&](auto&& arg) {
369
28
                using HashTableCtxType = std::decay_t<decltype(arg)>;
370
28
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
371
28
                    hash_table_size = arg.hash_table->size();
372
28
                }
373
28
            },
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
368
123
            [&](auto&& arg) {
369
123
                using HashTableCtxType = std::decay_t<decltype(arg)>;
370
123
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
371
123
                    hash_table_size = arg.hash_table->size();
372
123
                }
373
123
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt72ENS_14RowRefWithFlagE9HashCRC32IS5_EEEEEEDaOT_
Line
Count
Source
368
48
            [&](auto&& arg) {
369
48
                using HashTableCtxType = std::decay_t<decltype(arg)>;
370
48
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
371
48
                    hash_table_size = arg.hash_table->size();
372
48
                }
373
48
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt96ENS_14RowRefWithFlagE9HashCRC32IS5_EEEEEEDaOT_
Line
Count
Source
368
42
            [&](auto&& arg) {
369
42
                using HashTableCtxType = std::decay_t<decltype(arg)>;
370
42
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
371
42
                    hash_table_size = arg.hash_table->size();
372
42
                }
373
42
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt104ENS_14RowRefWithFlagE9HashCRC32IS5_EEEEEEDaOT_
Line
Count
Source
368
36
            [&](auto&& arg) {
369
36
                using HashTableCtxType = std::decay_t<decltype(arg)>;
370
36
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
371
36
                    hash_table_size = arg.hash_table->size();
372
36
                }
373
36
            },
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
368
4
            [&](auto&& arg) {
369
4
                using HashTableCtxType = std::decay_t<decltype(arg)>;
370
4
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
371
4
                    hash_table_size = arg.hash_table->size();
372
4
                }
373
4
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt136ENS_14RowRefWithFlagE9HashCRC32IS5_EEEEEEDaOT_
Line
Count
Source
368
50
            [&](auto&& arg) {
369
50
                using HashTableCtxType = std::decay_t<decltype(arg)>;
370
50
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
371
50
                    hash_table_size = arg.hash_table->size();
372
50
                }
373
50
            },
374
20.2k
            hash_table_variants->method_variant);
375
20.2k
    return hash_table_size;
376
20.2k
}
377
378
5.20k
Status SetSharedState::hash_table_init() {
379
5.20k
    std::vector<DataTypePtr> data_types;
380
41.1k
    for (size_t i = 0; i != child_exprs_lists[0].size(); ++i) {
381
35.9k
        auto& ctx = child_exprs_lists[0][i];
382
35.9k
        auto data_type = ctx->root()->data_type();
383
35.9k
        if (build_not_ignore_null[i]) {
384
35.6k
            data_type = make_nullable(data_type);
385
35.6k
        }
386
35.9k
        data_types.emplace_back(std::move(data_type));
387
35.9k
    }
388
5.20k
    return init_hash_method<SetDataVariants>(hash_table_variants.get(), data_types, true);
389
5.20k
}
390
391
4.55k
void AggSharedState::refresh_top_limit(size_t row_id, const ColumnRawPtrs& key_columns) {
392
9.86k
    for (int j = 0; j < key_columns.size(); ++j) {
393
5.30k
        limit_columns[j]->insert_from(*key_columns[j], row_id);
394
5.30k
    }
395
4.55k
    limit_heap.emplace(limit_columns[0]->size() - 1, limit_columns, order_directions,
396
4.55k
                       null_directions);
397
398
4.55k
    limit_heap.pop();
399
4.55k
    limit_columns_min = limit_heap.top()._row_id;
400
4.55k
}
401
402
} // namespace doris