Coverage Report

Created: 2026-04-14 03:58

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
201k
                                                       const std::string& name) {
36
201k
    source_deps.push_back(std::make_shared<Dependency>(operator_id, node_id, name + "_DEPENDENCY"));
37
201k
    source_deps.back()->set_shared_state(this);
38
201k
    return source_deps.back().get();
39
201k
}
40
41
void BasicSharedState::create_source_dependencies(int num_sources, int operator_id, int node_id,
42
16.4k
                                                  const std::string& name) {
43
16.4k
    source_deps.resize(num_sources, nullptr);
44
131k
    for (auto& source_dep : source_deps) {
45
131k
        source_dep = std::make_shared<Dependency>(operator_id, node_id, name + "_DEPENDENCY");
46
131k
        source_dep->set_shared_state(this);
47
131k
    }
48
16.4k
}
49
50
Dependency* BasicSharedState::create_sink_dependency(int dest_id, int node_id,
51
300k
                                                     const std::string& name) {
52
300k
    sink_deps.push_back(std::make_shared<Dependency>(dest_id, node_id, name + "_DEPENDENCY", true));
53
300k
    sink_deps.back()->set_shared_state(this);
54
300k
    return sink_deps.back().get();
55
300k
}
56
57
1.12M
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
1.12M
    _blocked_task.push_back(task);
62
1.12M
}
63
64
2.16M
void Dependency::set_ready() {
65
2.16M
    if (_ready) {
66
926k
        return;
67
926k
    }
68
1.24M
    std::vector<std::weak_ptr<PipelineTask>> local_block_task {};
69
1.24M
    {
70
1.24M
        std::unique_lock<std::mutex> lc(_task_lock);
71
1.24M
        if (_ready) {
72
0
            return;
73
0
        }
74
1.24M
        _watcher.stop();
75
1.24M
        _ready = true;
76
1.24M
        local_block_task.swap(_blocked_task);
77
1.24M
    }
78
1.12M
    for (auto task : local_block_task) {
79
1.12M
        if (auto t = task.lock()) {
80
1.12M
            std::unique_lock<std::mutex> lc(_task_lock);
81
1.12M
            t->wake_up(this, lc);
82
1.12M
        }
83
1.12M
    }
84
1.24M
}
85
86
10.4M
Dependency* Dependency::is_blocked_by(std::shared_ptr<PipelineTask> task) {
87
10.4M
    std::unique_lock<std::mutex> lc(_task_lock);
88
10.4M
    auto ready = _ready.load();
89
10.4M
    if (!ready && task) {
90
1.12M
        _add_block_task(task);
91
1.12M
        start_watcher();
92
1.12M
        THROW_IF_ERROR(task->blocked(this, lc));
93
1.12M
    }
94
10.4M
    return ready ? nullptr : this;
95
10.4M
}
96
97
90.1k
std::string Dependency::debug_string(int indentation_level) {
98
90.1k
    fmt::memory_buffer debug_string_buffer;
99
90.1k
    fmt::format_to(debug_string_buffer, "{}{}: id={}, block task = {}, ready={}, _always_ready={}",
100
90.1k
                   std::string(indentation_level * 2, ' '), _name, _node_id, _blocked_task.size(),
101
90.1k
                   _ready, _always_ready);
102
90.1k
    return fmt::to_string(debug_string_buffer);
103
90.1k
}
104
105
0
std::string CountedFinishDependency::debug_string(int indentation_level) {
106
0
    fmt::memory_buffer debug_string_buffer;
107
0
    fmt::format_to(debug_string_buffer,
108
0
                   "{}{}: id={}, block_task={}, ready={}, _always_ready={}, count={}",
109
0
                   std::string(indentation_level * 2, ' '), _name, _node_id, _blocked_task.size(),
110
0
                   _ready, _always_ready, _counter);
111
0
    return fmt::to_string(debug_string_buffer);
112
0
}
113
114
0
void RuntimeFilterTimer::call_timeout() {
115
0
    _parent->set_ready();
116
0
}
117
118
1.87k
void RuntimeFilterTimer::call_ready() {
119
1.87k
    _parent->set_ready();
120
1.87k
}
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
48.3k
bool RuntimeFilterTimer::should_be_check_timeout() {
126
48.3k
    if (!_parent->ready() && !_local_runtime_filter_dependencies.empty()) {
127
0
        bool all_ready = true;
128
0
        for (auto& dep : _local_runtime_filter_dependencies) {
129
0
            if (!dep->ready()) {
130
0
                all_ready = false;
131
0
                break;
132
0
            }
133
0
        }
134
0
        if (all_ready) {
135
0
            _local_runtime_filter_dependencies.clear();
136
0
            _registration_time = MonotonicMillis();
137
0
        }
138
0
        return all_ready;
139
0
    }
140
48.3k
    return true;
141
48.3k
}
142
143
7
void RuntimeFilterTimerQueue::start() {
144
7.29k
    while (!_stop) {
145
7.28k
        std::unique_lock<std::mutex> lk(cv_m);
146
147
11.6k
        while (_que.empty() && !_stop) {
148
8.76k
            cv.wait_for(lk, std::chrono::seconds(3), [this] { return !_que.empty() || _stop; });
149
4.38k
        }
150
7.28k
        if (_stop) {
151
3
            break;
152
3
        }
153
7.28k
        {
154
7.28k
            std::unique_lock<std::mutex> lc(_que_lock);
155
7.28k
            std::list<std::shared_ptr<RuntimeFilterTimer>> new_que;
156
48.3k
            for (auto& it : _que) {
157
48.3k
                if (it.use_count() == 1) {
158
                    // `use_count == 1` means this runtime filter has been released
159
48.3k
                } else if (it->should_be_check_timeout()) {
160
48.3k
                    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
46.4k
                        int64_t ms_since_registration = MonotonicMillis() - it->registration_time();
163
46.4k
                        if (ms_since_registration > it->wait_time_ms()) {
164
0
                            it->call_timeout();
165
46.4k
                        } else {
166
46.4k
                            new_que.push_back(std::move(it));
167
46.4k
                        }
168
46.4k
                    }
169
48.3k
                } else {
170
0
                    new_que.push_back(std::move(it));
171
0
                }
172
48.3k
            }
173
7.28k
            new_que.swap(_que);
174
7.28k
        }
175
7.28k
        std::this_thread::sleep_for(std::chrono::milliseconds(interval));
176
7.28k
    }
177
7
    _shutdown = true;
178
7
}
179
180
31.2k
void LocalExchangeSharedState::sub_running_sink_operators() {
181
31.2k
    std::unique_lock<std::mutex> lc(le_lock);
182
31.2k
    if (exchanger->_running_sink_operators.fetch_sub(1) == 1) {
183
15.6k
        _set_always_ready();
184
15.6k
    }
185
31.2k
}
186
187
125k
void LocalExchangeSharedState::sub_running_source_operators() {
188
125k
    std::unique_lock<std::mutex> lc(le_lock);
189
125k
    if (exchanger->_running_source_operators.fetch_sub(1) == 1) {
190
15.6k
        _set_always_ready();
191
15.6k
        exchanger->finalize();
192
15.6k
    }
193
125k
}
194
195
15.6k
LocalExchangeSharedState::LocalExchangeSharedState(int num_instances) {
196
15.6k
    source_deps.resize(num_instances, nullptr);
197
15.6k
    mem_counters.resize(num_instances, nullptr);
198
15.6k
}
199
200
60
MutableColumns AggSharedState::_get_keys_hash_table() {
201
60
    return std::visit(
202
60
            Overload {[&](std::monostate& arg) {
203
0
                          throw doris::Exception(ErrorCode::INTERNAL_ERROR, "uninited hash table");
204
0
                          return MutableColumns();
205
0
                      },
206
60
                      [&](auto&& agg_method) -> MutableColumns {
207
60
                          MutableColumns key_columns;
208
136
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
76
                              key_columns.emplace_back(
210
76
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
76
                          }
212
60
                          auto& data = *agg_method.hash_table;
213
60
                          bool has_null_key = data.has_null_key_data();
214
60
                          const auto size = data.size() - has_null_key;
215
60
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
60
                          std::vector<KeyType> keys(size);
217
218
60
                          uint32_t num_rows = 0;
219
60
                          auto iter = aggregate_data_container->begin();
220
60
                          {
221
17.8k
                              while (iter != aggregate_data_container->end()) {
222
17.7k
                                  keys[num_rows] = iter.get_key<KeyType>();
223
17.7k
                                  ++iter;
224
17.7k
                                  ++num_rows;
225
17.7k
                              }
226
60
                          }
227
60
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
60
                          if (has_null_key) {
229
1
                              key_columns[0]->insert_data(nullptr, 0);
230
1
                          }
231
60
                          return key_columns;
232
60
                      }},
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_16MethodSerializedI9PHHashMapINS_9StringRefEPc11DefaultHashIS5_vEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISE_EESaISH_EEOT_
Line
Count
Source
206
16
                      [&](auto&& agg_method) -> MutableColumns {
207
16
                          MutableColumns key_columns;
208
48
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
32
                              key_columns.emplace_back(
210
32
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
32
                          }
212
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
16.3k
                              while (iter != aggregate_data_container->end()) {
222
16.3k
                                  keys[num_rows] = iter.get_key<KeyType>();
223
16.3k
                                  ++iter;
224
16.3k
                                  ++num_rows;
225
16.3k
                              }
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_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
2
                      [&](auto&& agg_method) -> MutableColumns {
207
2
                          MutableColumns key_columns;
208
4
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
2
                              key_columns.emplace_back(
210
2
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
2
                          }
212
2
                          auto& data = *agg_method.hash_table;
213
2
                          bool has_null_key = data.has_null_key_data();
214
2
                          const auto size = data.size() - has_null_key;
215
2
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
2
                          std::vector<KeyType> keys(size);
217
218
2
                          uint32_t num_rows = 0;
219
2
                          auto iter = aggregate_data_container->begin();
220
2
                          {
221
14
                              while (iter != aggregate_data_container->end()) {
222
12
                                  keys[num_rows] = iter.get_key<KeyType>();
223
12
                                  ++iter;
224
12
                                  ++num_rows;
225
12
                              }
226
2
                          }
227
2
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
2
                          if (has_null_key) {
229
0
                              key_columns[0]->insert_data(nullptr, 0);
230
0
                          }
231
2
                          return key_columns;
232
2
                      }},
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
206
8
                      [&](auto&& agg_method) -> MutableColumns {
207
8
                          MutableColumns key_columns;
208
16
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
8
                              key_columns.emplace_back(
210
8
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
8
                          }
212
8
                          auto& data = *agg_method.hash_table;
213
8
                          bool has_null_key = data.has_null_key_data();
214
8
                          const auto size = data.size() - has_null_key;
215
8
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
8
                          std::vector<KeyType> keys(size);
217
218
8
                          uint32_t num_rows = 0;
219
8
                          auto iter = aggregate_data_container->begin();
220
8
                          {
221
26
                              while (iter != aggregate_data_container->end()) {
222
18
                                  keys[num_rows] = iter.get_key<KeyType>();
223
18
                                  ++iter;
224
18
                                  ++num_rows;
225
18
                              }
226
8
                          }
227
8
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
8
                          if (has_null_key) {
229
0
                              key_columns[0]->insert_data(nullptr, 0);
230
0
                          }
231
8
                          return key_columns;
232
8
                      }},
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISJ_EESaISM_EEOT_
Line
Count
Source
206
2
                      [&](auto&& agg_method) -> MutableColumns {
207
2
                          MutableColumns key_columns;
208
4
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
2
                              key_columns.emplace_back(
210
2
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
2
                          }
212
2
                          auto& data = *agg_method.hash_table;
213
2
                          bool has_null_key = data.has_null_key_data();
214
2
                          const auto size = data.size() - has_null_key;
215
2
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
2
                          std::vector<KeyType> keys(size);
217
218
2
                          uint32_t num_rows = 0;
219
2
                          auto iter = aggregate_data_container->begin();
220
2
                          {
221
13
                              while (iter != aggregate_data_container->end()) {
222
11
                                  keys[num_rows] = iter.get_key<KeyType>();
223
11
                                  ++iter;
224
11
                                  ++num_rows;
225
11
                              }
226
2
                          }
227
2
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
2
                          if (has_null_key) {
229
1
                              key_columns[0]->insert_data(nullptr, 0);
230
1
                          }
231
2
                          return key_columns;
232
2
                      }},
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
32
                      [&](auto&& agg_method) -> MutableColumns {
207
32
                          MutableColumns key_columns;
208
64
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
32
                              key_columns.emplace_back(
210
32
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
32
                          }
212
32
                          auto& data = *agg_method.hash_table;
213
32
                          bool has_null_key = data.has_null_key_data();
214
32
                          const auto size = data.size() - has_null_key;
215
32
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
32
                          std::vector<KeyType> keys(size);
217
218
32
                          uint32_t num_rows = 0;
219
32
                          auto iter = aggregate_data_container->begin();
220
32
                          {
221
1.40k
                              while (iter != aggregate_data_container->end()) {
222
1.37k
                                  keys[num_rows] = iter.get_key<KeyType>();
223
1.37k
                                  ++iter;
224
1.37k
                                  ++num_rows;
225
1.37k
                              }
226
32
                          }
227
32
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
32
                          if (has_null_key) {
229
0
                              key_columns[0]->insert_data(nullptr, 0);
230
0
                          }
231
32
                          return key_columns;
232
32
                      }},
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodKeysFixedI9PHHashMapImPc9HashCRC32ImEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISD_EESaISG_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt72EPc9HashCRC32IS5_EEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISE_EESaISH_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt96EPc9HashCRC32IS5_EEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISE_EESaISH_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt104EPc9HashCRC32IS5_EEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISE_EESaISH_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEEPc9HashCRC32IS7_EEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISG_EESaISJ_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt136EPc9HashCRC32IS5_EEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISE_EESaISH_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEEPc9HashCRC32IS7_EEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISG_EESaISJ_EEOT_
233
60
            agg_data->method_variant);
234
60
}
235
236
60
void AggSharedState::build_limit_heap(size_t hash_table_size) {
237
60
    limit_columns = _get_keys_hash_table();
238
17.6k
    for (size_t i = 0; i < hash_table_size; ++i) {
239
17.6k
        limit_heap.emplace(i, limit_columns, order_directions, null_directions);
240
17.6k
    }
241
17.2k
    while (hash_table_size > limit) {
242
17.2k
        limit_heap.pop();
243
17.2k
        hash_table_size--;
244
17.2k
    }
245
60
    limit_columns_min = limit_heap.top()._row_id;
246
60
}
247
248
bool AggSharedState::do_limit_filter(Block* block, size_t num_rows,
249
182
                                     const std::vector<int>* key_locs) {
250
182
    if (num_rows) {
251
182
        cmp_res.resize(num_rows);
252
182
        need_computes.resize(num_rows);
253
182
        memset(need_computes.data(), 0, need_computes.size());
254
182
        memset(cmp_res.data(), 0, cmp_res.size());
255
256
182
        const auto key_size = null_directions.size();
257
492
        for (int i = 0; i < key_size; i++) {
258
310
            block->get_by_position(key_locs ? key_locs->operator[](i) : i)
259
310
                    .column->compare_internal(limit_columns_min, *limit_columns[i],
260
310
                                              null_directions[i], order_directions[i], cmp_res,
261
310
                                              need_computes.data());
262
310
        }
263
264
182
        auto set_computes_arr = [](auto* __restrict res, auto* __restrict computes, size_t rows) {
265
132k
            for (size_t i = 0; i < rows; ++i) {
266
132k
                computes[i] = computes[i] == res[i];
267
132k
            }
268
182
        };
269
182
        set_computes_arr(cmp_res.data(), need_computes.data(), num_rows);
270
271
182
        return std::find(need_computes.begin(), need_computes.end(), 0) != need_computes.end();
272
182
    }
273
274
0
    return false;
275
182
}
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
84
void PartitionedAggSharedState::close() {
316
84
    for (auto& partition : _spill_partitions) {
317
32
        if (partition) {
318
4
            ExecEnv::GetInstance()->spill_file_mgr()->delete_spill_file(partition);
319
4
        }
320
32
    }
321
84
    _spill_partitions.clear();
322
84
}
323
324
19
void SpillSortSharedState::close() {
325
    // need to use CAS instead of only `if (!is_closed)` statement,
326
    // to avoid concurrent entry of close() both pass the if statement
327
19
    bool false_close = false;
328
19
    if (!is_closed.compare_exchange_strong(false_close, true)) {
329
4
        return;
330
4
    }
331
19
    DCHECK(!false_close && is_closed);
332
15
    sorted_spill_groups.clear();
333
15
}
334
335
MultiCastSharedState::MultiCastSharedState(ObjectPool* pool, int cast_sender_count, int node_id)
336
        : multi_cast_data_streamer(
337
1.40k
                  std::make_unique<MultiCastDataStreamer>(pool, cast_sender_count, node_id)) {}
338
339
30.0k
int AggSharedState::get_slot_column_id(const AggFnEvaluator* evaluator) {
340
30.0k
    auto ctxs = evaluator->input_exprs_ctxs();
341
18.4E
    CHECK(ctxs.size() == 1 && ctxs[0]->root()->is_slot_ref())
342
18.4E
            << "input_exprs_ctxs is invalid, input_exprs_ctx[0]="
343
18.4E
            << ctxs[0]->root()->debug_string();
344
30.0k
    return ((VSlotRef*)ctxs[0]->root().get())->column_id();
345
30.0k
}
346
347
1.23M
void AggSharedState::_destroy_agg_status(AggregateDataPtr data) {
348
2.59M
    for (int i = 0; i < aggregate_evaluators.size(); ++i) {
349
1.36M
        aggregate_evaluators[i]->function()->destroy(data + offsets_of_aggregate_states[i]);
350
1.36M
    }
351
1.23M
}
352
353
15.6k
LocalExchangeSharedState::~LocalExchangeSharedState() = default;
354
355
27
Status SetSharedState::update_build_not_ignore_null(const VExprContextSPtrs& ctxs) {
356
27
    if (ctxs.size() > build_not_ignore_null.size()) {
357
0
        return Status::InternalError("build_not_ignore_null not initialized");
358
0
    }
359
360
68
    for (int i = 0; i < ctxs.size(); ++i) {
361
41
        build_not_ignore_null[i] = build_not_ignore_null[i] || ctxs[i]->root()->is_nullable();
362
41
    }
363
364
27
    return Status::OK();
365
27
}
366
367
32
size_t SetSharedState::get_hash_table_size() const {
368
32
    size_t hash_table_size = 0;
369
32
    std::visit(
370
32
            [&](auto&& arg) {
371
32
                using HashTableCtxType = std::decay_t<decltype(arg)>;
372
32
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
373
32
                    hash_table_size = arg.hash_table->size();
374
32
                }
375
32
            },
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRSt9monostateEEDaOT_
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_16MethodSerializedI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashIS5_vEEEEEEDaOT_
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_19MethodStringNoCacheI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashIS5_vEEEEEEDaOT_
Line
Count
Source
370
6
            [&](auto&& arg) {
371
6
                using HashTableCtxType = std::decay_t<decltype(arg)>;
372
6
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
373
6
                    hash_table_size = arg.hash_table->size();
374
6
                }
375
6
            },
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_19MethodStringNoCacheINS_15DataWithNullKeyI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashIS7_vEEEEEEEEEEDaOT_
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIhNS_15DataWithNullKeyI9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEEEEEDaOT_
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberItNS_15DataWithNullKeyI9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEEEEEDaOT_
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEEEEEDaOT_
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEEEEEDaOT_
Line
Count
Source
370
4
            [&](auto&& arg) {
371
4
                using HashTableCtxType = std::decay_t<decltype(arg)>;
372
4
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
373
4
                    hash_table_size = arg.hash_table->size();
374
4
                }
375
4
            },
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm128EjEENS_15DataWithNullKeyI9PHHashMapIS7_NS_14RowRefWithFlagE9HashCRC32IS7_EEEEEEEEEEDaOT_
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_
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodOneNumberIj9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEDaOT_
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodOneNumberIm9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEDaOT_
Line
Count
Source
370
16
            [&](auto&& arg) {
371
16
                using HashTableCtxType = std::decay_t<decltype(arg)>;
372
16
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
373
16
                    hash_table_size = arg.hash_table->size();
374
16
                }
375
16
            },
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapIS6_NS_14RowRefWithFlagE9HashCRC32IS6_EEEEEEDaOT_
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodOneNumberIN4wide7integerILm256EjEE9PHHashMapIS6_NS_14RowRefWithFlagE9HashCRC32IS6_EEEEEEDaOT_
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEDaOT_
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt72ENS_14RowRefWithFlagE9HashCRC32IS5_EEEEEEDaOT_
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt96ENS_14RowRefWithFlagE9HashCRC32IS5_EEEEEEDaOT_
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt104ENS_14RowRefWithFlagE9HashCRC32IS5_EEEEEEDaOT_
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEENS_14RowRefWithFlagE9HashCRC32IS7_EEEEEEDaOT_
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEENS_14RowRefWithFlagE9HashCRC32IS7_EEEEEEDaOT_
Line
Count
Source
370
4
            [&](auto&& arg) {
371
4
                using HashTableCtxType = std::decay_t<decltype(arg)>;
372
4
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
373
4
                    hash_table_size = arg.hash_table->size();
374
4
                }
375
4
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt136ENS_14RowRefWithFlagE9HashCRC32IS5_EEEEEEDaOT_
Line
Count
Source
370
2
            [&](auto&& arg) {
371
2
                using HashTableCtxType = std::decay_t<decltype(arg)>;
372
2
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
373
2
                    hash_table_size = arg.hash_table->size();
374
2
                }
375
2
            },
376
32
            hash_table_variants->method_variant);
377
32
    return hash_table_size;
378
32
}
379
380
12
Status SetSharedState::hash_table_init() {
381
12
    std::vector<DataTypePtr> data_types;
382
31
    for (size_t i = 0; i != child_exprs_lists[0].size(); ++i) {
383
19
        auto& ctx = child_exprs_lists[0][i];
384
19
        auto data_type = ctx->root()->data_type();
385
19
        if (build_not_ignore_null[i]) {
386
4
            data_type = make_nullable(data_type);
387
4
        }
388
19
        data_types.emplace_back(std::move(data_type));
389
19
    }
390
12
    return init_hash_method<SetDataVariants>(hash_table_variants.get(), data_types, true);
391
12
}
392
393
166
void AggSharedState::refresh_top_limit(size_t row_id, const ColumnRawPtrs& key_columns) {
394
494
    for (int j = 0; j < key_columns.size(); ++j) {
395
328
        limit_columns[j]->insert_from(*key_columns[j], row_id);
396
328
    }
397
166
    limit_heap.emplace(limit_columns[0]->size() - 1, limit_columns, order_directions,
398
166
                       null_directions);
399
400
166
    limit_heap.pop();
401
166
    limit_columns_min = limit_heap.top()._row_id;
402
166
}
403
404
} // namespace doris