Coverage Report

Created: 2026-04-13 03:36

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
567k
                                                       const std::string& name) {
36
567k
    source_deps.push_back(std::make_shared<Dependency>(operator_id, node_id, name + "_DEPENDENCY"));
37
567k
    source_deps.back()->set_shared_state(this);
38
567k
    return source_deps.back().get();
39
567k
}
40
41
void BasicSharedState::create_source_dependencies(int num_sources, int operator_id, int node_id,
42
109k
                                                  const std::string& name) {
43
109k
    source_deps.resize(num_sources, nullptr);
44
719k
    for (auto& source_dep : source_deps) {
45
719k
        source_dep = std::make_shared<Dependency>(operator_id, node_id, name + "_DEPENDENCY");
46
719k
        source_dep->set_shared_state(this);
47
719k
    }
48
109k
}
49
50
Dependency* BasicSharedState::create_sink_dependency(int dest_id, int node_id,
51
1.14M
                                                     const std::string& name) {
52
1.14M
    sink_deps.push_back(std::make_shared<Dependency>(dest_id, node_id, name + "_DEPENDENCY", true));
53
1.14M
    sink_deps.back()->set_shared_state(this);
54
1.14M
    return sink_deps.back().get();
55
1.14M
}
56
57
5.09M
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
5.09M
    _blocked_task.push_back(task);
62
5.09M
}
63
64
27.9M
void Dependency::set_ready() {
65
27.9M
    if (_ready) {
66
23.3M
        return;
67
23.3M
    }
68
4.61M
    std::vector<std::weak_ptr<PipelineTask>> local_block_task {};
69
4.61M
    {
70
4.61M
        std::unique_lock<std::mutex> lc(_task_lock);
71
4.61M
        if (_ready) {
72
3
            return;
73
3
        }
74
4.61M
        _watcher.stop();
75
4.61M
        _ready = true;
76
4.61M
        local_block_task.swap(_blocked_task);
77
4.61M
    }
78
5.10M
    for (auto task : local_block_task) {
79
5.10M
        if (auto t = task.lock()) {
80
5.10M
            std::unique_lock<std::mutex> lc(_task_lock);
81
5.10M
            t->wake_up(this, lc);
82
5.10M
        }
83
5.10M
    }
84
4.61M
}
85
86
45.4M
Dependency* Dependency::is_blocked_by(std::shared_ptr<PipelineTask> task) {
87
45.4M
    std::unique_lock<std::mutex> lc(_task_lock);
88
45.4M
    auto ready = _ready.load();
89
45.4M
    if (!ready && task) {
90
5.10M
        _add_block_task(task);
91
5.10M
        start_watcher();
92
5.10M
        THROW_IF_ERROR(task->blocked(this, lc));
93
5.10M
    }
94
45.4M
    return ready ? nullptr : this;
95
45.4M
}
96
97
108k
std::string Dependency::debug_string(int indentation_level) {
98
108k
    fmt::memory_buffer debug_string_buffer;
99
108k
    fmt::format_to(debug_string_buffer, "{}{}: id={}, block task = {}, ready={}, _always_ready={}",
100
108k
                   std::string(indentation_level * 2, ' '), _name, _node_id, _blocked_task.size(),
101
108k
                   _ready, _always_ready);
102
108k
    return fmt::to_string(debug_string_buffer);
103
108k
}
104
105
412
std::string CountedFinishDependency::debug_string(int indentation_level) {
106
412
    fmt::memory_buffer debug_string_buffer;
107
412
    fmt::format_to(debug_string_buffer,
108
412
                   "{}{}: id={}, block_task={}, ready={}, _always_ready={}, count={}",
109
412
                   std::string(indentation_level * 2, ' '), _name, _node_id, _blocked_task.size(),
110
412
                   _ready, _always_ready, _counter);
111
412
    return fmt::to_string(debug_string_buffer);
112
412
}
113
114
1.16k
void RuntimeFilterTimer::call_timeout() {
115
1.16k
    _parent->set_ready();
116
1.16k
}
117
118
40.6k
void RuntimeFilterTimer::call_ready() {
119
40.6k
    _parent->set_ready();
120
40.6k
}
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
6.36M
bool RuntimeFilterTimer::should_be_check_timeout() {
126
6.36M
    if (!_parent->ready() && !_local_runtime_filter_dependencies.empty()) {
127
5.67k
        bool all_ready = true;
128
5.69k
        for (auto& dep : _local_runtime_filter_dependencies) {
129
5.69k
            if (!dep->ready()) {
130
5.65k
                all_ready = false;
131
5.65k
                break;
132
5.65k
            }
133
5.69k
        }
134
5.67k
        if (all_ready) {
135
21
            _local_runtime_filter_dependencies.clear();
136
21
            _registration_time = MonotonicMillis();
137
21
        }
138
5.67k
        return all_ready;
139
5.67k
    }
140
6.35M
    return true;
141
6.36M
}
142
143
8
void RuntimeFilterTimerQueue::start() {
144
259k
    while (!_stop) {
145
259k
        std::unique_lock<std::mutex> lk(cv_m);
146
147
264k
        while (_que.empty() && !_stop) {
148
10.7k
            cv.wait_for(lk, std::chrono::seconds(3), [this] { return !_que.empty() || _stop; });
149
5.36k
        }
150
259k
        if (_stop) {
151
3
            break;
152
3
        }
153
259k
        {
154
259k
            std::unique_lock<std::mutex> lc(_que_lock);
155
259k
            std::list<std::shared_ptr<RuntimeFilterTimer>> new_que;
156
6.36M
            for (auto& it : _que) {
157
6.36M
                if (it.use_count() == 1) {
158
                    // `use_count == 1` means this runtime filter has been released
159
6.36M
                } else if (it->should_be_check_timeout()) {
160
6.35M
                    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
6.32M
                        int64_t ms_since_registration = MonotonicMillis() - it->registration_time();
163
6.32M
                        if (ms_since_registration > it->wait_time_ms()) {
164
1.16k
                            it->call_timeout();
165
6.31M
                        } else {
166
6.31M
                            new_que.push_back(std::move(it));
167
6.31M
                        }
168
6.32M
                    }
169
6.35M
                } else {
170
5.65k
                    new_que.push_back(std::move(it));
171
5.65k
                }
172
6.36M
            }
173
259k
            new_que.swap(_que);
174
259k
        }
175
259k
        std::this_thread::sleep_for(std::chrono::milliseconds(interval));
176
259k
    }
177
8
    _shutdown = true;
178
8
}
179
180
269k
void LocalExchangeSharedState::sub_running_sink_operators() {
181
269k
    std::unique_lock<std::mutex> lc(le_lock);
182
269k
    if (exchanger->_running_sink_operators.fetch_sub(1) == 1) {
183
104k
        _set_always_ready();
184
104k
    }
185
269k
}
186
187
695k
void LocalExchangeSharedState::sub_running_source_operators() {
188
695k
    std::unique_lock<std::mutex> lc(le_lock);
189
695k
    if (exchanger->_running_source_operators.fetch_sub(1) == 1) {
190
104k
        _set_always_ready();
191
104k
        exchanger->finalize();
192
104k
    }
193
695k
}
194
195
104k
LocalExchangeSharedState::LocalExchangeSharedState(int num_instances) {
196
104k
    source_deps.resize(num_instances, nullptr);
197
104k
    mem_counters.resize(num_instances, nullptr);
198
104k
}
199
200
338
MutableColumns AggSharedState::_get_keys_hash_table() {
201
338
    return std::visit(
202
338
            Overload {[&](std::monostate& arg) {
203
0
                          throw doris::Exception(ErrorCode::INTERNAL_ERROR, "uninited hash table");
204
0
                          return MutableColumns();
205
0
                      },
206
338
                      [&](auto&& agg_method) -> MutableColumns {
207
338
                          MutableColumns key_columns;
208
1.11k
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
779
                              key_columns.emplace_back(
210
779
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
779
                          }
212
338
                          auto& data = *agg_method.hash_table;
213
338
                          bool has_null_key = data.has_null_key_data();
214
338
                          const auto size = data.size() - has_null_key;
215
338
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
338
                          std::vector<KeyType> keys(size);
217
218
338
                          uint32_t num_rows = 0;
219
338
                          auto iter = aggregate_data_container->begin();
220
338
                          {
221
27.8k
                              while (iter != aggregate_data_container->end()) {
222
27.4k
                                  keys[num_rows] = iter.get_key<KeyType>();
223
27.4k
                                  ++iter;
224
27.4k
                                  ++num_rows;
225
27.4k
                              }
226
338
                          }
227
338
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
338
                          if (has_null_key) {
229
2
                              key_columns[0]->insert_data(nullptr, 0);
230
2
                          }
231
338
                          return key_columns;
232
338
                      }},
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_16MethodSerializedI9PHHashMapINS_9StringRefEPc11DefaultHashIS5_vEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISE_EESaISH_EEOT_
Line
Count
Source
206
48
                      [&](auto&& agg_method) -> MutableColumns {
207
48
                          MutableColumns key_columns;
208
208
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
160
                              key_columns.emplace_back(
210
160
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
160
                          }
212
48
                          auto& data = *agg_method.hash_table;
213
48
                          bool has_null_key = data.has_null_key_data();
214
48
                          const auto size = data.size() - has_null_key;
215
48
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
48
                          std::vector<KeyType> keys(size);
217
218
48
                          uint32_t num_rows = 0;
219
48
                          auto iter = aggregate_data_container->begin();
220
48
                          {
221
17.2k
                              while (iter != aggregate_data_container->end()) {
222
17.1k
                                  keys[num_rows] = iter.get_key<KeyType>();
223
17.1k
                                  ++iter;
224
17.1k
                                  ++num_rows;
225
17.1k
                              }
226
48
                          }
227
48
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
48
                          if (has_null_key) {
229
0
                              key_columns[0]->insert_data(nullptr, 0);
230
0
                          }
231
48
                          return key_columns;
232
48
                      }},
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
4
                      [&](auto&& agg_method) -> MutableColumns {
207
4
                          MutableColumns key_columns;
208
8
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
4
                              key_columns.emplace_back(
210
4
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
4
                          }
212
4
                          auto& data = *agg_method.hash_table;
213
4
                          bool has_null_key = data.has_null_key_data();
214
4
                          const auto size = data.size() - has_null_key;
215
4
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
4
                          std::vector<KeyType> keys(size);
217
218
4
                          uint32_t num_rows = 0;
219
4
                          auto iter = aggregate_data_container->begin();
220
4
                          {
221
21
                              while (iter != aggregate_data_container->end()) {
222
17
                                  keys[num_rows] = iter.get_key<KeyType>();
223
17
                                  ++iter;
224
17
                                  ++num_rows;
225
17
                              }
226
4
                          }
227
4
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
4
                          if (has_null_key) {
229
0
                              key_columns[0]->insert_data(nullptr, 0);
230
0
                          }
231
4
                          return key_columns;
232
4
                      }},
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_
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjPc9HashCRC32IjEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISH_EESaISK_EEOT_
Line
Count
Source
206
16
                      [&](auto&& agg_method) -> MutableColumns {
207
16
                          MutableColumns key_columns;
208
32
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
16
                              key_columns.emplace_back(
210
16
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
16
                          }
212
16
                          auto& data = *agg_method.hash_table;
213
16
                          bool has_null_key = data.has_null_key_data();
214
16
                          const auto size = data.size() - has_null_key;
215
16
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
16
                          std::vector<KeyType> keys(size);
217
218
16
                          uint32_t num_rows = 0;
219
16
                          auto iter = aggregate_data_container->begin();
220
16
                          {
221
1.05k
                              while (iter != aggregate_data_container->end()) {
222
1.04k
                                  keys[num_rows] = iter.get_key<KeyType>();
223
1.04k
                                  ++iter;
224
1.04k
                                  ++num_rows;
225
1.04k
                              }
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
                      }},
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImPc9HashCRC32ImEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISH_EESaISK_EEOT_
Line
Count
Source
206
16
                      [&](auto&& agg_method) -> MutableColumns {
207
16
                          MutableColumns key_columns;
208
32
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
16
                              key_columns.emplace_back(
210
16
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
16
                          }
212
16
                          auto& data = *agg_method.hash_table;
213
16
                          bool has_null_key = data.has_null_key_data();
214
16
                          const auto size = data.size() - has_null_key;
215
16
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
16
                          std::vector<KeyType> keys(size);
217
218
16
                          uint32_t num_rows = 0;
219
16
                          auto iter = aggregate_data_container->begin();
220
16
                          {
221
675
                              while (iter != aggregate_data_container->end()) {
222
659
                                  keys[num_rows] = iter.get_key<KeyType>();
223
659
                                  ++iter;
224
659
                                  ++num_rows;
225
659
                              }
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
                      }},
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIjNS_15DataWithNullKeyI9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISJ_EESaISM_EEOT_
Line
Count
Source
206
27
                      [&](auto&& agg_method) -> MutableColumns {
207
27
                          MutableColumns key_columns;
208
54
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
27
                              key_columns.emplace_back(
210
27
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
27
                          }
212
27
                          auto& data = *agg_method.hash_table;
213
27
                          bool has_null_key = data.has_null_key_data();
214
27
                          const auto size = data.size() - has_null_key;
215
27
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
27
                          std::vector<KeyType> keys(size);
217
218
27
                          uint32_t num_rows = 0;
219
27
                          auto iter = aggregate_data_container->begin();
220
27
                          {
221
99
                              while (iter != aggregate_data_container->end()) {
222
72
                                  keys[num_rows] = iter.get_key<KeyType>();
223
72
                                  ++iter;
224
72
                                  ++num_rows;
225
72
                              }
226
27
                          }
227
27
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
27
                          if (has_null_key) {
229
1
                              key_columns[0]->insert_data(nullptr, 0);
230
1
                          }
231
27
                          return key_columns;
232
27
                      }},
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISJ_EESaISM_EEOT_
Line
Count
Source
206
26
                      [&](auto&& agg_method) -> MutableColumns {
207
26
                          MutableColumns key_columns;
208
52
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
26
                              key_columns.emplace_back(
210
26
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
26
                          }
212
26
                          auto& data = *agg_method.hash_table;
213
26
                          bool has_null_key = data.has_null_key_data();
214
26
                          const auto size = data.size() - has_null_key;
215
26
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
26
                          std::vector<KeyType> keys(size);
217
218
26
                          uint32_t num_rows = 0;
219
26
                          auto iter = aggregate_data_container->begin();
220
26
                          {
221
5.05k
                              while (iter != aggregate_data_container->end()) {
222
5.03k
                                  keys[num_rows] = iter.get_key<KeyType>();
223
5.03k
                                  ++iter;
224
5.03k
                                  ++num_rows;
225
5.03k
                              }
226
26
                          }
227
26
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
26
                          if (has_null_key) {
229
1
                              key_columns[0]->insert_data(nullptr, 0);
230
1
                          }
231
26
                          return key_columns;
232
26
                      }},
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_
dependency.cpp:_ZZN5doris14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEEPc9HashCRC32IS7_EEEEEESt6vectorINS_3COWINS_7IColumnEE11mutable_ptrISG_EESaISJ_EEOT_
Line
Count
Source
206
169
                      [&](auto&& agg_method) -> MutableColumns {
207
169
                          MutableColumns key_columns;
208
667
                          for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
209
498
                              key_columns.emplace_back(
210
498
                                      probe_expr_ctxs[i]->root()->data_type()->create_column());
211
498
                          }
212
169
                          auto& data = *agg_method.hash_table;
213
169
                          bool has_null_key = data.has_null_key_data();
214
169
                          const auto size = data.size() - has_null_key;
215
169
                          using KeyType = std::decay_t<decltype(agg_method)>::Key;
216
169
                          std::vector<KeyType> keys(size);
217
218
169
                          uint32_t num_rows = 0;
219
169
                          auto iter = aggregate_data_container->begin();
220
169
                          {
221
2.28k
                              while (iter != aggregate_data_container->end()) {
222
2.11k
                                  keys[num_rows] = iter.get_key<KeyType>();
223
2.11k
                                  ++iter;
224
2.11k
                                  ++num_rows;
225
2.11k
                              }
226
169
                          }
227
169
                          agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
228
169
                          if (has_null_key) {
229
0
                              key_columns[0]->insert_data(nullptr, 0);
230
0
                          }
231
169
                          return key_columns;
232
169
                      }},
233
338
            agg_data->method_variant);
234
338
}
235
236
338
void AggSharedState::build_limit_heap(size_t hash_table_size) {
237
338
    limit_columns = _get_keys_hash_table();
238
27.6k
    for (size_t i = 0; i < hash_table_size; ++i) {
239
27.3k
        limit_heap.emplace(i, limit_columns, order_directions, null_directions);
240
27.3k
    }
241
26.3k
    while (hash_table_size > limit) {
242
26.0k
        limit_heap.pop();
243
26.0k
        hash_table_size--;
244
26.0k
    }
245
338
    limit_columns_min = limit_heap.top()._row_id;
246
338
}
247
248
bool AggSharedState::do_limit_filter(Block* block, size_t num_rows,
249
2.61k
                                     const std::vector<int>* key_locs) {
250
2.61k
    if (num_rows) {
251
2.61k
        cmp_res.resize(num_rows);
252
2.61k
        need_computes.resize(num_rows);
253
2.61k
        memset(need_computes.data(), 0, need_computes.size());
254
2.61k
        memset(cmp_res.data(), 0, cmp_res.size());
255
256
2.61k
        const auto key_size = null_directions.size();
257
9.24k
        for (int i = 0; i < key_size; i++) {
258
6.63k
            block->get_by_position(key_locs ? key_locs->operator[](i) : i)
259
6.63k
                    .column->compare_internal(limit_columns_min, *limit_columns[i],
260
6.63k
                                              null_directions[i], order_directions[i], cmp_res,
261
6.63k
                                              need_computes.data());
262
6.63k
        }
263
264
2.61k
        auto set_computes_arr = [](auto* __restrict res, auto* __restrict computes, size_t rows) {
265
624k
            for (size_t i = 0; i < rows; ++i) {
266
621k
                computes[i] = computes[i] == res[i];
267
621k
            }
268
2.61k
        };
269
2.61k
        set_computes_arr(cmp_res.data(), need_computes.data(), num_rows);
270
271
2.61k
        return std::find(need_computes.begin(), need_computes.end(), 0) != need_computes.end();
272
2.61k
    }
273
274
0
    return false;
275
2.61k
}
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
280
void PartitionedAggSharedState::close() {
316
280
    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
280
    _spill_partitions.clear();
322
280
}
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.21k
                  std::make_unique<MultiCastDataStreamer>(pool, cast_sender_count, node_id)) {}
338
339
120k
int AggSharedState::get_slot_column_id(const AggFnEvaluator* evaluator) {
340
120k
    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
120k
    return ((VSlotRef*)ctxs[0]->root().get())->column_id();
345
120k
}
346
347
2.44M
void AggSharedState::_destroy_agg_status(AggregateDataPtr data) {
348
5.24M
    for (int i = 0; i < aggregate_evaluators.size(); ++i) {
349
2.79M
        aggregate_evaluators[i]->function()->destroy(data + offsets_of_aggregate_states[i]);
350
2.79M
    }
351
2.44M
}
352
353
104k
LocalExchangeSharedState::~LocalExchangeSharedState() = default;
354
355
11.6k
Status SetSharedState::update_build_not_ignore_null(const VExprContextSPtrs& ctxs) {
356
11.6k
    if (ctxs.size() > build_not_ignore_null.size()) {
357
0
        return Status::InternalError("build_not_ignore_null not initialized");
358
0
    }
359
360
98.7k
    for (int i = 0; i < ctxs.size(); ++i) {
361
87.1k
        build_not_ignore_null[i] = build_not_ignore_null[i] || ctxs[i]->root()->is_nullable();
362
87.1k
    }
363
364
11.6k
    return Status::OK();
365
11.6k
}
366
367
19.0k
size_t SetSharedState::get_hash_table_size() const {
368
19.0k
    size_t hash_table_size = 0;
369
19.0k
    std::visit(
370
19.0k
            [&](auto&& arg) {
371
19.0k
                using HashTableCtxType = std::decay_t<decltype(arg)>;
372
19.0k
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
373
19.0k
                    hash_table_size = arg.hash_table->size();
374
19.0k
                }
375
19.0k
            },
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRSt9monostateEEDaOT_
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_16MethodSerializedI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashIS5_vEEEEEEDaOT_
Line
Count
Source
370
17.9k
            [&](auto&& arg) {
371
17.9k
                using HashTableCtxType = std::decay_t<decltype(arg)>;
372
17.9k
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
373
17.9k
                    hash_table_size = arg.hash_table->size();
374
17.9k
                }
375
17.9k
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_19MethodStringNoCacheI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashIS5_vEEEEEEDaOT_
Line
Count
Source
370
97
            [&](auto&& arg) {
371
97
                using HashTableCtxType = std::decay_t<decltype(arg)>;
372
97
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
373
97
                    hash_table_size = arg.hash_table->size();
374
97
                }
375
97
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_19MethodStringNoCacheINS_15DataWithNullKeyI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashIS7_vEEEEEEEEEEDaOT_
Line
Count
Source
370
177
            [&](auto&& arg) {
371
177
                using HashTableCtxType = std::decay_t<decltype(arg)>;
372
177
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
373
177
                    hash_table_size = arg.hash_table->size();
374
177
                }
375
177
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIhNS_15DataWithNullKeyI9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEEEEEDaOT_
Line
Count
Source
370
33
            [&](auto&& arg) {
371
33
                using HashTableCtxType = std::decay_t<decltype(arg)>;
372
33
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
373
33
                    hash_table_size = arg.hash_table->size();
374
33
                }
375
33
            },
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
312
            [&](auto&& arg) {
371
312
                using HashTableCtxType = std::decay_t<decltype(arg)>;
372
312
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
373
312
                    hash_table_size = arg.hash_table->size();
374
312
                }
375
312
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberImNS_15DataWithNullKeyI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEEEEEDaOT_
Line
Count
Source
370
61
            [&](auto&& arg) {
371
61
                using HashTableCtxType = std::decay_t<decltype(arg)>;
372
61
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
373
61
                    hash_table_size = arg.hash_table->size();
374
61
                }
375
61
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_26MethodSingleNullableColumnINS_15MethodOneNumberIN4wide7integerILm128EjEENS_15DataWithNullKeyI9PHHashMapIS7_NS_14RowRefWithFlagE9HashCRC32IS7_EEEEEEEEEEDaOT_
Line
Count
Source
370
192
            [&](auto&& arg) {
371
192
                using HashTableCtxType = std::decay_t<decltype(arg)>;
372
192
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
373
192
                    hash_table_size = arg.hash_table->size();
374
192
                }
375
192
            },
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
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
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt72ENS_14RowRefWithFlagE9HashCRC32IS5_EEEEEEDaOT_
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
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_6UInt96ENS_14RowRefWithFlagE9HashCRC32IS5_EEEEEEDaOT_
Line
Count
Source
370
24
            [&](auto&& arg) {
371
24
                using HashTableCtxType = std::decay_t<decltype(arg)>;
372
24
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
373
24
                    hash_table_size = arg.hash_table->size();
374
24
                }
375
24
            },
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapINS_7UInt104ENS_14RowRefWithFlagE9HashCRC32IS5_EEEEEEDaOT_
Line
Count
Source
370
45
            [&](auto&& arg) {
371
45
                using HashTableCtxType = std::decay_t<decltype(arg)>;
372
45
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
373
45
                    hash_table_size = arg.hash_table->size();
374
45
                }
375
45
            },
Unexecuted instantiation: dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEENS_14RowRefWithFlagE9HashCRC32IS7_EEEEEEDaOT_
dependency.cpp:_ZZNK5doris14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEENS_14RowRefWithFlagE9HashCRC32IS7_EEEEEEDaOT_
Line
Count
Source
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
38
            [&](auto&& arg) {
371
38
                using HashTableCtxType = std::decay_t<decltype(arg)>;
372
38
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
373
38
                    hash_table_size = arg.hash_table->size();
374
38
                }
375
38
            },
376
19.0k
            hash_table_variants->method_variant);
377
19.0k
    return hash_table_size;
378
19.0k
}
379
380
4.82k
Status SetSharedState::hash_table_init() {
381
4.82k
    std::vector<DataTypePtr> data_types;
382
40.4k
    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.4k
            data_type = make_nullable(data_type);
387
35.4k
        }
388
35.6k
        data_types.emplace_back(std::move(data_type));
389
35.6k
    }
390
4.82k
    return init_hash_method<SetDataVariants>(hash_table_variants.get(), data_types, true);
391
4.82k
}
392
393
799
void AggSharedState::refresh_top_limit(size_t row_id, const ColumnRawPtrs& key_columns) {
394
2.78k
    for (int j = 0; j < key_columns.size(); ++j) {
395
1.98k
        limit_columns[j]->insert_from(*key_columns[j], row_id);
396
1.98k
    }
397
799
    limit_heap.emplace(limit_columns[0]->size() - 1, limit_columns, order_directions,
398
799
                       null_directions);
399
400
799
    limit_heap.pop();
401
799
    limit_columns_min = limit_heap.top()._row_id;
402
799
}
403
404
} // namespace doris