Coverage Report

Created: 2026-04-10 04:10

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