Coverage Report

Created: 2026-02-25 18:01

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/root/doris/be/src/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 "dependency.h"
19
20
#include <memory>
21
#include <mutex>
22
23
#include "common/logging.h"
24
#include "exec/rowid_fetcher.h"
25
#include "pipeline/exec/multi_cast_data_streamer.h"
26
#include "pipeline/pipeline_fragment_context.h"
27
#include "pipeline/pipeline_task.h"
28
#include "runtime/exec_env.h"
29
#include "runtime/memory/mem_tracker.h"
30
#include "runtime_filter/runtime_filter_consumer.h"
31
#include "util/brpc_client_cache.h"
32
#include "vec/exec/scan/file_scanner.h"
33
#include "vec/exprs/vectorized_agg_fn.h"
34
#include "vec/exprs/vslot_ref.h"
35
#include "vec/spill/spill_stream_manager.h"
36
#include "vec/utils/util.hpp"
37
38
namespace doris::pipeline {
39
#include "common/compile_check_begin.h"
40
41
Dependency* BasicSharedState::create_source_dependency(int operator_id, int node_id,
42
535k
                                                       const std::string& name) {
43
535k
    source_deps.push_back(std::make_shared<Dependency>(operator_id, node_id, name + "_DEPENDENCY"));
44
535k
    source_deps.back()->set_shared_state(this);
45
535k
    return source_deps.back().get();
46
535k
}
47
48
void BasicSharedState::create_source_dependencies(int num_sources, int operator_id, int node_id,
49
106k
                                                  const std::string& name) {
50
106k
    source_deps.resize(num_sources, nullptr);
51
751k
    for (auto& source_dep : source_deps) {
52
751k
        source_dep = std::make_shared<Dependency>(operator_id, node_id, name + "_DEPENDENCY");
53
751k
        source_dep->set_shared_state(this);
54
751k
    }
55
106k
}
56
57
Dependency* BasicSharedState::create_sink_dependency(int dest_id, int node_id,
58
1.07M
                                                     const std::string& name) {
59
1.07M
    sink_deps.push_back(std::make_shared<Dependency>(dest_id, node_id, name + "_DEPENDENCY", true));
60
1.07M
    sink_deps.back()->set_shared_state(this);
61
1.07M
    return sink_deps.back().get();
62
1.07M
}
63
64
4.71M
void Dependency::_add_block_task(std::shared_ptr<PipelineTask> task) {
65
18.4E
    DCHECK(_blocked_task.empty() || _blocked_task[_blocked_task.size() - 1].lock() == nullptr ||
66
18.4E
           _blocked_task[_blocked_task.size() - 1].lock().get() != task.get())
67
18.4E
            << "Duplicate task: " << task->debug_string();
68
4.71M
    _blocked_task.push_back(task);
69
4.71M
}
70
71
98.8M
void Dependency::set_ready() {
72
100M
    if (_ready) {
73
100M
        return;
74
100M
    }
75
18.4E
    std::vector<std::weak_ptr<PipelineTask>> local_block_task {};
76
18.4E
    {
77
18.4E
        std::unique_lock<std::mutex> lc(_task_lock);
78
18.4E
        if (_ready) {
79
2.11k
            return;
80
2.11k
        }
81
18.4E
        _watcher.stop();
82
18.4E
        _ready = true;
83
18.4E
        local_block_task.swap(_blocked_task);
84
18.4E
    }
85
4.73M
    for (auto task : local_block_task) {
86
4.73M
        if (auto t = task.lock()) {
87
4.73M
            std::unique_lock<std::mutex> lc(_task_lock);
88
4.73M
            THROW_IF_ERROR(t->wake_up(this, lc));
89
4.73M
        }
90
4.73M
    }
91
18.4E
}
92
93
43.8M
Dependency* Dependency::is_blocked_by(std::shared_ptr<PipelineTask> task) {
94
43.8M
    std::unique_lock<std::mutex> lc(_task_lock);
95
43.8M
    auto ready = _ready.load();
96
43.8M
    if (!ready && task) {
97
4.73M
        _add_block_task(task);
98
4.73M
        start_watcher();
99
4.73M
        THROW_IF_ERROR(task->blocked(this, lc));
100
4.73M
    }
101
43.8M
    return ready ? nullptr : this;
102
43.8M
}
103
104
215k
std::string Dependency::debug_string(int indentation_level) {
105
215k
    fmt::memory_buffer debug_string_buffer;
106
215k
    fmt::format_to(debug_string_buffer, "{}{}: id={}, block task = {}, ready={}, _always_ready={}",
107
215k
                   std::string(indentation_level * 2, ' '), _name, _node_id, _blocked_task.size(),
108
215k
                   _ready, _always_ready);
109
215k
    return fmt::to_string(debug_string_buffer);
110
215k
}
111
112
158
std::string CountedFinishDependency::debug_string(int indentation_level) {
113
158
    fmt::memory_buffer debug_string_buffer;
114
158
    fmt::format_to(debug_string_buffer,
115
158
                   "{}{}: id={}, block_task={}, ready={}, _always_ready={}, count={}",
116
158
                   std::string(indentation_level * 2, ' '), _name, _node_id, _blocked_task.size(),
117
158
                   _ready, _always_ready, _counter);
118
158
    return fmt::to_string(debug_string_buffer);
119
158
}
120
121
2.12k
void RuntimeFilterTimer::call_timeout() {
122
2.12k
    _parent->set_ready();
123
2.12k
}
124
125
81.3k
void RuntimeFilterTimer::call_ready() {
126
81.3k
    _parent->set_ready();
127
81.3k
}
128
129
// should check rf timeout in two case:
130
// 1. the rf is ready just remove the wait queue
131
// 2. if the rf have local dependency, the rf should start wait when all local dependency is ready
132
9.08M
bool RuntimeFilterTimer::should_be_check_timeout() {
133
9.08M
    if (!_parent->ready() && !_local_runtime_filter_dependencies.empty()) {
134
244k
        bool all_ready = true;
135
244k
        for (auto& dep : _local_runtime_filter_dependencies) {
136
244k
            if (!dep->ready()) {
137
244k
                all_ready = false;
138
244k
                break;
139
244k
            }
140
244k
        }
141
244k
        if (all_ready) {
142
8
            _local_runtime_filter_dependencies.clear();
143
8
            _registration_time = MonotonicMillis();
144
8
        }
145
244k
        return all_ready;
146
244k
    }
147
8.83M
    return true;
148
9.08M
}
149
150
8
void RuntimeFilterTimerQueue::start() {
151
346k
    while (!_stop) {
152
346k
        std::unique_lock<std::mutex> lk(cv_m);
153
154
347k
        while (_que.empty() && !_stop) {
155
2.68k
            cv.wait_for(lk, std::chrono::seconds(3), [this] { return !_que.empty() || _stop; });
156
1.34k
        }
157
346k
        if (_stop) {
158
3
            break;
159
3
        }
160
346k
        {
161
346k
            std::unique_lock<std::mutex> lc(_que_lock);
162
346k
            std::list<std::shared_ptr<pipeline::RuntimeFilterTimer>> new_que;
163
9.08M
            for (auto& it : _que) {
164
9.08M
                if (it.use_count() == 1) {
165
                    // `use_count == 1` means this runtime filter has been released
166
9.08M
                } else if (it->should_be_check_timeout()) {
167
8.83M
                    if (it->force_wait_timeout() || it->_parent->is_blocked_by()) {
168
                        // This means runtime filter is not ready, so we call timeout or continue to poll this timer.
169
8.75M
                        int64_t ms_since_registration = MonotonicMillis() - it->registration_time();
170
8.75M
                        if (ms_since_registration > it->wait_time_ms()) {
171
2.12k
                            it->call_timeout();
172
8.75M
                        } else {
173
8.75M
                            new_que.push_back(std::move(it));
174
8.75M
                        }
175
8.75M
                    }
176
8.83M
                } else {
177
244k
                    new_que.push_back(std::move(it));
178
244k
                }
179
9.08M
            }
180
346k
            new_que.swap(_que);
181
346k
        }
182
346k
        std::this_thread::sleep_for(std::chrono::milliseconds(interval));
183
346k
    }
184
8
    _shutdown = true;
185
8
}
186
187
369k
void LocalExchangeSharedState::sub_running_sink_operators() {
188
369k
    std::unique_lock<std::mutex> lc(le_lock);
189
369k
    if (exchanger->_running_sink_operators.fetch_sub(1) == 1) {
190
105k
        _set_always_ready();
191
105k
    }
192
369k
}
193
194
736k
void LocalExchangeSharedState::sub_running_source_operators() {
195
736k
    std::unique_lock<std::mutex> lc(le_lock);
196
736k
    if (exchanger->_running_source_operators.fetch_sub(1) == 1) {
197
105k
        _set_always_ready();
198
105k
        exchanger->finalize();
199
105k
    }
200
736k
}
201
202
105k
LocalExchangeSharedState::LocalExchangeSharedState(int num_instances) {
203
105k
    source_deps.resize(num_instances, nullptr);
204
105k
    mem_counters.resize(num_instances, nullptr);
205
105k
}
206
207
40
vectorized::MutableColumns AggSharedState::_get_keys_hash_table() {
208
40
    return std::visit(
209
40
            vectorized::Overload {
210
40
                    [&](std::monostate& arg) {
211
0
                        throw doris::Exception(ErrorCode::INTERNAL_ERROR, "uninited hash table");
212
0
                        return vectorized::MutableColumns();
213
0
                    },
214
40
                    [&](auto&& agg_method) -> vectorized::MutableColumns {
215
40
                        vectorized::MutableColumns key_columns;
216
94
                        for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
217
54
                            key_columns.emplace_back(
218
54
                                    probe_expr_ctxs[i]->root()->data_type()->create_column());
219
54
                        }
220
40
                        auto& data = *agg_method.hash_table;
221
40
                        bool has_null_key = data.has_null_key_data();
222
40
                        const auto size = data.size() - has_null_key;
223
40
                        using KeyType = std::decay_t<decltype(agg_method)>::Key;
224
40
                        std::vector<KeyType> keys(size);
225
226
40
                        uint32_t num_rows = 0;
227
40
                        auto iter = aggregate_data_container->begin();
228
40
                        {
229
20.1k
                            while (iter != aggregate_data_container->end()) {
230
20.1k
                                keys[num_rows] = iter.get_key<KeyType>();
231
20.1k
                                ++iter;
232
20.1k
                                ++num_rows;
233
20.1k
                            }
234
40
                        }
235
40
                        agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
236
40
                        if (has_null_key) {
237
2
                            key_columns[0]->insert_data(nullptr, 0);
238
2
                        }
239
40
                        return key_columns;
240
40
                    }},
dependency.cpp:_ZZN5doris8pipeline14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_10vectorized16MethodSerializedI9PHHashMapINS_9StringRefEPc11DefaultHashIS7_vEEEEEESt6vectorINS_3COWINS4_7IColumnEE11mutable_ptrISG_EESaISJ_EEOT_
Line
Count
Source
214
1
                    [&](auto&& agg_method) -> vectorized::MutableColumns {
215
1
                        vectorized::MutableColumns key_columns;
216
5
                        for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
217
4
                            key_columns.emplace_back(
218
4
                                    probe_expr_ctxs[i]->root()->data_type()->create_column());
219
4
                        }
220
1
                        auto& data = *agg_method.hash_table;
221
1
                        bool has_null_key = data.has_null_key_data();
222
1
                        const auto size = data.size() - has_null_key;
223
1
                        using KeyType = std::decay_t<decltype(agg_method)>::Key;
224
1
                        std::vector<KeyType> keys(size);
225
226
1
                        uint32_t num_rows = 0;
227
1
                        auto iter = aggregate_data_container->begin();
228
1
                        {
229
8.12k
                            while (iter != aggregate_data_container->end()) {
230
8.12k
                                keys[num_rows] = iter.get_key<KeyType>();
231
8.12k
                                ++iter;
232
8.12k
                                ++num_rows;
233
8.12k
                            }
234
1
                        }
235
1
                        agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
236
1
                        if (has_null_key) {
237
0
                            key_columns[0]->insert_data(nullptr, 0);
238
0
                        }
239
1
                        return key_columns;
240
1
                    }},
Unexecuted instantiation: dependency.cpp:_ZZN5doris8pipeline14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_10vectorized15MethodOneNumberIh9PHHashMapIhPc9HashCRC32IhEEEEEESt6vectorINS_3COWINS4_7IColumnEE11mutable_ptrISF_EESaISI_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris8pipeline14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_10vectorized15MethodOneNumberIt9PHHashMapItPc9HashCRC32ItEEEEEESt6vectorINS_3COWINS4_7IColumnEE11mutable_ptrISF_EESaISI_EEOT_
dependency.cpp:_ZZN5doris8pipeline14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_10vectorized15MethodOneNumberIj9PHHashMapIjPc9HashCRC32IjEEEEEESt6vectorINS_3COWINS4_7IColumnEE11mutable_ptrISF_EESaISI_EEOT_
Line
Count
Source
214
2
                    [&](auto&& agg_method) -> vectorized::MutableColumns {
215
2
                        vectorized::MutableColumns key_columns;
216
4
                        for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
217
2
                            key_columns.emplace_back(
218
2
                                    probe_expr_ctxs[i]->root()->data_type()->create_column());
219
2
                        }
220
2
                        auto& data = *agg_method.hash_table;
221
2
                        bool has_null_key = data.has_null_key_data();
222
2
                        const auto size = data.size() - has_null_key;
223
2
                        using KeyType = std::decay_t<decltype(agg_method)>::Key;
224
2
                        std::vector<KeyType> keys(size);
225
226
2
                        uint32_t num_rows = 0;
227
2
                        auto iter = aggregate_data_container->begin();
228
2
                        {
229
6
                            while (iter != aggregate_data_container->end()) {
230
4
                                keys[num_rows] = iter.get_key<KeyType>();
231
4
                                ++iter;
232
4
                                ++num_rows;
233
4
                            }
234
2
                        }
235
2
                        agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
236
2
                        if (has_null_key) {
237
0
                            key_columns[0]->insert_data(nullptr, 0);
238
0
                        }
239
2
                        return key_columns;
240
2
                    }},
dependency.cpp:_ZZN5doris8pipeline14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_10vectorized15MethodOneNumberIm9PHHashMapImPc9HashCRC32ImEEEEEESt6vectorINS_3COWINS4_7IColumnEE11mutable_ptrISF_EESaISI_EEOT_
Line
Count
Source
214
4
                    [&](auto&& agg_method) -> vectorized::MutableColumns {
215
4
                        vectorized::MutableColumns key_columns;
216
8
                        for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
217
4
                            key_columns.emplace_back(
218
4
                                    probe_expr_ctxs[i]->root()->data_type()->create_column());
219
4
                        }
220
4
                        auto& data = *agg_method.hash_table;
221
4
                        bool has_null_key = data.has_null_key_data();
222
4
                        const auto size = data.size() - has_null_key;
223
4
                        using KeyType = std::decay_t<decltype(agg_method)>::Key;
224
4
                        std::vector<KeyType> keys(size);
225
226
4
                        uint32_t num_rows = 0;
227
4
                        auto iter = aggregate_data_container->begin();
228
4
                        {
229
24
                            while (iter != aggregate_data_container->end()) {
230
20
                                keys[num_rows] = iter.get_key<KeyType>();
231
20
                                ++iter;
232
20
                                ++num_rows;
233
20
                            }
234
4
                        }
235
4
                        agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
236
4
                        if (has_null_key) {
237
0
                            key_columns[0]->insert_data(nullptr, 0);
238
0
                        }
239
4
                        return key_columns;
240
4
                    }},
Unexecuted instantiation: dependency.cpp:_ZZN5doris8pipeline14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_10vectorized19MethodStringNoCacheINS_13StringHashMapIPcNS_9AllocatorILb1ELb1ELb0ENS_22DefaultMemoryAllocatorELb1EEEEEEEEESt6vectorINS_3COWINS4_7IColumnEE11mutable_ptrISG_EESaISJ_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris8pipeline14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_10vectorized15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapIS8_Pc9HashCRC32IS8_EEEEEESt6vectorINS_3COWINS4_7IColumnEE11mutable_ptrISI_EESaISL_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris8pipeline14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_10vectorized15MethodOneNumberIN4wide7integerILm256EjEE9PHHashMapIS8_Pc9HashCRC32IS8_EEEEEESt6vectorINS_3COWINS4_7IColumnEE11mutable_ptrISI_EESaISL_EEOT_
dependency.cpp:_ZZN5doris8pipeline14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_10vectorized15MethodOneNumberIj9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEEEEEEESt6vectorINS_3COWINS4_7IColumnEE11mutable_ptrISH_EESaISK_EEOT_
Line
Count
Source
214
6
                    [&](auto&& agg_method) -> vectorized::MutableColumns {
215
6
                        vectorized::MutableColumns key_columns;
216
12
                        for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
217
6
                            key_columns.emplace_back(
218
6
                                    probe_expr_ctxs[i]->root()->data_type()->create_column());
219
6
                        }
220
6
                        auto& data = *agg_method.hash_table;
221
6
                        bool has_null_key = data.has_null_key_data();
222
6
                        const auto size = data.size() - has_null_key;
223
6
                        using KeyType = std::decay_t<decltype(agg_method)>::Key;
224
6
                        std::vector<KeyType> keys(size);
225
226
6
                        uint32_t num_rows = 0;
227
6
                        auto iter = aggregate_data_container->begin();
228
6
                        {
229
12
                            while (iter != aggregate_data_container->end()) {
230
6
                                keys[num_rows] = iter.get_key<KeyType>();
231
6
                                ++iter;
232
6
                                ++num_rows;
233
6
                            }
234
6
                        }
235
6
                        agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
236
6
                        if (has_null_key) {
237
0
                            key_columns[0]->insert_data(nullptr, 0);
238
0
                        }
239
6
                        return key_columns;
240
6
                    }},
dependency.cpp:_ZZN5doris8pipeline14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_10vectorized15MethodOneNumberIm9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEESt6vectorINS_3COWINS4_7IColumnEE11mutable_ptrISH_EESaISK_EEOT_
Line
Count
Source
214
6
                    [&](auto&& agg_method) -> vectorized::MutableColumns {
215
6
                        vectorized::MutableColumns key_columns;
216
12
                        for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
217
6
                            key_columns.emplace_back(
218
6
                                    probe_expr_ctxs[i]->root()->data_type()->create_column());
219
6
                        }
220
6
                        auto& data = *agg_method.hash_table;
221
6
                        bool has_null_key = data.has_null_key_data();
222
6
                        const auto size = data.size() - has_null_key;
223
6
                        using KeyType = std::decay_t<decltype(agg_method)>::Key;
224
6
                        std::vector<KeyType> keys(size);
225
226
6
                        uint32_t num_rows = 0;
227
6
                        auto iter = aggregate_data_container->begin();
228
6
                        {
229
30
                            while (iter != aggregate_data_container->end()) {
230
24
                                keys[num_rows] = iter.get_key<KeyType>();
231
24
                                ++iter;
232
24
                                ++num_rows;
233
24
                            }
234
6
                        }
235
6
                        agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
236
6
                        if (has_null_key) {
237
0
                            key_columns[0]->insert_data(nullptr, 0);
238
0
                        }
239
6
                        return key_columns;
240
6
                    }},
dependency.cpp:_ZZN5doris8pipeline14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_10vectorized26MethodSingleNullableColumnINS4_15MethodOneNumberIhNS4_15DataWithNullKeyI9PHHashMapIhPc9HashCRC32IhEEEEEEEEEESt6vectorINS_3COWINS4_7IColumnEE11mutable_ptrISJ_EESaISM_EEOT_
Line
Count
Source
214
1
                    [&](auto&& agg_method) -> vectorized::MutableColumns {
215
1
                        vectorized::MutableColumns key_columns;
216
2
                        for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
217
1
                            key_columns.emplace_back(
218
1
                                    probe_expr_ctxs[i]->root()->data_type()->create_column());
219
1
                        }
220
1
                        auto& data = *agg_method.hash_table;
221
1
                        bool has_null_key = data.has_null_key_data();
222
1
                        const auto size = data.size() - has_null_key;
223
1
                        using KeyType = std::decay_t<decltype(agg_method)>::Key;
224
1
                        std::vector<KeyType> keys(size);
225
226
1
                        uint32_t num_rows = 0;
227
1
                        auto iter = aggregate_data_container->begin();
228
1
                        {
229
13
                            while (iter != aggregate_data_container->end()) {
230
12
                                keys[num_rows] = iter.get_key<KeyType>();
231
12
                                ++iter;
232
12
                                ++num_rows;
233
12
                            }
234
1
                        }
235
1
                        agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
236
1
                        if (has_null_key) {
237
0
                            key_columns[0]->insert_data(nullptr, 0);
238
0
                        }
239
1
                        return key_columns;
240
1
                    }},
Unexecuted instantiation: dependency.cpp:_ZZN5doris8pipeline14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_10vectorized26MethodSingleNullableColumnINS4_15MethodOneNumberItNS4_15DataWithNullKeyI9PHHashMapItPc9HashCRC32ItEEEEEEEEEESt6vectorINS_3COWINS4_7IColumnEE11mutable_ptrISJ_EESaISM_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris8pipeline14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_10vectorized26MethodSingleNullableColumnINS4_15MethodOneNumberIjNS4_15DataWithNullKeyI9PHHashMapIjPc9HashCRC32IjEEEEEEEEEESt6vectorINS_3COWINS4_7IColumnEE11mutable_ptrISJ_EESaISM_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris8pipeline14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_10vectorized26MethodSingleNullableColumnINS4_15MethodOneNumberImNS4_15DataWithNullKeyI9PHHashMapImPc9HashCRC32ImEEEEEEEEEESt6vectorINS_3COWINS4_7IColumnEE11mutable_ptrISJ_EESaISM_EEOT_
dependency.cpp:_ZZN5doris8pipeline14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_10vectorized26MethodSingleNullableColumnINS4_15MethodOneNumberIjNS4_15DataWithNullKeyI9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEEEEEEEEEEESt6vectorINS_3COWINS4_7IColumnEE11mutable_ptrISL_EESaISO_EEOT_
Line
Count
Source
214
4
                    [&](auto&& agg_method) -> vectorized::MutableColumns {
215
4
                        vectorized::MutableColumns key_columns;
216
8
                        for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
217
4
                            key_columns.emplace_back(
218
4
                                    probe_expr_ctxs[i]->root()->data_type()->create_column());
219
4
                        }
220
4
                        auto& data = *agg_method.hash_table;
221
4
                        bool has_null_key = data.has_null_key_data();
222
4
                        const auto size = data.size() - has_null_key;
223
4
                        using KeyType = std::decay_t<decltype(agg_method)>::Key;
224
4
                        std::vector<KeyType> keys(size);
225
226
4
                        uint32_t num_rows = 0;
227
4
                        auto iter = aggregate_data_container->begin();
228
4
                        {
229
2.37k
                            while (iter != aggregate_data_container->end()) {
230
2.36k
                                keys[num_rows] = iter.get_key<KeyType>();
231
2.36k
                                ++iter;
232
2.36k
                                ++num_rows;
233
2.36k
                            }
234
4
                        }
235
4
                        agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
236
4
                        if (has_null_key) {
237
1
                            key_columns[0]->insert_data(nullptr, 0);
238
1
                        }
239
4
                        return key_columns;
240
4
                    }},
dependency.cpp:_ZZN5doris8pipeline14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_10vectorized26MethodSingleNullableColumnINS4_15MethodOneNumberImNS4_15DataWithNullKeyI9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEEEEEESt6vectorINS_3COWINS4_7IColumnEE11mutable_ptrISL_EESaISO_EEOT_
Line
Count
Source
214
9
                    [&](auto&& agg_method) -> vectorized::MutableColumns {
215
9
                        vectorized::MutableColumns key_columns;
216
18
                        for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
217
9
                            key_columns.emplace_back(
218
9
                                    probe_expr_ctxs[i]->root()->data_type()->create_column());
219
9
                        }
220
9
                        auto& data = *agg_method.hash_table;
221
9
                        bool has_null_key = data.has_null_key_data();
222
9
                        const auto size = data.size() - has_null_key;
223
9
                        using KeyType = std::decay_t<decltype(agg_method)>::Key;
224
9
                        std::vector<KeyType> keys(size);
225
226
9
                        uint32_t num_rows = 0;
227
9
                        auto iter = aggregate_data_container->begin();
228
9
                        {
229
7.34k
                            while (iter != aggregate_data_container->end()) {
230
7.33k
                                keys[num_rows] = iter.get_key<KeyType>();
231
7.33k
                                ++iter;
232
7.33k
                                ++num_rows;
233
7.33k
                            }
234
9
                        }
235
9
                        agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
236
9
                        if (has_null_key) {
237
1
                            key_columns[0]->insert_data(nullptr, 0);
238
1
                        }
239
9
                        return key_columns;
240
9
                    }},
dependency.cpp:_ZZN5doris8pipeline14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_10vectorized26MethodSingleNullableColumnINS4_15MethodOneNumberIN4wide7integerILm128EjEENS4_15DataWithNullKeyI9PHHashMapIS9_Pc9HashCRC32IS9_EEEEEEEEEESt6vectorINS_3COWINS4_7IColumnEE11mutable_ptrISM_EESaISP_EEOT_
Line
Count
Source
214
1
                    [&](auto&& agg_method) -> vectorized::MutableColumns {
215
1
                        vectorized::MutableColumns key_columns;
216
2
                        for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
217
1
                            key_columns.emplace_back(
218
1
                                    probe_expr_ctxs[i]->root()->data_type()->create_column());
219
1
                        }
220
1
                        auto& data = *agg_method.hash_table;
221
1
                        bool has_null_key = data.has_null_key_data();
222
1
                        const auto size = data.size() - has_null_key;
223
1
                        using KeyType = std::decay_t<decltype(agg_method)>::Key;
224
1
                        std::vector<KeyType> keys(size);
225
226
1
                        uint32_t num_rows = 0;
227
1
                        auto iter = aggregate_data_container->begin();
228
1
                        {
229
8
                            while (iter != aggregate_data_container->end()) {
230
7
                                keys[num_rows] = iter.get_key<KeyType>();
231
7
                                ++iter;
232
7
                                ++num_rows;
233
7
                            }
234
1
                        }
235
1
                        agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
236
1
                        if (has_null_key) {
237
0
                            key_columns[0]->insert_data(nullptr, 0);
238
0
                        }
239
1
                        return key_columns;
240
1
                    }},
Unexecuted instantiation: dependency.cpp:_ZZN5doris8pipeline14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_10vectorized26MethodSingleNullableColumnINS4_15MethodOneNumberIN4wide7integerILm256EjEENS4_15DataWithNullKeyI9PHHashMapIS9_Pc9HashCRC32IS9_EEEEEEEEEESt6vectorINS_3COWINS4_7IColumnEE11mutable_ptrISM_EESaISP_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris8pipeline14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_10vectorized26MethodSingleNullableColumnINS4_19MethodStringNoCacheINS4_15DataWithNullKeyINS_13StringHashMapIPcNS_9AllocatorILb1ELb1ELb0ENS_22DefaultMemoryAllocatorELb1EEEEEEEEEEEEESt6vectorINS_3COWINS4_7IColumnEE11mutable_ptrISK_EESaISN_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris8pipeline14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_10vectorized15MethodKeysFixedI9PHHashMapImPc9HashCRC32ImEEEEEESt6vectorINS_3COWINS4_7IColumnEE11mutable_ptrISF_EESaISI_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris8pipeline14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_10vectorized15MethodKeysFixedI9PHHashMapINS4_6UInt72EPc9HashCRC32IS7_EEEEEESt6vectorINS_3COWINS4_7IColumnEE11mutable_ptrISG_EESaISJ_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris8pipeline14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_10vectorized15MethodKeysFixedI9PHHashMapINS4_6UInt96EPc9HashCRC32IS7_EEEEEESt6vectorINS_3COWINS4_7IColumnEE11mutable_ptrISG_EESaISJ_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris8pipeline14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_10vectorized15MethodKeysFixedI9PHHashMapINS4_7UInt104EPc9HashCRC32IS7_EEEEEESt6vectorINS_3COWINS4_7IColumnEE11mutable_ptrISG_EESaISJ_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris8pipeline14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_10vectorized15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEEPc9HashCRC32IS9_EEEEEESt6vectorINS_3COWINS4_7IColumnEE11mutable_ptrISI_EESaISL_EEOT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris8pipeline14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_10vectorized15MethodKeysFixedI9PHHashMapINS4_7UInt136EPc9HashCRC32IS7_EEEEEESt6vectorINS_3COWINS4_7IColumnEE11mutable_ptrISG_EESaISJ_EEOT_
dependency.cpp:_ZZN5doris8pipeline14AggSharedState20_get_keys_hash_tableEvENK3$_1clIRNS_10vectorized15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEEPc9HashCRC32IS9_EEEEEESt6vectorINS_3COWINS4_7IColumnEE11mutable_ptrISI_EESaISL_EEOT_
Line
Count
Source
214
6
                    [&](auto&& agg_method) -> vectorized::MutableColumns {
215
6
                        vectorized::MutableColumns key_columns;
216
23
                        for (int i = 0; i < probe_expr_ctxs.size(); ++i) {
217
17
                            key_columns.emplace_back(
218
17
                                    probe_expr_ctxs[i]->root()->data_type()->create_column());
219
17
                        }
220
6
                        auto& data = *agg_method.hash_table;
221
6
                        bool has_null_key = data.has_null_key_data();
222
6
                        const auto size = data.size() - has_null_key;
223
6
                        using KeyType = std::decay_t<decltype(agg_method)>::Key;
224
6
                        std::vector<KeyType> keys(size);
225
226
6
                        uint32_t num_rows = 0;
227
6
                        auto iter = aggregate_data_container->begin();
228
6
                        {
229
2.25k
                            while (iter != aggregate_data_container->end()) {
230
2.24k
                                keys[num_rows] = iter.get_key<KeyType>();
231
2.24k
                                ++iter;
232
2.24k
                                ++num_rows;
233
2.24k
                            }
234
6
                        }
235
6
                        agg_method.insert_keys_into_columns(keys, key_columns, num_rows);
236
6
                        if (has_null_key) {
237
0
                            key_columns[0]->insert_data(nullptr, 0);
238
0
                        }
239
6
                        return key_columns;
240
6
                    }},
241
40
            agg_data->method_variant);
242
40
}
243
244
40
void AggSharedState::build_limit_heap(size_t hash_table_size) {
245
40
    limit_columns = _get_keys_hash_table();
246
20.1k
    for (size_t i = 0; i < hash_table_size; ++i) {
247
20.1k
        limit_heap.emplace(i, limit_columns, order_directions, null_directions);
248
20.1k
    }
249
20.0k
    while (hash_table_size > limit) {
250
20.0k
        limit_heap.pop();
251
20.0k
        hash_table_size--;
252
20.0k
    }
253
40
    limit_columns_min = limit_heap.top()._row_id;
254
40
}
255
256
bool AggSharedState::do_limit_filter(vectorized::Block* block, size_t num_rows,
257
51
                                     const std::vector<int>* key_locs) {
258
51
    if (num_rows) {
259
51
        cmp_res.resize(num_rows);
260
51
        need_computes.resize(num_rows);
261
51
        memset(need_computes.data(), 0, need_computes.size());
262
51
        memset(cmp_res.data(), 0, cmp_res.size());
263
264
51
        const auto key_size = null_directions.size();
265
116
        for (int i = 0; i < key_size; i++) {
266
65
            block->get_by_position(key_locs ? key_locs->operator[](i) : i)
267
65
                    .column->compare_internal(limit_columns_min, *limit_columns[i],
268
65
                                              null_directions[i], order_directions[i], cmp_res,
269
65
                                              need_computes.data());
270
65
        }
271
272
51
        auto set_computes_arr = [](auto* __restrict res, auto* __restrict computes, size_t rows) {
273
20.2k
            for (size_t i = 0; i < rows; ++i) {
274
20.1k
                computes[i] = computes[i] == res[i];
275
20.1k
            }
276
51
        };
277
51
        set_computes_arr(cmp_res.data(), need_computes.data(), num_rows);
278
279
51
        return std::find(need_computes.begin(), need_computes.end(), 0) != need_computes.end();
280
51
    }
281
282
0
    return false;
283
51
}
284
285
3.32k
Status AggSharedState::reset_hash_table() {
286
3.32k
    return std::visit(
287
3.32k
            vectorized::Overload {
288
3.32k
                    [&](std::monostate& arg) -> Status {
289
0
                        return Status::InternalError("Uninited hash table");
290
0
                    },
291
3.32k
                    [&](auto& agg_method) {
292
3.32k
                        auto& hash_table = *agg_method.hash_table;
293
3.32k
                        using HashTableType = std::decay_t<decltype(hash_table)>;
294
295
3.32k
                        agg_method.arena.clear();
296
3.32k
                        agg_method.inited_iterator = false;
297
298
1.05M
                        hash_table.for_each_mapped([&](auto& mapped) {
299
1.05M
                            if (mapped) {
300
1.05M
                                _destroy_agg_status(mapped);
301
1.05M
                                mapped = nullptr;
302
1.05M
                            }
303
1.05M
                        });
Unexecuted instantiation: dependency.cpp:_ZZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized16MethodSerializedI9PHHashMapINS_9StringRefEPc11DefaultHashIS7_vEEEEEEDaRT_ENKUlSE_E_clIS8_EEDaSE_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized15MethodOneNumberIh9PHHashMapIhPc9HashCRC32IhEEEEEEDaRT_ENKUlSD_E_clIS7_EEDaSD_
dependency.cpp:_ZZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized15MethodOneNumberIt9PHHashMapItPc9HashCRC32ItEEEEEEDaRT_ENKUlSD_E_clIS7_EEDaSD_
Line
Count
Source
298
338
                        hash_table.for_each_mapped([&](auto& mapped) {
299
338
                            if (mapped) {
300
338
                                _destroy_agg_status(mapped);
301
338
                                mapped = nullptr;
302
338
                            }
303
338
                        });
Unexecuted instantiation: dependency.cpp:_ZZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized15MethodOneNumberIj9PHHashMapIjPc9HashCRC32IjEEEEEEDaRT_ENKUlSD_E_clIS7_EEDaSD_
dependency.cpp:_ZZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized15MethodOneNumberIm9PHHashMapImPc9HashCRC32ImEEEEEEDaRT_ENKUlSD_E_clIS7_EEDaSD_
Line
Count
Source
298
782
                        hash_table.for_each_mapped([&](auto& mapped) {
299
782
                            if (mapped) {
300
782
                                _destroy_agg_status(mapped);
301
782
                                mapped = nullptr;
302
782
                            }
303
782
                        });
Unexecuted instantiation: dependency.cpp:_ZZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized19MethodStringNoCacheINS_13StringHashMapIPcNS_9AllocatorILb1ELb1ELb0ENS_22DefaultMemoryAllocatorELb1EEEEEEEEEDaRT_ENKUlSE_E_clIS7_EEDaSE_
dependency.cpp:_ZZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapIS8_Pc9HashCRC32IS8_EEEEEEDaRT_ENKUlSG_E_clISA_EEDaSG_
Line
Count
Source
298
526
                        hash_table.for_each_mapped([&](auto& mapped) {
299
526
                            if (mapped) {
300
526
                                _destroy_agg_status(mapped);
301
526
                                mapped = nullptr;
302
526
                            }
303
526
                        });
Unexecuted instantiation: dependency.cpp:_ZZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized15MethodOneNumberIN4wide7integerILm256EjEE9PHHashMapIS8_Pc9HashCRC32IS8_EEEEEEDaRT_ENKUlSG_E_clISA_EEDaSG_
dependency.cpp:_ZZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized15MethodOneNumberIj9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEEEEEEEDaRT_ENKUlSF_E_clIS7_EEDaSF_
Line
Count
Source
298
1.04M
                        hash_table.for_each_mapped([&](auto& mapped) {
299
1.04M
                            if (mapped) {
300
1.04M
                                _destroy_agg_status(mapped);
301
1.04M
                                mapped = nullptr;
302
1.04M
                            }
303
1.04M
                        });
dependency.cpp:_ZZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized15MethodOneNumberIm9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEEDaRT_ENKUlSF_E_clIS7_EEDaSF_
Line
Count
Source
298
2.92k
                        hash_table.for_each_mapped([&](auto& mapped) {
299
2.92k
                            if (mapped) {
300
2.92k
                                _destroy_agg_status(mapped);
301
2.92k
                                mapped = nullptr;
302
2.92k
                            }
303
2.92k
                        });
dependency.cpp:_ZZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized26MethodSingleNullableColumnINS4_15MethodOneNumberIhNS4_15DataWithNullKeyI9PHHashMapIhPc9HashCRC32IhEEEEEEEEEEDaRT_ENKUlSH_E_clIS9_EEDaSH_
Line
Count
Source
298
368
                        hash_table.for_each_mapped([&](auto& mapped) {
299
368
                            if (mapped) {
300
368
                                _destroy_agg_status(mapped);
301
368
                                mapped = nullptr;
302
368
                            }
303
368
                        });
Unexecuted instantiation: dependency.cpp:_ZZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized26MethodSingleNullableColumnINS4_15MethodOneNumberItNS4_15DataWithNullKeyI9PHHashMapItPc9HashCRC32ItEEEEEEEEEEDaRT_ENKUlSH_E_clIS9_EEDaSH_
dependency.cpp:_ZZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized26MethodSingleNullableColumnINS4_15MethodOneNumberIjNS4_15DataWithNullKeyI9PHHashMapIjPc9HashCRC32IjEEEEEEEEEEDaRT_ENKUlSH_E_clIS9_EEDaSH_
Line
Count
Source
298
136
                        hash_table.for_each_mapped([&](auto& mapped) {
299
136
                            if (mapped) {
300
136
                                _destroy_agg_status(mapped);
301
136
                                mapped = nullptr;
302
136
                            }
303
136
                        });
dependency.cpp:_ZZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized26MethodSingleNullableColumnINS4_15MethodOneNumberImNS4_15DataWithNullKeyI9PHHashMapImPc9HashCRC32ImEEEEEEEEEEDaRT_ENKUlSH_E_clIS9_EEDaSH_
Line
Count
Source
298
966
                        hash_table.for_each_mapped([&](auto& mapped) {
299
966
                            if (mapped) {
300
966
                                _destroy_agg_status(mapped);
301
966
                                mapped = nullptr;
302
966
                            }
303
966
                        });
dependency.cpp:_ZZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized26MethodSingleNullableColumnINS4_15MethodOneNumberIjNS4_15DataWithNullKeyI9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEEEEEEEEEEEDaRT_ENKUlSJ_E_clIS9_EEDaSJ_
Line
Count
Source
298
903
                        hash_table.for_each_mapped([&](auto& mapped) {
299
903
                            if (mapped) {
300
903
                                _destroy_agg_status(mapped);
301
903
                                mapped = nullptr;
302
903
                            }
303
903
                        });
dependency.cpp:_ZZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized26MethodSingleNullableColumnINS4_15MethodOneNumberImNS4_15DataWithNullKeyI9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEEEEEEDaRT_ENKUlSJ_E_clIS9_EEDaSJ_
Line
Count
Source
298
2.08k
                        hash_table.for_each_mapped([&](auto& mapped) {
299
2.08k
                            if (mapped) {
300
2.08k
                                _destroy_agg_status(mapped);
301
2.08k
                                mapped = nullptr;
302
2.08k
                            }
303
2.08k
                        });
dependency.cpp:_ZZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized26MethodSingleNullableColumnINS4_15MethodOneNumberIN4wide7integerILm128EjEENS4_15DataWithNullKeyI9PHHashMapIS9_Pc9HashCRC32IS9_EEEEEEEEEEDaRT_ENKUlSK_E_clISC_EEDaSK_
Line
Count
Source
298
422
                        hash_table.for_each_mapped([&](auto& mapped) {
299
422
                            if (mapped) {
300
422
                                _destroy_agg_status(mapped);
301
422
                                mapped = nullptr;
302
422
                            }
303
422
                        });
Unexecuted instantiation: dependency.cpp:_ZZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized26MethodSingleNullableColumnINS4_15MethodOneNumberIN4wide7integerILm256EjEENS4_15DataWithNullKeyI9PHHashMapIS9_Pc9HashCRC32IS9_EEEEEEEEEEDaRT_ENKUlSK_E_clISC_EEDaSK_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized26MethodSingleNullableColumnINS4_19MethodStringNoCacheINS4_15DataWithNullKeyINS_13StringHashMapIPcNS_9AllocatorILb1ELb1ELb0ENS_22DefaultMemoryAllocatorELb1EEEEEEEEEEEEEDaRT_ENKUlSI_E_clIS9_EEDaSI_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized15MethodKeysFixedI9PHHashMapImPc9HashCRC32ImEEEEEEDaRT_ENKUlSD_E_clIS7_EEDaSD_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized15MethodKeysFixedI9PHHashMapINS4_6UInt72EPc9HashCRC32IS7_EEEEEEDaRT_ENKUlSE_E_clIS8_EEDaSE_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized15MethodKeysFixedI9PHHashMapINS4_6UInt96EPc9HashCRC32IS7_EEEEEEDaRT_ENKUlSE_E_clIS8_EEDaSE_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized15MethodKeysFixedI9PHHashMapINS4_7UInt104EPc9HashCRC32IS7_EEEEEEDaRT_ENKUlSE_E_clIS8_EEDaSE_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEEPc9HashCRC32IS9_EEEEEEDaRT_ENKUlSG_E_clISA_EEDaSG_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized15MethodKeysFixedI9PHHashMapINS4_7UInt136EPc9HashCRC32IS7_EEEEEEDaRT_ENKUlSE_E_clIS8_EEDaSE_
Unexecuted instantiation: dependency.cpp:_ZZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEEPc9HashCRC32IS9_EEEEEEDaRT_ENKUlSG_E_clISA_EEDaSG_
304
305
3.32k
                        if (hash_table.has_null_key_data()) {
306
0
                            _destroy_agg_status(hash_table.template get_null_key_data<
307
0
                                                vectorized::AggregateDataPtr>());
308
0
                        }
309
310
3.32k
                        aggregate_data_container.reset(new AggregateDataContainer(
311
3.32k
                                sizeof(typename HashTableType::key_type),
312
3.32k
                                ((total_size_of_aggregate_states + align_aggregate_states - 1) /
313
3.32k
                                 align_aggregate_states) *
314
3.32k
                                        align_aggregate_states));
315
3.32k
                        agg_method.hash_table.reset(new HashTableType());
316
3.32k
                        return Status::OK();
317
3.32k
                    }},
Unexecuted instantiation: dependency.cpp:_ZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized16MethodSerializedI9PHHashMapINS_9StringRefEPc11DefaultHashIS7_vEEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized15MethodOneNumberIh9PHHashMapIhPc9HashCRC32IhEEEEEEDaRT_
dependency.cpp:_ZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized15MethodOneNumberIt9PHHashMapItPc9HashCRC32ItEEEEEEDaRT_
Line
Count
Source
291
80
                    [&](auto& agg_method) {
292
80
                        auto& hash_table = *agg_method.hash_table;
293
80
                        using HashTableType = std::decay_t<decltype(hash_table)>;
294
295
80
                        agg_method.arena.clear();
296
80
                        agg_method.inited_iterator = false;
297
298
80
                        hash_table.for_each_mapped([&](auto& mapped) {
299
80
                            if (mapped) {
300
80
                                _destroy_agg_status(mapped);
301
80
                                mapped = nullptr;
302
80
                            }
303
80
                        });
304
305
80
                        if (hash_table.has_null_key_data()) {
306
0
                            _destroy_agg_status(hash_table.template get_null_key_data<
307
0
                                                vectorized::AggregateDataPtr>());
308
0
                        }
309
310
80
                        aggregate_data_container.reset(new AggregateDataContainer(
311
80
                                sizeof(typename HashTableType::key_type),
312
80
                                ((total_size_of_aggregate_states + align_aggregate_states - 1) /
313
80
                                 align_aggregate_states) *
314
80
                                        align_aggregate_states));
315
80
                        agg_method.hash_table.reset(new HashTableType());
316
80
                        return Status::OK();
317
80
                    }},
Unexecuted instantiation: dependency.cpp:_ZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized15MethodOneNumberIj9PHHashMapIjPc9HashCRC32IjEEEEEEDaRT_
dependency.cpp:_ZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized15MethodOneNumberIm9PHHashMapImPc9HashCRC32ImEEEEEEDaRT_
Line
Count
Source
291
218
                    [&](auto& agg_method) {
292
218
                        auto& hash_table = *agg_method.hash_table;
293
218
                        using HashTableType = std::decay_t<decltype(hash_table)>;
294
295
218
                        agg_method.arena.clear();
296
218
                        agg_method.inited_iterator = false;
297
298
218
                        hash_table.for_each_mapped([&](auto& mapped) {
299
218
                            if (mapped) {
300
218
                                _destroy_agg_status(mapped);
301
218
                                mapped = nullptr;
302
218
                            }
303
218
                        });
304
305
218
                        if (hash_table.has_null_key_data()) {
306
0
                            _destroy_agg_status(hash_table.template get_null_key_data<
307
0
                                                vectorized::AggregateDataPtr>());
308
0
                        }
309
310
218
                        aggregate_data_container.reset(new AggregateDataContainer(
311
218
                                sizeof(typename HashTableType::key_type),
312
218
                                ((total_size_of_aggregate_states + align_aggregate_states - 1) /
313
218
                                 align_aggregate_states) *
314
218
                                        align_aggregate_states));
315
218
                        agg_method.hash_table.reset(new HashTableType());
316
218
                        return Status::OK();
317
218
                    }},
Unexecuted instantiation: dependency.cpp:_ZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized19MethodStringNoCacheINS_13StringHashMapIPcNS_9AllocatorILb1ELb1ELb0ENS_22DefaultMemoryAllocatorELb1EEEEEEEEEDaRT_
dependency.cpp:_ZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapIS8_Pc9HashCRC32IS8_EEEEEEDaRT_
Line
Count
Source
291
154
                    [&](auto& agg_method) {
292
154
                        auto& hash_table = *agg_method.hash_table;
293
154
                        using HashTableType = std::decay_t<decltype(hash_table)>;
294
295
154
                        agg_method.arena.clear();
296
154
                        agg_method.inited_iterator = false;
297
298
154
                        hash_table.for_each_mapped([&](auto& mapped) {
299
154
                            if (mapped) {
300
154
                                _destroy_agg_status(mapped);
301
154
                                mapped = nullptr;
302
154
                            }
303
154
                        });
304
305
154
                        if (hash_table.has_null_key_data()) {
306
0
                            _destroy_agg_status(hash_table.template get_null_key_data<
307
0
                                                vectorized::AggregateDataPtr>());
308
0
                        }
309
310
154
                        aggregate_data_container.reset(new AggregateDataContainer(
311
154
                                sizeof(typename HashTableType::key_type),
312
154
                                ((total_size_of_aggregate_states + align_aggregate_states - 1) /
313
154
                                 align_aggregate_states) *
314
154
                                        align_aggregate_states));
315
154
                        agg_method.hash_table.reset(new HashTableType());
316
154
                        return Status::OK();
317
154
                    }},
Unexecuted instantiation: dependency.cpp:_ZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized15MethodOneNumberIN4wide7integerILm256EjEE9PHHashMapIS8_Pc9HashCRC32IS8_EEEEEEDaRT_
dependency.cpp:_ZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized15MethodOneNumberIj9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEEEEEEEDaRT_
Line
Count
Source
291
309
                    [&](auto& agg_method) {
292
309
                        auto& hash_table = *agg_method.hash_table;
293
309
                        using HashTableType = std::decay_t<decltype(hash_table)>;
294
295
309
                        agg_method.arena.clear();
296
309
                        agg_method.inited_iterator = false;
297
298
309
                        hash_table.for_each_mapped([&](auto& mapped) {
299
309
                            if (mapped) {
300
309
                                _destroy_agg_status(mapped);
301
309
                                mapped = nullptr;
302
309
                            }
303
309
                        });
304
305
309
                        if (hash_table.has_null_key_data()) {
306
0
                            _destroy_agg_status(hash_table.template get_null_key_data<
307
0
                                                vectorized::AggregateDataPtr>());
308
0
                        }
309
310
309
                        aggregate_data_container.reset(new AggregateDataContainer(
311
309
                                sizeof(typename HashTableType::key_type),
312
309
                                ((total_size_of_aggregate_states + align_aggregate_states - 1) /
313
309
                                 align_aggregate_states) *
314
309
                                        align_aggregate_states));
315
309
                        agg_method.hash_table.reset(new HashTableType());
316
309
                        return Status::OK();
317
309
                    }},
dependency.cpp:_ZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized15MethodOneNumberIm9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEEDaRT_
Line
Count
Source
291
990
                    [&](auto& agg_method) {
292
990
                        auto& hash_table = *agg_method.hash_table;
293
990
                        using HashTableType = std::decay_t<decltype(hash_table)>;
294
295
990
                        agg_method.arena.clear();
296
990
                        agg_method.inited_iterator = false;
297
298
990
                        hash_table.for_each_mapped([&](auto& mapped) {
299
990
                            if (mapped) {
300
990
                                _destroy_agg_status(mapped);
301
990
                                mapped = nullptr;
302
990
                            }
303
990
                        });
304
305
990
                        if (hash_table.has_null_key_data()) {
306
0
                            _destroy_agg_status(hash_table.template get_null_key_data<
307
0
                                                vectorized::AggregateDataPtr>());
308
0
                        }
309
310
990
                        aggregate_data_container.reset(new AggregateDataContainer(
311
990
                                sizeof(typename HashTableType::key_type),
312
990
                                ((total_size_of_aggregate_states + align_aggregate_states - 1) /
313
990
                                 align_aggregate_states) *
314
990
                                        align_aggregate_states));
315
990
                        agg_method.hash_table.reset(new HashTableType());
316
990
                        return Status::OK();
317
990
                    }},
dependency.cpp:_ZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized26MethodSingleNullableColumnINS4_15MethodOneNumberIhNS4_15DataWithNullKeyI9PHHashMapIhPc9HashCRC32IhEEEEEEEEEEDaRT_
Line
Count
Source
291
176
                    [&](auto& agg_method) {
292
176
                        auto& hash_table = *agg_method.hash_table;
293
176
                        using HashTableType = std::decay_t<decltype(hash_table)>;
294
295
176
                        agg_method.arena.clear();
296
176
                        agg_method.inited_iterator = false;
297
298
176
                        hash_table.for_each_mapped([&](auto& mapped) {
299
176
                            if (mapped) {
300
176
                                _destroy_agg_status(mapped);
301
176
                                mapped = nullptr;
302
176
                            }
303
176
                        });
304
305
176
                        if (hash_table.has_null_key_data()) {
306
0
                            _destroy_agg_status(hash_table.template get_null_key_data<
307
0
                                                vectorized::AggregateDataPtr>());
308
0
                        }
309
310
176
                        aggregate_data_container.reset(new AggregateDataContainer(
311
176
                                sizeof(typename HashTableType::key_type),
312
176
                                ((total_size_of_aggregate_states + align_aggregate_states - 1) /
313
176
                                 align_aggregate_states) *
314
176
                                        align_aggregate_states));
315
176
                        agg_method.hash_table.reset(new HashTableType());
316
176
                        return Status::OK();
317
176
                    }},
Unexecuted instantiation: dependency.cpp:_ZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized26MethodSingleNullableColumnINS4_15MethodOneNumberItNS4_15DataWithNullKeyI9PHHashMapItPc9HashCRC32ItEEEEEEEEEEDaRT_
dependency.cpp:_ZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized26MethodSingleNullableColumnINS4_15MethodOneNumberIjNS4_15DataWithNullKeyI9PHHashMapIjPc9HashCRC32IjEEEEEEEEEEDaRT_
Line
Count
Source
291
39
                    [&](auto& agg_method) {
292
39
                        auto& hash_table = *agg_method.hash_table;
293
39
                        using HashTableType = std::decay_t<decltype(hash_table)>;
294
295
39
                        agg_method.arena.clear();
296
39
                        agg_method.inited_iterator = false;
297
298
39
                        hash_table.for_each_mapped([&](auto& mapped) {
299
39
                            if (mapped) {
300
39
                                _destroy_agg_status(mapped);
301
39
                                mapped = nullptr;
302
39
                            }
303
39
                        });
304
305
39
                        if (hash_table.has_null_key_data()) {
306
0
                            _destroy_agg_status(hash_table.template get_null_key_data<
307
0
                                                vectorized::AggregateDataPtr>());
308
0
                        }
309
310
39
                        aggregate_data_container.reset(new AggregateDataContainer(
311
39
                                sizeof(typename HashTableType::key_type),
312
39
                                ((total_size_of_aggregate_states + align_aggregate_states - 1) /
313
39
                                 align_aggregate_states) *
314
39
                                        align_aggregate_states));
315
39
                        agg_method.hash_table.reset(new HashTableType());
316
39
                        return Status::OK();
317
39
                    }},
dependency.cpp:_ZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized26MethodSingleNullableColumnINS4_15MethodOneNumberImNS4_15DataWithNullKeyI9PHHashMapImPc9HashCRC32ImEEEEEEEEEEDaRT_
Line
Count
Source
291
280
                    [&](auto& agg_method) {
292
280
                        auto& hash_table = *agg_method.hash_table;
293
280
                        using HashTableType = std::decay_t<decltype(hash_table)>;
294
295
280
                        agg_method.arena.clear();
296
280
                        agg_method.inited_iterator = false;
297
298
280
                        hash_table.for_each_mapped([&](auto& mapped) {
299
280
                            if (mapped) {
300
280
                                _destroy_agg_status(mapped);
301
280
                                mapped = nullptr;
302
280
                            }
303
280
                        });
304
305
280
                        if (hash_table.has_null_key_data()) {
306
0
                            _destroy_agg_status(hash_table.template get_null_key_data<
307
0
                                                vectorized::AggregateDataPtr>());
308
0
                        }
309
310
280
                        aggregate_data_container.reset(new AggregateDataContainer(
311
280
                                sizeof(typename HashTableType::key_type),
312
280
                                ((total_size_of_aggregate_states + align_aggregate_states - 1) /
313
280
                                 align_aggregate_states) *
314
280
                                        align_aggregate_states));
315
280
                        agg_method.hash_table.reset(new HashTableType());
316
280
                        return Status::OK();
317
280
                    }},
dependency.cpp:_ZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized26MethodSingleNullableColumnINS4_15MethodOneNumberIjNS4_15DataWithNullKeyI9PHHashMapIjPc14HashMixWrapperIj9HashCRC32IjEEEEEEEEEEEDaRT_
Line
Count
Source
291
180
                    [&](auto& agg_method) {
292
180
                        auto& hash_table = *agg_method.hash_table;
293
180
                        using HashTableType = std::decay_t<decltype(hash_table)>;
294
295
180
                        agg_method.arena.clear();
296
180
                        agg_method.inited_iterator = false;
297
298
180
                        hash_table.for_each_mapped([&](auto& mapped) {
299
180
                            if (mapped) {
300
180
                                _destroy_agg_status(mapped);
301
180
                                mapped = nullptr;
302
180
                            }
303
180
                        });
304
305
180
                        if (hash_table.has_null_key_data()) {
306
0
                            _destroy_agg_status(hash_table.template get_null_key_data<
307
0
                                                vectorized::AggregateDataPtr>());
308
0
                        }
309
310
180
                        aggregate_data_container.reset(new AggregateDataContainer(
311
180
                                sizeof(typename HashTableType::key_type),
312
180
                                ((total_size_of_aggregate_states + align_aggregate_states - 1) /
313
180
                                 align_aggregate_states) *
314
180
                                        align_aggregate_states));
315
180
                        agg_method.hash_table.reset(new HashTableType());
316
180
                        return Status::OK();
317
180
                    }},
dependency.cpp:_ZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized26MethodSingleNullableColumnINS4_15MethodOneNumberImNS4_15DataWithNullKeyI9PHHashMapImPc14HashMixWrapperIm9HashCRC32ImEEEEEEEEEEEDaRT_
Line
Count
Source
291
789
                    [&](auto& agg_method) {
292
789
                        auto& hash_table = *agg_method.hash_table;
293
789
                        using HashTableType = std::decay_t<decltype(hash_table)>;
294
295
789
                        agg_method.arena.clear();
296
789
                        agg_method.inited_iterator = false;
297
298
789
                        hash_table.for_each_mapped([&](auto& mapped) {
299
789
                            if (mapped) {
300
789
                                _destroy_agg_status(mapped);
301
789
                                mapped = nullptr;
302
789
                            }
303
789
                        });
304
305
789
                        if (hash_table.has_null_key_data()) {
306
0
                            _destroy_agg_status(hash_table.template get_null_key_data<
307
0
                                                vectorized::AggregateDataPtr>());
308
0
                        }
309
310
789
                        aggregate_data_container.reset(new AggregateDataContainer(
311
789
                                sizeof(typename HashTableType::key_type),
312
789
                                ((total_size_of_aggregate_states + align_aggregate_states - 1) /
313
789
                                 align_aggregate_states) *
314
789
                                        align_aggregate_states));
315
789
                        agg_method.hash_table.reset(new HashTableType());
316
789
                        return Status::OK();
317
789
                    }},
dependency.cpp:_ZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized26MethodSingleNullableColumnINS4_15MethodOneNumberIN4wide7integerILm128EjEENS4_15DataWithNullKeyI9PHHashMapIS9_Pc9HashCRC32IS9_EEEEEEEEEEDaRT_
Line
Count
Source
291
114
                    [&](auto& agg_method) {
292
114
                        auto& hash_table = *agg_method.hash_table;
293
114
                        using HashTableType = std::decay_t<decltype(hash_table)>;
294
295
114
                        agg_method.arena.clear();
296
114
                        agg_method.inited_iterator = false;
297
298
114
                        hash_table.for_each_mapped([&](auto& mapped) {
299
114
                            if (mapped) {
300
114
                                _destroy_agg_status(mapped);
301
114
                                mapped = nullptr;
302
114
                            }
303
114
                        });
304
305
114
                        if (hash_table.has_null_key_data()) {
306
0
                            _destroy_agg_status(hash_table.template get_null_key_data<
307
0
                                                vectorized::AggregateDataPtr>());
308
0
                        }
309
310
114
                        aggregate_data_container.reset(new AggregateDataContainer(
311
114
                                sizeof(typename HashTableType::key_type),
312
114
                                ((total_size_of_aggregate_states + align_aggregate_states - 1) /
313
114
                                 align_aggregate_states) *
314
114
                                        align_aggregate_states));
315
114
                        agg_method.hash_table.reset(new HashTableType());
316
114
                        return Status::OK();
317
114
                    }},
Unexecuted instantiation: dependency.cpp:_ZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized26MethodSingleNullableColumnINS4_15MethodOneNumberIN4wide7integerILm256EjEENS4_15DataWithNullKeyI9PHHashMapIS9_Pc9HashCRC32IS9_EEEEEEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized26MethodSingleNullableColumnINS4_19MethodStringNoCacheINS4_15DataWithNullKeyINS_13StringHashMapIPcNS_9AllocatorILb1ELb1ELb0ENS_22DefaultMemoryAllocatorELb1EEEEEEEEEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized15MethodKeysFixedI9PHHashMapImPc9HashCRC32ImEEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized15MethodKeysFixedI9PHHashMapINS4_6UInt72EPc9HashCRC32IS7_EEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized15MethodKeysFixedI9PHHashMapINS4_6UInt96EPc9HashCRC32IS7_EEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized15MethodKeysFixedI9PHHashMapINS4_7UInt104EPc9HashCRC32IS7_EEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEEPc9HashCRC32IS9_EEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized15MethodKeysFixedI9PHHashMapINS4_7UInt136EPc9HashCRC32IS7_EEEEEEDaRT_
Unexecuted instantiation: dependency.cpp:_ZZN5doris8pipeline14AggSharedState16reset_hash_tableEvENK3$_1clINS_10vectorized15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEEPc9HashCRC32IS9_EEEEEEDaRT_
318
3.32k
            agg_data->method_variant);
319
3.32k
}
320
321
317
void PartitionedAggSharedState::init_spill_params(size_t spill_partition_count) {
322
317
    partition_count = spill_partition_count;
323
317
    max_partition_index = partition_count - 1;
324
325
10.4k
    for (int i = 0; i < partition_count; ++i) {
326
10.1k
        spill_partitions.emplace_back(std::make_shared<AggSpillPartition>());
327
10.1k
    }
328
317
}
329
330
305
void PartitionedAggSharedState::update_spill_stream_profiles(RuntimeProfile* source_profile) {
331
9.76k
    for (auto& partition : spill_partitions) {
332
9.76k
        if (partition->spilling_stream_) {
333
0
            partition->spilling_stream_->update_shared_profiles(source_profile);
334
0
        }
335
9.76k
        for (auto& stream : partition->spill_streams_) {
336
2.37k
            if (stream) {
337
2.37k
                stream->update_shared_profiles(source_profile);
338
2.37k
            }
339
2.37k
        }
340
9.76k
    }
341
305
}
342
343
Status AggSpillPartition::get_spill_stream(RuntimeState* state, int node_id,
344
                                           RuntimeProfile* profile,
345
4.77k
                                           vectorized::SpillStreamSPtr& spill_stream) {
346
4.77k
    if (spilling_stream_) {
347
2.34k
        spill_stream = spilling_stream_;
348
2.34k
        return Status::OK();
349
2.34k
    }
350
2.42k
    RETURN_IF_ERROR(ExecEnv::GetInstance()->spill_stream_mgr()->register_spill_stream(
351
2.42k
            state, spilling_stream_, print_id(state->query_id()), "agg", node_id,
352
2.42k
            std::numeric_limits<int32_t>::max(), std::numeric_limits<size_t>::max(), profile));
353
2.42k
    spill_streams_.emplace_back(spilling_stream_);
354
2.42k
    spill_stream = spilling_stream_;
355
2.42k
    return Status::OK();
356
2.42k
}
357
6.76k
void AggSpillPartition::close() {
358
6.76k
    if (spilling_stream_) {
359
1
        spilling_stream_.reset();
360
1
    }
361
6.76k
    for (auto& stream : spill_streams_) {
362
5
        (void)ExecEnv::GetInstance()->spill_stream_mgr()->delete_spill_stream(stream);
363
5
    }
364
6.76k
    spill_streams_.clear();
365
6.76k
}
366
367
340
void PartitionedAggSharedState::close() {
368
    // need to use CAS instead of only `if (!is_closed)` statement,
369
    // to avoid concurrent entry of close() both pass the if statement
370
340
    bool false_close = false;
371
340
    if (!is_closed.compare_exchange_strong(false_close, true)) {
372
30
        return;
373
30
    }
374
340
    DCHECK(!false_close && is_closed);
375
6.76k
    for (auto partition : spill_partitions) {
376
6.76k
        partition->close();
377
6.76k
    }
378
310
    spill_partitions.clear();
379
310
}
380
381
18
void SpillSortSharedState::update_spill_stream_profiles(RuntimeProfile* source_profile) {
382
28
    for (auto& stream : sorted_streams) {
383
28
        if (stream) {
384
28
            stream->update_shared_profiles(source_profile);
385
28
        }
386
28
    }
387
18
}
388
389
20
void SpillSortSharedState::close() {
390
    // need to use CAS instead of only `if (!is_closed)` statement,
391
    // to avoid concurrent entry of close() both pass the if statement
392
20
    bool false_close = false;
393
20
    if (!is_closed.compare_exchange_strong(false_close, true)) {
394
1
        return;
395
1
    }
396
20
    DCHECK(!false_close && is_closed);
397
19
    for (auto& stream : sorted_streams) {
398
1
        (void)ExecEnv::GetInstance()->spill_stream_mgr()->delete_spill_stream(stream);
399
1
    }
400
19
    sorted_streams.clear();
401
19
}
402
403
MultiCastSharedState::MultiCastSharedState(ObjectPool* pool, int cast_sender_count, int node_id)
404
3.05k
        : multi_cast_data_streamer(std::make_unique<pipeline::MultiCastDataStreamer>(
405
3.05k
                  pool, cast_sender_count, node_id)) {}
406
407
0
void MultiCastSharedState::update_spill_stream_profiles(RuntimeProfile* source_profile) {}
408
409
111k
int AggSharedState::get_slot_column_id(const vectorized::AggFnEvaluator* evaluator) {
410
111k
    auto ctxs = evaluator->input_exprs_ctxs();
411
18.4E
    CHECK(ctxs.size() == 1 && ctxs[0]->root()->is_slot_ref())
412
18.4E
            << "input_exprs_ctxs is invalid, input_exprs_ctx[0]="
413
18.4E
            << ctxs[0]->root()->debug_string();
414
111k
    return ((vectorized::VSlotRef*)ctxs[0]->root().get())->column_id();
415
111k
}
416
417
2.26M
void AggSharedState::_destroy_agg_status(vectorized::AggregateDataPtr data) {
418
4.80M
    for (int i = 0; i < aggregate_evaluators.size(); ++i) {
419
2.53M
        aggregate_evaluators[i]->function()->destroy(data + offsets_of_aggregate_states[i]);
420
2.53M
    }
421
2.26M
}
422
423
105k
LocalExchangeSharedState::~LocalExchangeSharedState() = default;
424
425
12.5k
Status SetSharedState::update_build_not_ignore_null(const vectorized::VExprContextSPtrs& ctxs) {
426
12.5k
    if (ctxs.size() > build_not_ignore_null.size()) {
427
0
        return Status::InternalError("build_not_ignore_null not initialized");
428
0
    }
429
430
102k
    for (int i = 0; i < ctxs.size(); ++i) {
431
89.8k
        build_not_ignore_null[i] = build_not_ignore_null[i] || ctxs[i]->root()->is_nullable();
432
89.8k
    }
433
434
12.5k
    return Status::OK();
435
12.5k
}
436
437
20.0k
size_t SetSharedState::get_hash_table_size() const {
438
20.0k
    size_t hash_table_size = 0;
439
20.0k
    std::visit(
440
20.0k
            [&](auto&& arg) {
441
20.0k
                using HashTableCtxType = std::decay_t<decltype(arg)>;
442
20.0k
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
443
20.0k
                    hash_table_size = arg.hash_table->size();
444
20.0k
                }
445
20.0k
            },
Unexecuted instantiation: dependency.cpp:_ZZNK5doris8pipeline14SetSharedState19get_hash_table_sizeEvENK3$_0clIRSt9monostateEEDaOT_
dependency.cpp:_ZZNK5doris8pipeline14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_10vectorized16MethodSerializedI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashIS7_vEEEEEEDaOT_
Line
Count
Source
440
18.3k
            [&](auto&& arg) {
441
18.3k
                using HashTableCtxType = std::decay_t<decltype(arg)>;
442
18.3k
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
443
18.3k
                    hash_table_size = arg.hash_table->size();
444
18.3k
                }
445
18.3k
            },
dependency.cpp:_ZZNK5doris8pipeline14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_10vectorized19MethodStringNoCacheI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashIS7_vEEEEEEDaOT_
Line
Count
Source
440
268
            [&](auto&& arg) {
441
268
                using HashTableCtxType = std::decay_t<decltype(arg)>;
442
268
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
443
268
                    hash_table_size = arg.hash_table->size();
444
268
                }
445
268
            },
dependency.cpp:_ZZNK5doris8pipeline14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_10vectorized26MethodSingleNullableColumnINS4_19MethodStringNoCacheINS4_15DataWithNullKeyI9PHHashMapINS_9StringRefENS_14RowRefWithFlagE11DefaultHashIS9_vEEEEEEEEEEDaOT_
Line
Count
Source
440
119
            [&](auto&& arg) {
441
119
                using HashTableCtxType = std::decay_t<decltype(arg)>;
442
119
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
443
119
                    hash_table_size = arg.hash_table->size();
444
119
                }
445
119
            },
dependency.cpp:_ZZNK5doris8pipeline14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_10vectorized26MethodSingleNullableColumnINS4_15MethodOneNumberIhNS4_15DataWithNullKeyI9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEEEEEDaOT_
Line
Count
Source
440
99
            [&](auto&& arg) {
441
99
                using HashTableCtxType = std::decay_t<decltype(arg)>;
442
99
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
443
99
                    hash_table_size = arg.hash_table->size();
444
99
                }
445
99
            },
Unexecuted instantiation: dependency.cpp:_ZZNK5doris8pipeline14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_10vectorized26MethodSingleNullableColumnINS4_15MethodOneNumberItNS4_15DataWithNullKeyI9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEEEEEDaOT_
dependency.cpp:_ZZNK5doris8pipeline14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_10vectorized26MethodSingleNullableColumnINS4_15MethodOneNumberIjNS4_15DataWithNullKeyI9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEEEEEDaOT_
Line
Count
Source
440
804
            [&](auto&& arg) {
441
804
                using HashTableCtxType = std::decay_t<decltype(arg)>;
442
804
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
443
804
                    hash_table_size = arg.hash_table->size();
444
804
                }
445
804
            },
dependency.cpp:_ZZNK5doris8pipeline14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_10vectorized26MethodSingleNullableColumnINS4_15MethodOneNumberImNS4_15DataWithNullKeyI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEEEEEDaOT_
Line
Count
Source
440
40
            [&](auto&& arg) {
441
40
                using HashTableCtxType = std::decay_t<decltype(arg)>;
442
40
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
443
40
                    hash_table_size = arg.hash_table->size();
444
40
                }
445
40
            },
dependency.cpp:_ZZNK5doris8pipeline14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_10vectorized26MethodSingleNullableColumnINS4_15MethodOneNumberIN4wide7integerILm128EjEENS4_15DataWithNullKeyI9PHHashMapIS9_NS_14RowRefWithFlagE9HashCRC32IS9_EEEEEEEEEEDaOT_
Line
Count
Source
440
191
            [&](auto&& arg) {
441
191
                using HashTableCtxType = std::decay_t<decltype(arg)>;
442
191
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
443
191
                    hash_table_size = arg.hash_table->size();
444
191
                }
445
191
            },
Unexecuted instantiation: dependency.cpp:_ZZNK5doris8pipeline14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_10vectorized26MethodSingleNullableColumnINS4_15MethodOneNumberIN4wide7integerILm256EjEENS4_15DataWithNullKeyI9PHHashMapIS9_NS_14RowRefWithFlagE9HashCRC32IS9_EEEEEEEEEEDaOT_
Unexecuted instantiation: dependency.cpp:_ZZNK5doris8pipeline14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_10vectorized15MethodOneNumberIh9PHHashMapIhNS_14RowRefWithFlagE9HashCRC32IhEEEEEEDaOT_
Unexecuted instantiation: dependency.cpp:_ZZNK5doris8pipeline14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_10vectorized15MethodOneNumberIt9PHHashMapItNS_14RowRefWithFlagE9HashCRC32ItEEEEEEDaOT_
dependency.cpp:_ZZNK5doris8pipeline14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_10vectorized15MethodOneNumberIj9PHHashMapIjNS_14RowRefWithFlagE9HashCRC32IjEEEEEEDaOT_
Line
Count
Source
440
30
            [&](auto&& arg) {
441
30
                using HashTableCtxType = std::decay_t<decltype(arg)>;
442
30
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
443
30
                    hash_table_size = arg.hash_table->size();
444
30
                }
445
30
            },
dependency.cpp:_ZZNK5doris8pipeline14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_10vectorized15MethodOneNumberIm9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEDaOT_
Line
Count
Source
440
16
            [&](auto&& arg) {
441
16
                using HashTableCtxType = std::decay_t<decltype(arg)>;
442
16
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
443
16
                    hash_table_size = arg.hash_table->size();
444
16
                }
445
16
            },
Unexecuted instantiation: dependency.cpp:_ZZNK5doris8pipeline14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_10vectorized15MethodOneNumberIN4wide7integerILm128EjEE9PHHashMapIS8_NS_14RowRefWithFlagE9HashCRC32IS8_EEEEEEDaOT_
Unexecuted instantiation: dependency.cpp:_ZZNK5doris8pipeline14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_10vectorized15MethodOneNumberIN4wide7integerILm256EjEE9PHHashMapIS8_NS_14RowRefWithFlagE9HashCRC32IS8_EEEEEEDaOT_
dependency.cpp:_ZZNK5doris8pipeline14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_10vectorized15MethodKeysFixedI9PHHashMapImNS_14RowRefWithFlagE9HashCRC32ImEEEEEEDaOT_
Line
Count
Source
440
27
            [&](auto&& arg) {
441
27
                using HashTableCtxType = std::decay_t<decltype(arg)>;
442
27
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
443
27
                    hash_table_size = arg.hash_table->size();
444
27
                }
445
27
            },
dependency.cpp:_ZZNK5doris8pipeline14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_10vectorized15MethodKeysFixedI9PHHashMapINS4_6UInt72ENS_14RowRefWithFlagE9HashCRC32IS7_EEEEEEDaOT_
Line
Count
Source
440
69
            [&](auto&& arg) {
441
69
                using HashTableCtxType = std::decay_t<decltype(arg)>;
442
69
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
443
69
                    hash_table_size = arg.hash_table->size();
444
69
                }
445
69
            },
dependency.cpp:_ZZNK5doris8pipeline14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_10vectorized15MethodKeysFixedI9PHHashMapINS4_6UInt96ENS_14RowRefWithFlagE9HashCRC32IS7_EEEEEEDaOT_
Line
Count
Source
440
24
            [&](auto&& arg) {
441
24
                using HashTableCtxType = std::decay_t<decltype(arg)>;
442
24
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
443
24
                    hash_table_size = arg.hash_table->size();
444
24
                }
445
24
            },
dependency.cpp:_ZZNK5doris8pipeline14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_10vectorized15MethodKeysFixedI9PHHashMapINS4_7UInt104ENS_14RowRefWithFlagE9HashCRC32IS7_EEEEEEDaOT_
Line
Count
Source
440
18
            [&](auto&& arg) {
441
18
                using HashTableCtxType = std::decay_t<decltype(arg)>;
442
18
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
443
18
                    hash_table_size = arg.hash_table->size();
444
18
                }
445
18
            },
Unexecuted instantiation: dependency.cpp:_ZZNK5doris8pipeline14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_10vectorized15MethodKeysFixedI9PHHashMapIN4wide7integerILm128EjEENS_14RowRefWithFlagE9HashCRC32IS9_EEEEEEDaOT_
dependency.cpp:_ZZNK5doris8pipeline14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_10vectorized15MethodKeysFixedI9PHHashMapIN4wide7integerILm256EjEENS_14RowRefWithFlagE9HashCRC32IS9_EEEEEEDaOT_
Line
Count
Source
440
4
            [&](auto&& arg) {
441
4
                using HashTableCtxType = std::decay_t<decltype(arg)>;
442
4
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
443
4
                    hash_table_size = arg.hash_table->size();
444
4
                }
445
4
            },
dependency.cpp:_ZZNK5doris8pipeline14SetSharedState19get_hash_table_sizeEvENK3$_0clIRNS_10vectorized15MethodKeysFixedI9PHHashMapINS4_7UInt136ENS_14RowRefWithFlagE9HashCRC32IS7_EEEEEEDaOT_
Line
Count
Source
440
26
            [&](auto&& arg) {
441
26
                using HashTableCtxType = std::decay_t<decltype(arg)>;
442
26
                if constexpr (!std::is_same_v<HashTableCtxType, std::monostate>) {
443
26
                    hash_table_size = arg.hash_table->size();
444
26
                }
445
26
            },
446
20.0k
            hash_table_variants->method_variant);
447
20.0k
    return hash_table_size;
448
20.0k
}
449
450
5.11k
Status SetSharedState::hash_table_init() {
451
5.11k
    std::vector<vectorized::DataTypePtr> data_types;
452
41.1k
    for (size_t i = 0; i != child_exprs_lists[0].size(); ++i) {
453
36.0k
        auto& ctx = child_exprs_lists[0][i];
454
36.0k
        auto data_type = ctx->root()->data_type();
455
36.0k
        if (build_not_ignore_null[i]) {
456
35.8k
            data_type = vectorized::make_nullable(data_type);
457
35.8k
        }
458
36.0k
        data_types.emplace_back(std::move(data_type));
459
36.0k
    }
460
5.11k
    return init_hash_method<SetDataVariants>(hash_table_variants.get(), data_types, true);
461
5.11k
}
462
463
void AggSharedState::refresh_top_limit(size_t row_id,
464
6
                                       const vectorized::ColumnRawPtrs& key_columns) {
465
12
    for (int j = 0; j < key_columns.size(); ++j) {
466
6
        limit_columns[j]->insert_from(*key_columns[j], row_id);
467
6
    }
468
6
    limit_heap.emplace(limit_columns[0]->size() - 1, limit_columns, order_directions,
469
6
                       null_directions);
470
471
6
    limit_heap.pop();
472
6
    limit_columns_min = limit_heap.top()._row_id;
473
6
}
474
475
} // namespace doris::pipeline