Coverage Report

Created: 2026-03-19 11:39

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
613k
                                                       const std::string& name) {
37
613k
    source_deps.push_back(std::make_shared<Dependency>(operator_id, node_id, name + "_DEPENDENCY"));
38
613k
    source_deps.back()->set_shared_state(this);
39
613k
    return source_deps.back().get();
40
613k
}
41
42
void BasicSharedState::create_source_dependencies(int num_sources, int operator_id, int node_id,
43
115k
                                                  const std::string& name) {
44
115k
    source_deps.resize(num_sources, nullptr);
45
831k
    for (auto& source_dep : source_deps) {
46
831k
        source_dep = std::make_shared<Dependency>(operator_id, node_id, name + "_DEPENDENCY");
47
831k
        source_dep->set_shared_state(this);
48
831k
    }
49
115k
}
50
51
Dependency* BasicSharedState::create_sink_dependency(int dest_id, int node_id,
52
1.20M
                                                     const std::string& name) {
53
1.20M
    sink_deps.push_back(std::make_shared<Dependency>(dest_id, node_id, name + "_DEPENDENCY", true));
54
1.20M
    sink_deps.back()->set_shared_state(this);
55
1.20M
    return sink_deps.back().get();
56
1.20M
}
57
58
4.89M
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
4.89M
    _blocked_task.push_back(task);
63
4.89M
}
64
65
77.4M
void Dependency::set_ready() {
66
77.4M
    if (_ready) {
67
75.9M
        return;
68
75.9M
    }
69
1.49M
    std::vector<std::weak_ptr<PipelineTask>> local_block_task {};
70
1.49M
    {
71
1.49M
        std::unique_lock<std::mutex> lc(_task_lock);
72
1.49M
        if (_ready) {
73
1
            return;
74
1
        }
75
1.49M
        _watcher.stop();
76
1.49M
        _ready = true;
77
1.49M
        local_block_task.swap(_blocked_task);
78
1.49M
    }
79
4.90M
    for (auto task : local_block_task) {
80
4.90M
        if (auto t = task.lock()) {
81
4.90M
            std::unique_lock<std::mutex> lc(_task_lock);
82
4.90M
            THROW_IF_ERROR(t->wake_up(this, lc));
83
4.90M
        }
84
4.90M
    }
85
1.49M
}
86
87
156M
Dependency* Dependency::is_blocked_by(std::shared_ptr<PipelineTask> task) {
88
156M
    std::unique_lock<std::mutex> lc(_task_lock);
89
156M
    auto ready = _ready.load();
90
156M
    if (!ready && task) {
91
4.90M
        _add_block_task(task);
92
4.90M
        start_watcher();
93
4.90M
        THROW_IF_ERROR(task->blocked(this, lc));
94
4.90M
    }
95
156M
    return ready ? nullptr : this;
96
156M
}
97
98
782k
std::string Dependency::debug_string(int indentation_level) {
99
782k
    fmt::memory_buffer debug_string_buffer;
100
782k
    fmt::format_to(debug_string_buffer, "{}{}: id={}, block task = {}, ready={}, _always_ready={}",
101
782k
                   std::string(indentation_level * 2, ' '), _name, _node_id, _blocked_task.size(),
102
782k
                   _ready, _always_ready);
103
782k
    return fmt::to_string(debug_string_buffer);
104
782k
}
105
106
0
std::string CountedFinishDependency::debug_string(int indentation_level) {
107
0
    fmt::memory_buffer debug_string_buffer;
108
0
    fmt::format_to(debug_string_buffer,
109
0
                   "{}{}: id={}, block_task={}, ready={}, _always_ready={}, count={}",
110
0
                   std::string(indentation_level * 2, ' '), _name, _node_id, _blocked_task.size(),
111
0
                   _ready, _always_ready, _counter);
112
0
    return fmt::to_string(debug_string_buffer);
113
0
}
114
115
402
void RuntimeFilterTimer::call_timeout() {
116
402
    _parent->set_ready();
117
402
}
118
119
77.0k
void RuntimeFilterTimer::call_ready() {
120
77.0k
    _parent->set_ready();
121
77.0k
}
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
8.40M
bool RuntimeFilterTimer::should_be_check_timeout() {
127
8.40M
    if (!_parent->ready() && !_local_runtime_filter_dependencies.empty()) {
128
576k
        bool all_ready = true;
129
576k
        for (auto& dep : _local_runtime_filter_dependencies) {
130
576k
            if (!dep->ready()) {
131
576k
                all_ready = false;
132
576k
                break;
133
576k
            }
134
576k
        }
135
576k
        if (all_ready) {
136
10
            _local_runtime_filter_dependencies.clear();
137
10
            _registration_time = MonotonicMillis();
138
10
        }
139
576k
        return all_ready;
140
576k
    }
141
7.83M
    return true;
142
8.40M
}
143
144
9
void RuntimeFilterTimerQueue::start() {
145
202k
    while (!_stop) {
146
202k
        std::unique_lock<std::mutex> lk(cv_m);
147
148
206k
        while (_que.empty() && !_stop) {
149
7.37k
            cv.wait_for(lk, std::chrono::seconds(3), [this] { return !_que.empty() || _stop; });
150
3.68k
        }
151
202k
        if (_stop) {
152
3
            break;
153
3
        }
154
202k
        {
155
202k
            std::unique_lock<std::mutex> lc(_que_lock);
156
202k
            std::list<std::shared_ptr<RuntimeFilterTimer>> new_que;
157
8.40M
            for (auto& it : _que) {
158
8.40M
                if (it.use_count() == 1) {
159
                    // `use_count == 1` means this runtime filter has been released
160
8.40M
                } else if (it->should_be_check_timeout()) {
161
7.83M
                    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
7.75M
                        int64_t ms_since_registration = MonotonicMillis() - it->registration_time();
164
7.75M
                        if (ms_since_registration > it->wait_time_ms()) {
165
402
                            it->call_timeout();
166
7.75M
                        } else {
167
7.75M
                            new_que.push_back(std::move(it));
168
7.75M
                        }
169
7.75M
                    }
170
7.83M
                } else {
171
576k
                    new_que.push_back(std::move(it));
172
576k
                }
173
8.40M
            }
174
202k
            new_que.swap(_que);
175
202k
        }
176
202k
        std::this_thread::sleep_for(std::chrono::milliseconds(interval));
177
202k
    }
178
9
    _shutdown = true;
179
9
}
180
181
395k
void LocalExchangeSharedState::sub_running_sink_operators() {
182
395k
    std::unique_lock<std::mutex> lc(le_lock);
183
395k
    if (exchanger->_running_sink_operators.fetch_sub(1) == 1) {
184
112k
        _set_always_ready();
185
112k
    }
186
395k
}
187
188
809k
void LocalExchangeSharedState::sub_running_source_operators() {
189
809k
    std::unique_lock<std::mutex> lc(le_lock);
190
809k
    if (exchanger->_running_source_operators.fetch_sub(1) == 1) {
191
112k
        _set_always_ready();
192
112k
        exchanger->finalize();
193
112k
    }
194
809k
}
195
196
112k
LocalExchangeSharedState::LocalExchangeSharedState(int num_instances) {
197
112k
    source_deps.resize(num_instances, nullptr);
198
112k
    mem_counters.resize(num_instances, nullptr);
199
112k
}
200
201
160
MutableColumns AggSharedState::_get_keys_hash_table() {
202
160
    return std::visit(
203
160
            Overload {[&](std::monostate& arg) {
204
0
                          throw doris::Exception(ErrorCode::INTERNAL_ERROR, "uninited hash table");
205
0
                          return MutableColumns();
206
0
                      },
207
160
                      [&](auto&& agg_method) -> MutableColumns {
208
160
                          MutableColumns key_columns;
209
536
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
210
376
                              key_columns.emplace_back(
211
376
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
212
376
                          }
213
160
                          auto& data = *agg_method.hash_table;
214
160
                          bool has_null_key = data.has_null_key_data();
215
160
                          const auto size = data.size() - has_null_key;
216
160
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
217
160
                          std::vector<KeyType> keys(size);
218
219
160
                          uint32_t num_rows = 0;
220
160
                          auto iter = aggregate_data_container->begin();
221
160
                          {
222
14.4k
                              while (iter != aggregate_data_container->end()) {
223
14.2k
                                  keys[num_rows] = iter.get_key<KeyType>();
224
14.2k
                                  ++iter;
225
14.2k
                                  ++num_rows;
226
14.2k
                              }
227
160
                          }
228
160
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
229
160
                          if (has_null_key) {
230
3
                              key_columns[0]->insert_data(nullptr, 0);
231
3
                          }
232
160
                          return key_columns;
233
160
                      }},
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_16MethodSerializedI9PHHashMapINS_9StringRefEPc11DefaultHashIS5_vEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISE_EESaISH_EEOT_
Line
Count
Source
207
16
                      [&](auto&& agg_method) -> MutableColumns {
208
16
                          MutableColumns key_columns;
209
80
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
210
64
                              key_columns.emplace_back(
211
64
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
212
64
                          }
213
16
                          auto& data = *agg_method.hash_table;
214
16
                          bool has_null_key = data.has_null_key_data();
215
16
                          const auto size = data.size() - has_null_key;
216
16
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
217
16
                          std::vector<KeyType> keys(size);
218
219
16
                          uint32_t num_rows = 0;
220
16
                          auto iter = aggregate_data_container->begin();
221
16
                          {
222
3.29k
                              while (iter != aggregate_data_container->end()) {
223
3.27k
                                  keys[num_rows] = iter.get_key<KeyType>();
224
3.27k
                                  ++iter;
225
3.27k
                                  ++num_rows;
226
3.27k
                              }
227
16
                          }
228
16
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
229
16
                          if (has_null_key) {
230
0
                              key_columns[0]->insert_data(nullptr, 0);
231
0
                          }
232
16
                          return key_columns;
233
16
                      }},
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
11
                              while (iter != aggregate_data_container->end()) {
223
9
                                  keys[num_rows] = iter.get_key<KeyType>();
224
9
                                  ++iter;
225
9
                                  ++num_rows;
226
9
                              }
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
4
                      [&](auto&& agg_method) -> MutableColumns {
208
4
                          MutableColumns key_columns;
209
8
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
210
4
                              key_columns.emplace_back(
211
4
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
212
4
                          }
213
4
                          auto& data = *agg_method.hash_table;
214
4
                          bool has_null_key = data.has_null_key_data();
215
4
                          const auto size = data.size() - has_null_key;
216
4
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
217
4
                          std::vector<KeyType> keys(size);
218
219
4
                          uint32_t num_rows = 0;
220
4
                          auto iter = aggregate_data_container->begin();
221
4
                          {
222
10
                              while (iter != aggregate_data_container->end()) {
223
6
                                  keys[num_rows] = iter.get_key<KeyType>();
224
6
                                  ++iter;
225
6
                                  ++num_rows;
226
6
                              }
227
4
                          }
228
4
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
229
4
                          if (has_null_key) {
230
0
                              key_columns[0]->insert_data(nullptr, 0);
231
0
                          }
232
4
                          return key_columns;
233
4
                      }},
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodOneNumberIm9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISF_EESaISI_EEOT_
Line
Count
Source
207
8
                      [&](auto&& agg_method) -> MutableColumns {
208
8
                          MutableColumns key_columns;
209
16
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
210
8
                              key_columns.emplace_back(
211
8
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
212
8
                          }
213
8
                          auto& data = *agg_method.hash_table;
214
8
                          bool has_null_key = data.has_null_key_data();
215
8
                          const auto size = data.size() - has_null_key;
216
8
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
217
8
                          std::vector<KeyType> keys(size);
218
219
8
                          uint32_t num_rows = 0;
220
8
                          auto iter = aggregate_data_container->begin();
221
8
                          {
222
43
                              while (iter != aggregate_data_container->end()) {
223
35
                                  keys[num_rows] = iter.get_key<KeyType>();
224
35
                                  ++iter;
225
35
                                  ++num_rows;
226
35
                              }
227
8
                          }
228
8
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
229
8
                          if (has_null_key) {
230
0
                              key_columns[0]->insert_data(nullptr, 0);
231
0
                          }
232
8
                          return key_columns;
233
8
                      }},
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
19
                      [&](auto&& agg_method) -> MutableColumns {
208
19
                          MutableColumns key_columns;
209
38
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
210
19
                              key_columns.emplace_back(
211
19
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
212
19
                          }
213
19
                          auto& data = *agg_method.hash_table;
214
19
                          bool has_null_key = data.has_null_key_data();
215
19
                          const auto size = data.size() - has_null_key;
216
19
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
217
19
                          std::vector<KeyType> keys(size);
218
219
19
                          uint32_t num_rows = 0;
220
19
                          auto iter = aggregate_data_container->begin();
221
19
                          {
222
1.79k
                              while (iter != aggregate_data_container->end()) {
223
1.77k
                                  keys[num_rows] = iter.get_key<KeyType>();
224
1.77k
                                  ++iter;
225
1.77k
                                  ++num_rows;
226
1.77k
                              }
227
19
                          }
228
19
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
229
19
                          if (has_null_key) {
230
1
                              key_columns[0]->insert_data(nullptr, 0);
231
1
                          }
232
19
                          return key_columns;
233
19
                      }},
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISJ_EESaISM_EEOT_
Line
Count
Source
207
23
                      [&](auto&& agg_method) -> MutableColumns {
208
23
                          MutableColumns key_columns;
209
46
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
210
23
                              key_columns.emplace_back(
211
23
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
212
23
                          }
213
23
                          auto& data = *agg_method.hash_table;
214
23
                          bool has_null_key = data.has_null_key_data();
215
23
                          const auto size = data.size() - has_null_key;
216
23
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
217
23
                          std::vector<KeyType> keys(size);
218
219
23
                          uint32_t num_rows = 0;
220
23
                          auto iter = aggregate_data_container->begin();
221
23
                          {
222
6.95k
                              while (iter != aggregate_data_container->end()) {
223
6.92k
                                  keys[num_rows] = iter.get_key<KeyType>();
224
6.92k
                                  ++iter;
225
6.92k
                                  ++num_rows;
226
6.92k
                              }
227
23
                          }
228
23
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
229
23
                          if (has_null_key) {
230
2
                              key_columns[0]->insert_data(nullptr, 0);
231
2
                          }
232
23
                          return key_columns;
233
23
                      }},
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_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_19MethodStringNoCacheINS_15DataWithNullKeyINS_13StringHashMapIPcNS_9AllocatorILb1ELb1ELb0ENS_22DefaultMemoryAllocatorELb1EEEEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISI_EESaISL_EEOT_
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.30k
                              while (iter != aggregate_data_container->end()) {
223
2.21k
                                  keys[num_rows] = iter.get_key<KeyType>();
224
2.21k
                                  ++iter;
225
2.21k
                                  ++num_rows;
226
2.21k
                              }
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
160
            agg_data->method_variant);
235
160
}
236
237
160
void AggSharedState::build_limit_heap(size_t hash_table_size) {
238
160
    limit_columns = _get_keys_hash_table();
239
14.4k
    for (size_t i = 0; i < hash_table_size; ++i) {
240
14.2k
        limit_heap.emplace(i, limit_columns, order_directions, null_directions);
241
14.2k
    }
242
13.9k
    while (hash_table_size > limit) {
243
13.7k
        limit_heap.pop();
244
13.7k
        hash_table_size--;
245
13.7k
    }
246
160
    limit_columns_min = limit_heap.top()._row_id;
247
160
}
248
249
bool AggSharedState::do_limit_filter(Block* block, size_t num_rows,
250
1.27k
                                     const std::vector<int>* key_locs) {
251
1.27k
    if (num_rows) {
252
1.27k
        cmp_res.resize(num_rows);
253
1.27k
        need_computes.resize(num_rows);
254
1.27k
        memset(need_computes.data(), 0, need_computes.size());
255
1.27k
        memset(cmp_res.data(), 0, cmp_res.size());
256
257
1.27k
        const auto key_size = null_directions.size();
258
4.48k
        for (int i = 0; i < key_size; i++) {
259
3.21k
            block->get_by_position(key_locs ? key_locs->operator[](i) : i)
260
3.21k
                    .column->compare_internal(limit_columns_min, *limit_columns[i],
261
3.21k
                                              null_directions[i], order_directions[i], cmp_res,
262
3.21k
                                              need_computes.data());
263
3.21k
        }
264
265
1.27k
        auto set_computes_arr = [](auto* __restrict res, auto* __restrict computes, size_t rows) {
266
125k
            for (size_t i = 0; i < rows; ++i) {
267
124k
                computes[i] = computes[i] == res[i];
268
124k
            }
269
1.27k
        };
270
1.27k
        set_computes_arr(cmp_res.data(), need_computes.data(), num_rows);
271
272
1.27k
        return std::find(need_computes.begin(), need_computes.end(), 0) != need_computes.end();
273
1.27k
    }
274
275
0
    return false;
276
1.27k
}
277
278
108
Status AggSharedState::reset_hash_table() {
279
108
    return std::visit(
280
108
            Overload {[&](std::monostate& arg) -> Status {
281
0
                          return Status::InternalError("Uninited hash table");
282
0
                      },
283
108
                      [&](auto& agg_method) {
284
108
                          auto& hash_table = *agg_method.hash_table;
285
108
                          using HashTableType = std::decay_t<decltype(hash_table)>;
286
287
108
                          agg_method.arena.clear();
288
108
                          agg_method.inited_iterator = false;
289
290
2.13M
                          hash_table.for_each_mapped([&](auto& mapped) {
291
2.13M
                              if (mapped) {
292
2.13M
                                  _destroy_agg_status(mapped);
293
2.13M
                                  mapped = nullptr;
294
2.13M
                              }
295
2.13M
                          });
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
2.13M
                          hash_table.for_each_mapped([&](auto& mapped) {
291
2.13M
                              if (mapped) {
292
2.13M
                                  _destroy_agg_status(mapped);
293
2.13M
                                  mapped = nullptr;
294
2.13M
                              }
295
2.13M
                          });
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_
296
297
108
                          if (hash_table.has_null_key_data()) {
298
4
                              _destroy_agg_status(
299
4
                                      hash_table.template get_null_key_data<AggregateDataPtr>());
300
4
                          }
301
302
108
                          aggregate_data_container.reset(new AggregateDataContainer(
303
108
                                  sizeof(typename HashTableType::key_type),
304
108
                                  ((total_size_of_aggregate_states + align_aggregate_states - 1) /
305
108
                                   align_aggregate_states) *
306
108
                                          align_aggregate_states));
307
108
                          agg_method.hash_table.reset(new HashTableType());
308
108
                          return Status::OK();
309
108
                      }},
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
104
                      [&](auto& agg_method) {
284
104
                          auto& hash_table = *agg_method.hash_table;
285
104
                          using HashTableType = std::decay_t<decltype(hash_table)>;
286
287
104
                          agg_method.arena.clear();
288
104
                          agg_method.inited_iterator = false;
289
290
104
                          hash_table.for_each_mapped([&](auto& mapped) {
291
104
                              if (mapped) {
292
104
                                  _destroy_agg_status(mapped);
293
104
                                  mapped = nullptr;
294
104
                              }
295
104
                          });
296
297
104
                          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
104
                          aggregate_data_container.reset(new AggregateDataContainer(
303
104
                                  sizeof(typename HashTableType::key_type),
304
104
                                  ((total_size_of_aggregate_states + align_aggregate_states - 1) /
305
104
                                   align_aggregate_states) *
306
104
                                          align_aggregate_states));
307
104
                          agg_method.hash_table.reset(new HashTableType());
308
104
                          return Status::OK();
309
104
                      }},
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
4
                      [&](auto& agg_method) {
284
4
                          auto& hash_table = *agg_method.hash_table;
285
4
                          using HashTableType = std::decay_t<decltype(hash_table)>;
286
287
4
                          agg_method.arena.clear();
288
4
                          agg_method.inited_iterator = false;
289
290
4
                          hash_table.for_each_mapped([&](auto& mapped) {
291
4
                              if (mapped) {
292
4
                                  _destroy_agg_status(mapped);
293
4
                                  mapped = nullptr;
294
4
                              }
295
4
                          });
296
297
4
                          if (hash_table.has_null_key_data()) {
298
4
                              _destroy_agg_status(
299
4
                                      hash_table.template get_null_key_data<AggregateDataPtr>());
300
4
                          }
301
302
4
                          aggregate_data_container.reset(new AggregateDataContainer(
303
4
                                  sizeof(typename HashTableType::key_type),
304
4
                                  ((total_size_of_aggregate_states + align_aggregate_states - 1) /
305
4
                                   align_aggregate_states) *
306
4
                                          align_aggregate_states));
307
4
                          agg_method.hash_table.reset(new HashTableType());
308
4
                          return Status::OK();
309
4
                      }},
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
108
            agg_data->method_variant);
311
108
}
312
313
1.25k
void PartitionedAggSharedState::close() {
314
1.25k
    for (auto& partition : _spill_partitions) {
315
64
        if (partition) {
316
8
            ExecEnv::GetInstance()->spill_file_mgr()->delete_spill_file(partition);
317
8
        }
318
64
    }
319
1.25k
    _spill_partitions.clear();
320
1.25k
}
321
322
48
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
48
    bool false_close = false;
326
48
    if (!is_closed.compare_exchange_strong(false_close, true)) {
327
13
        return;
328
13
    }
329
48
    DCHECK(!false_close && is_closed);
330
35
    sorted_spill_groups.clear();
331
35
}
332
333
MultiCastSharedState::MultiCastSharedState(ObjectPool* pool, int cast_sender_count, int node_id)
334
        : multi_cast_data_streamer(
335
4.42k
                  std::make_unique<MultiCastDataStreamer>(pool, cast_sender_count, node_id)) {}
336
337
115k
int AggSharedState::get_slot_column_id(const AggFnEvaluator* evaluator) {
338
115k
    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
115k
    return ((VSlotRef*)ctxs[0]->root().get())->column_id();
343
115k
}
344
345
4.34M
void AggSharedState::_destroy_agg_status(AggregateDataPtr data) {
346
9.82M
    for (int i = 0; i < aggregate_evaluators.size(); ++i) {
347
5.47M
        aggregate_evaluators[i]->function()->destroy(data + offsets_of_aggregate_states[i]);
348
5.47M
    }
349
4.34M
}
350
351
112k
LocalExchangeSharedState::~LocalExchangeSharedState() = default;
352
353
12.1k
Status SetSharedState::update_build_not_ignore_null(const VExprContextSPtrs& ctxs) {
354
12.1k
    if (ctxs.size() > build_not_ignore_null.size()) {
355
0
        return Status::InternalError("build_not_ignore_null not initialized");
356
0
    }
357
358
101k
    for (int i = 0; i < ctxs.size(); ++i) {
359
89.1k
        build_not_ignore_null[i] = build_not_ignore_null[i] || ctxs[i]->root()->is_nullable();
360
89.1k
    }
361
362
12.1k
    return Status::OK();
363
12.1k
}
364
365
19.6k
size_t SetSharedState::get_hash_table_size() const {
366
19.6k
    size_t hash_table_size = 0;
367
19.6k
    std::visit(
368
19.6k
            [&](auto&& arg) {
369
19.6k
                using HashTableCtxType = std::decay_t<decltype(arg)>;
370
19.6k
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
371
19.6k
                    hash_table_size = arg.hash_table->size();
372
19.6k
                }
373
19.6k
            },
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.1k
            [&](auto&& arg) {
369
18.1k
                using HashTableCtxType = std::decay_t<decltype(arg)>;
370
18.1k
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
371
18.1k
                    hash_table_size = arg.hash_table->size();
372
18.1k
                }
373
18.1k
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_19MethodStringNoCacheI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashIS5_vEEEEEEDaOT_
Line
Count
Source
368
151
            [&](auto&& arg) {
369
151
                using HashTableCtxType = std::decay_t<decltype(arg)>;
370
151
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
371
151
                    hash_table_size = arg.hash_table->size();
372
151
                }
373
151
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_19MethodStringNoCacheINS_15DataWithNullKeyI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashIS7_vEEEEEEEEEEDaOT_
Line
Count
Source
368
59
            [&](auto&& arg) {
369
59
                using HashTableCtxType = std::decay_t<decltype(arg)>;
370
59
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
371
59
                    hash_table_size = arg.hash_table->size();
372
59
                }
373
59
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIhNS_15DataWithNullKeyI9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEEEEEDaOT_
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
            },
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
666
            [&](auto&& arg) {
369
666
                using HashTableCtxType = std::decay_t<decltype(arg)>;
370
666
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
371
666
                    hash_table_size = arg.hash_table->size();
372
666
                }
373
666
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEEEEEDaOT_
Line
Count
Source
368
110
            [&](auto&& arg) {
369
110
                using HashTableCtxType = std::decay_t<decltype(arg)>;
370
110
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
371
110
                    hash_table_size = arg.hash_table->size();
372
110
                }
373
110
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm128EjEENS_15DataWithNullKeyI9PHHashMapIS7_NS_14RowRefWithFlagE9HashCRC32IS7_EEEEEEEEEEDaOT_
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
            },
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm256EjEENS_15DataWithNullKeyI9PHHashMapIS7_NS_14RowRefWithFlagE9HashCRC32IS7_EEEEEEEEEEDaOT_
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodOneNumberIh9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEDaOT_
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodOneNumberIt9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEDaOT_
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodOneNumberIj9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEDaOT_
Line
Count
Source
368
29
            [&](auto&& arg) {
369
29
                using HashTableCtxType = std::decay_t<decltype(arg)>;
370
29
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
371
29
                    hash_table_size = arg.hash_table->size();
372
29
                }
373
29
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodOneNumberIm9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEDaOT_
Line
Count
Source
368
32
            [&](auto&& arg) {
369
32
                using HashTableCtxType = std::decay_t<decltype(arg)>;
370
32
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
371
32
                    hash_table_size = arg.hash_table->size();
372
32
                }
373
32
            },
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
60
            [&](auto&& arg) {
369
60
                using HashTableCtxType = std::decay_t<decltype(arg)>;
370
60
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
371
60
                    hash_table_size = arg.hash_table->size();
372
60
                }
373
60
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt72ENS_14RowRefWithFlagE9HashCRC32IS5_EEEEEEDaOT_
Line
Count
Source
368
33
            [&](auto&& arg) {
369
33
                using HashTableCtxType = std::decay_t<decltype(arg)>;
370
33
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
371
33
                    hash_table_size = arg.hash_table->size();
372
33
                }
373
33
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt96ENS_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
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt104ENS_14RowRefWithFlagE9HashCRC32IS5_EEEEEEDaOT_
Line
Count
Source
368
45
            [&](auto&& arg) {
369
45
                using HashTableCtxType = std::decay_t<decltype(arg)>;
370
45
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
371
45
                    hash_table_size = arg.hash_table->size();
372
45
                }
373
45
            },
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEENS_14RowRefWithFlagE9HashCRC32IS7_EEEEEEDaOT_
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEENS_14RowRefWithFlagE9HashCRC32IS7_EEEEEEDaOT_
Line
Count
Source
368
8
            [&](auto&& arg) {
369
8
                using HashTableCtxType = std::decay_t<decltype(arg)>;
370
8
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
371
8
                    hash_table_size = arg.hash_table->size();
372
8
                }
373
8
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt136ENS_14RowRefWithFlagE9HashCRC32IS5_EEEEEEDaOT_
Line
Count
Source
368
76
            [&](auto&& arg) {
369
76
                using HashTableCtxType = std::decay_t<decltype(arg)>;
370
76
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
371
76
                    hash_table_size = arg.hash_table->size();
372
76
                }
373
76
            },
374
19.6k
            hash_table_variants->method_variant);
375
19.6k
    return hash_table_size;
376
19.6k
}
377
378
4.97k
Status SetSharedState::hash_table_init() {
379
4.97k
    std::vector<DataTypePtr> data_types;
380
40.7k
    for (size_t i = 0; i != child_exprs_lists[0].size(); ++i) {
381
35.7k
        auto& ctx = child_exprs_lists[0][i];
382
35.7k
        auto data_type = ctx->root()->data_type();
383
35.7k
        if (build_not_ignore_null[i]) {
384
35.5k
            data_type = make_nullable(data_type);
385
35.5k
        }
386
35.7k
        data_types.emplace_back(std::move(data_type));
387
35.7k
    }
388
4.97k
    return init_hash_method<SetDataVariants>(hash_table_variants.get(), data_types, true);
389
4.97k
}
390
391
252
void AggSharedState::refresh_top_limit(size_t row_id, const ColumnRawPtrs& key_columns) {
392
1.04k
    for (int j = 0; j < key_columns.size(); ++j) {
393
789
        limit_columns[j]->insert_from(*key_columns[j], row_id);
394
789
    }
395
252
    limit_heap.emplace(limit_columns[0]->size() - 1, limit_columns, order_directions,
396
252
                       null_directions);
397
398
252
    limit_heap.pop();
399
252
    limit_columns_min = limit_heap.top()._row_id;
400
252
}
401
402
} // namespace doris