Coverage Report

Created: 2026-06-23 13:52

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