Coverage Report

Created: 2026-04-16 09:07

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
be/src/exec/exchange/local_exchanger.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/exchange/local_exchanger.h"
19
20
#include "common/cast_set.h"
21
#include "common/status.h"
22
#include "exec/exchange/local_exchange_sink_operator.h"
23
#include "exec/exchange/local_exchange_source_operator.h"
24
#include "exec/partitioner/partitioner.h"
25
26
namespace doris {
27
template <typename BlockType>
28
void Exchanger<BlockType>::_enqueue_data_and_set_ready(int channel_id,
29
                                                       LocalExchangeSinkLocalState* local_state,
30
258k
                                                       BlockType&& block) {
31
258k
    if (local_state == nullptr) {
32
0
        _enqueue_data_and_set_ready(channel_id, std::move(block));
33
0
        return;
34
0
    }
35
    // PartitionedBlock is used by shuffle exchanger.
36
    // PartitionedBlock will be push into multiple queues with different row ranges, so it will be
37
    // referenced multiple times. Otherwise, we only ref the block once because it is only push into
38
    // one queue.
39
258k
    std::unique_lock l(*_m[channel_id]);
40
    if constexpr (std::is_same_v<PartitionedBlock, BlockType> ||
41
56.7k
                  std::is_same_v<BroadcastBlock, BlockType>) {
42
56.7k
        block.first->record_channel_id(channel_id);
43
201k
    } else {
44
201k
        block->record_channel_id(channel_id);
45
201k
    }
46
47
258k
    if (_data_queue[channel_id].enqueue(std::move(block))) {
48
258k
        local_state->_shared_state->set_ready_to_read(channel_id);
49
258k
    }
50
258k
}
_ZN5doris9ExchangerISt4pairISt10shared_ptrINS_13ExchangerBase12BlockWrapperEENS_18PartitionedRowIdxsEEE27_enqueue_data_and_set_readyEiPNS_27LocalExchangeSinkLocalStateEOS7_
Line
Count
Source
30
33.8k
                                                       BlockType&& block) {
31
33.8k
    if (local_state == nullptr) {
32
0
        _enqueue_data_and_set_ready(channel_id, std::move(block));
33
0
        return;
34
0
    }
35
    // PartitionedBlock is used by shuffle exchanger.
36
    // PartitionedBlock will be push into multiple queues with different row ranges, so it will be
37
    // referenced multiple times. Otherwise, we only ref the block once because it is only push into
38
    // one queue.
39
33.8k
    std::unique_lock l(*_m[channel_id]);
40
    if constexpr (std::is_same_v<PartitionedBlock, BlockType> ||
41
33.8k
                  std::is_same_v<BroadcastBlock, BlockType>) {
42
33.8k
        block.first->record_channel_id(channel_id);
43
    } else {
44
        block->record_channel_id(channel_id);
45
    }
46
47
33.8k
    if (_data_queue[channel_id].enqueue(std::move(block))) {
48
33.8k
        local_state->_shared_state->set_ready_to_read(channel_id);
49
33.8k
    }
50
33.8k
}
_ZN5doris9ExchangerISt10shared_ptrINS_13ExchangerBase12BlockWrapperEEE27_enqueue_data_and_set_readyEiPNS_27LocalExchangeSinkLocalStateEOS4_
Line
Count
Source
30
201k
                                                       BlockType&& block) {
31
201k
    if (local_state == nullptr) {
32
0
        _enqueue_data_and_set_ready(channel_id, std::move(block));
33
0
        return;
34
0
    }
35
    // PartitionedBlock is used by shuffle exchanger.
36
    // PartitionedBlock will be push into multiple queues with different row ranges, so it will be
37
    // referenced multiple times. Otherwise, we only ref the block once because it is only push into
38
    // one queue.
39
201k
    std::unique_lock l(*_m[channel_id]);
40
    if constexpr (std::is_same_v<PartitionedBlock, BlockType> ||
41
                  std::is_same_v<BroadcastBlock, BlockType>) {
42
        block.first->record_channel_id(channel_id);
43
201k
    } else {
44
201k
        block->record_channel_id(channel_id);
45
201k
    }
46
47
201k
    if (_data_queue[channel_id].enqueue(std::move(block))) {
48
201k
        local_state->_shared_state->set_ready_to_read(channel_id);
49
201k
    }
50
201k
}
_ZN5doris9ExchangerISt4pairISt10shared_ptrINS_13ExchangerBase12BlockWrapperEENS_17BroadcastRowRangeEEE27_enqueue_data_and_set_readyEiPNS_27LocalExchangeSinkLocalStateEOS7_
Line
Count
Source
30
22.8k
                                                       BlockType&& block) {
31
22.8k
    if (local_state == nullptr) {
32
0
        _enqueue_data_and_set_ready(channel_id, std::move(block));
33
0
        return;
34
0
    }
35
    // PartitionedBlock is used by shuffle exchanger.
36
    // PartitionedBlock will be push into multiple queues with different row ranges, so it will be
37
    // referenced multiple times. Otherwise, we only ref the block once because it is only push into
38
    // one queue.
39
22.8k
    std::unique_lock l(*_m[channel_id]);
40
    if constexpr (std::is_same_v<PartitionedBlock, BlockType> ||
41
22.8k
                  std::is_same_v<BroadcastBlock, BlockType>) {
42
22.8k
        block.first->record_channel_id(channel_id);
43
    } else {
44
        block->record_channel_id(channel_id);
45
    }
46
47
22.8k
    if (_data_queue[channel_id].enqueue(std::move(block))) {
48
22.8k
        local_state->_shared_state->set_ready_to_read(channel_id);
49
22.8k
    }
50
22.8k
}
51
52
template <typename BlockType>
53
bool Exchanger<BlockType>::_dequeue_data(LocalExchangeSourceLocalState* local_state,
54
                                         BlockType& block, bool* eos, Block* data_block,
55
1.78M
                                         int channel_id) {
56
1.78M
    if (local_state == nullptr) {
57
20
        return _dequeue_data(block, eos, data_block, channel_id);
58
20
    }
59
1.78M
    bool all_finished = _running_sink_operators == 0;
60
1.78M
    if (_data_queue[channel_id].try_dequeue(block)) {
61
        if constexpr (std::is_same_v<PartitionedBlock, BlockType> ||
62
56.6k
                      std::is_same_v<BroadcastBlock, BlockType>) {
63
56.6k
            local_state->_shared_state->sub_mem_usage(channel_id, block.first->_allocated_bytes);
64
201k
        } else {
65
201k
            local_state->_shared_state->sub_mem_usage(channel_id, block->_allocated_bytes);
66
201k
            data_block->swap(block->_data_block);
67
201k
        }
68
258k
        return true;
69
1.52M
    } else if (all_finished) {
70
1.37M
        *eos = true;
71
1.37M
    } else {
72
149k
        std::unique_lock l(*_m[channel_id]);
73
149k
        if (_data_queue[channel_id].try_dequeue(block)) {
74
            if constexpr (std::is_same_v<PartitionedBlock, BlockType> ||
75
15
                          std::is_same_v<BroadcastBlock, BlockType>) {
76
15
                local_state->_shared_state->sub_mem_usage(channel_id,
77
15
                                                          block.first->_allocated_bytes);
78
15
            } else {
79
14
                local_state->_shared_state->sub_mem_usage(channel_id, block->_allocated_bytes);
80
14
                data_block->swap(block->_data_block);
81
14
            }
82
29
            return true;
83
29
        }
84
149k
        COUNTER_UPDATE(local_state->_get_block_failed_counter, 1);
85
149k
        local_state->_dependency->block();
86
149k
    }
87
1.52M
    return false;
88
1.78M
}
_ZN5doris9ExchangerISt4pairISt10shared_ptrINS_13ExchangerBase12BlockWrapperEENS_18PartitionedRowIdxsEEE13_dequeue_dataEPNS_29LocalExchangeSourceLocalStateERS7_PbPNS_5BlockEi
Line
Count
Source
55
222k
                                         int channel_id) {
56
222k
    if (local_state == nullptr) {
57
4
        return _dequeue_data(block, eos, data_block, channel_id);
58
4
    }
59
222k
    bool all_finished = _running_sink_operators == 0;
60
222k
    if (_data_queue[channel_id].try_dequeue(block)) {
61
        if constexpr (std::is_same_v<PartitionedBlock, BlockType> ||
62
33.8k
                      std::is_same_v<BroadcastBlock, BlockType>) {
63
33.8k
            local_state->_shared_state->sub_mem_usage(channel_id, block.first->_allocated_bytes);
64
        } else {
65
            local_state->_shared_state->sub_mem_usage(channel_id, block->_allocated_bytes);
66
            data_block->swap(block->_data_block);
67
        }
68
33.8k
        return true;
69
188k
    } else if (all_finished) {
70
169k
        *eos = true;
71
169k
    } else {
72
19.6k
        std::unique_lock l(*_m[channel_id]);
73
19.6k
        if (_data_queue[channel_id].try_dequeue(block)) {
74
            if constexpr (std::is_same_v<PartitionedBlock, BlockType> ||
75
9
                          std::is_same_v<BroadcastBlock, BlockType>) {
76
9
                local_state->_shared_state->sub_mem_usage(channel_id,
77
9
                                                          block.first->_allocated_bytes);
78
            } else {
79
                local_state->_shared_state->sub_mem_usage(channel_id, block->_allocated_bytes);
80
                data_block->swap(block->_data_block);
81
            }
82
9
            return true;
83
9
        }
84
19.6k
        COUNTER_UPDATE(local_state->_get_block_failed_counter, 1);
85
19.6k
        local_state->_dependency->block();
86
19.6k
    }
87
188k
    return false;
88
222k
}
_ZN5doris9ExchangerISt10shared_ptrINS_13ExchangerBase12BlockWrapperEEE13_dequeue_dataEPNS_29LocalExchangeSourceLocalStateERS4_PbPNS_5BlockEi
Line
Count
Source
55
1.50M
                                         int channel_id) {
56
1.50M
    if (local_state == nullptr) {
57
12
        return _dequeue_data(block, eos, data_block, channel_id);
58
12
    }
59
1.50M
    bool all_finished = _running_sink_operators == 0;
60
1.50M
    if (_data_queue[channel_id].try_dequeue(block)) {
61
        if constexpr (std::is_same_v<PartitionedBlock, BlockType> ||
62
                      std::is_same_v<BroadcastBlock, BlockType>) {
63
            local_state->_shared_state->sub_mem_usage(channel_id, block.first->_allocated_bytes);
64
201k
        } else {
65
201k
            local_state->_shared_state->sub_mem_usage(channel_id, block->_allocated_bytes);
66
201k
            data_block->swap(block->_data_block);
67
201k
        }
68
201k
        return true;
69
1.30M
    } else if (all_finished) {
70
1.18M
        *eos = true;
71
1.18M
    } else {
72
124k
        std::unique_lock l(*_m[channel_id]);
73
124k
        if (_data_queue[channel_id].try_dequeue(block)) {
74
            if constexpr (std::is_same_v<PartitionedBlock, BlockType> ||
75
                          std::is_same_v<BroadcastBlock, BlockType>) {
76
                local_state->_shared_state->sub_mem_usage(channel_id,
77
                                                          block.first->_allocated_bytes);
78
14
            } else {
79
14
                local_state->_shared_state->sub_mem_usage(channel_id, block->_allocated_bytes);
80
14
                data_block->swap(block->_data_block);
81
14
            }
82
14
            return true;
83
14
        }
84
124k
        COUNTER_UPDATE(local_state->_get_block_failed_counter, 1);
85
124k
        local_state->_dependency->block();
86
124k
    }
87
1.30M
    return false;
88
1.50M
}
_ZN5doris9ExchangerISt4pairISt10shared_ptrINS_13ExchangerBase12BlockWrapperEENS_17BroadcastRowRangeEEE13_dequeue_dataEPNS_29LocalExchangeSourceLocalStateERS7_PbPNS_5BlockEi
Line
Count
Source
55
52.4k
                                         int channel_id) {
56
52.4k
    if (local_state == nullptr) {
57
4
        return _dequeue_data(block, eos, data_block, channel_id);
58
4
    }
59
52.4k
    bool all_finished = _running_sink_operators == 0;
60
52.4k
    if (_data_queue[channel_id].try_dequeue(block)) {
61
        if constexpr (std::is_same_v<PartitionedBlock, BlockType> ||
62
22.7k
                      std::is_same_v<BroadcastBlock, BlockType>) {
63
22.7k
            local_state->_shared_state->sub_mem_usage(channel_id, block.first->_allocated_bytes);
64
        } else {
65
            local_state->_shared_state->sub_mem_usage(channel_id, block->_allocated_bytes);
66
            data_block->swap(block->_data_block);
67
        }
68
22.7k
        return true;
69
29.6k
    } else if (all_finished) {
70
24.0k
        *eos = true;
71
24.0k
    } else {
72
5.63k
        std::unique_lock l(*_m[channel_id]);
73
5.63k
        if (_data_queue[channel_id].try_dequeue(block)) {
74
            if constexpr (std::is_same_v<PartitionedBlock, BlockType> ||
75
6
                          std::is_same_v<BroadcastBlock, BlockType>) {
76
6
                local_state->_shared_state->sub_mem_usage(channel_id,
77
6
                                                          block.first->_allocated_bytes);
78
            } else {
79
                local_state->_shared_state->sub_mem_usage(channel_id, block->_allocated_bytes);
80
                data_block->swap(block->_data_block);
81
            }
82
6
            return true;
83
6
        }
84
5.62k
        COUNTER_UPDATE(local_state->_get_block_failed_counter, 1);
85
5.62k
        local_state->_dependency->block();
86
5.62k
    }
87
29.6k
    return false;
88
52.4k
}
89
90
template <typename BlockType>
91
0
void Exchanger<BlockType>::_enqueue_data_and_set_ready(int channel_id, BlockType&& block) {
92
    if constexpr (std::is_same_v<PartitionedBlock, BlockType> ||
93
0
                  std::is_same_v<BroadcastBlock, BlockType>) {
94
0
        block.first->record_channel_id(channel_id);
95
0
    } else {
96
0
        block->record_channel_id(channel_id);
97
0
    }
98
0
    _data_queue[channel_id].enqueue(std::move(block));
99
0
}
Unexecuted instantiation: _ZN5doris9ExchangerISt4pairISt10shared_ptrINS_13ExchangerBase12BlockWrapperEENS_18PartitionedRowIdxsEEE27_enqueue_data_and_set_readyEiOS7_
Unexecuted instantiation: _ZN5doris9ExchangerISt10shared_ptrINS_13ExchangerBase12BlockWrapperEEE27_enqueue_data_and_set_readyEiOS4_
Unexecuted instantiation: _ZN5doris9ExchangerISt4pairISt10shared_ptrINS_13ExchangerBase12BlockWrapperEENS_17BroadcastRowRangeEEE27_enqueue_data_and_set_readyEiOS7_
100
101
template <typename BlockType>
102
bool Exchanger<BlockType>::_dequeue_data(BlockType& block, bool* eos, Block* data_block,
103
20
                                         int channel_id) {
104
20
    if (_data_queue[channel_id].try_dequeue(block)) {
105
        if constexpr (!std::is_same_v<PartitionedBlock, BlockType> &&
106
0
                      !std::is_same_v<BroadcastBlock, BlockType>) {
107
0
            data_block->swap(block->_data_block);
108
0
        }
109
0
        return true;
110
0
    }
111
20
    return false;
112
20
}
_ZN5doris9ExchangerISt4pairISt10shared_ptrINS_13ExchangerBase12BlockWrapperEENS_18PartitionedRowIdxsEEE13_dequeue_dataERS7_PbPNS_5BlockEi
Line
Count
Source
103
4
                                         int channel_id) {
104
4
    if (_data_queue[channel_id].try_dequeue(block)) {
105
        if constexpr (!std::is_same_v<PartitionedBlock, BlockType> &&
106
                      !std::is_same_v<BroadcastBlock, BlockType>) {
107
            data_block->swap(block->_data_block);
108
        }
109
0
        return true;
110
0
    }
111
4
    return false;
112
4
}
_ZN5doris9ExchangerISt10shared_ptrINS_13ExchangerBase12BlockWrapperEEE13_dequeue_dataERS4_PbPNS_5BlockEi
Line
Count
Source
103
12
                                         int channel_id) {
104
12
    if (_data_queue[channel_id].try_dequeue(block)) {
105
        if constexpr (!std::is_same_v<PartitionedBlock, BlockType> &&
106
0
                      !std::is_same_v<BroadcastBlock, BlockType>) {
107
0
            data_block->swap(block->_data_block);
108
0
        }
109
0
        return true;
110
0
    }
111
12
    return false;
112
12
}
_ZN5doris9ExchangerISt4pairISt10shared_ptrINS_13ExchangerBase12BlockWrapperEENS_17BroadcastRowRangeEEE13_dequeue_dataERS7_PbPNS_5BlockEi
Line
Count
Source
103
4
                                         int channel_id) {
104
4
    if (_data_queue[channel_id].try_dequeue(block)) {
105
        if constexpr (!std::is_same_v<PartitionedBlock, BlockType> &&
106
                      !std::is_same_v<BroadcastBlock, BlockType>) {
107
            data_block->swap(block->_data_block);
108
        }
109
0
        return true;
110
0
    }
111
4
    return false;
112
4
}
113
114
Status ShuffleExchanger::sink(RuntimeState* state, Block* in_block, bool eos, Profile&& profile,
115
102k
                              SinkInfo& sink_info) {
116
102k
    if (in_block->empty()) {
117
85.0k
        return Status::OK();
118
85.0k
    }
119
17.7k
    {
120
17.7k
        SCOPED_TIMER(profile.compute_hash_value_timer);
121
17.7k
        RETURN_IF_ERROR(sink_info.partitioner->do_partitioning(state, in_block));
122
17.7k
    }
123
17.7k
    {
124
17.7k
        SCOPED_TIMER(profile.distribute_timer);
125
17.7k
        RETURN_IF_ERROR(_split_rows(state, sink_info.partitioner->get_channel_ids(), in_block,
126
17.7k
                                    *sink_info.channel_id, sink_info.local_state,
127
17.7k
                                    sink_info.shuffle_idx_to_instance_idx));
128
17.7k
    }
129
130
17.7k
    sink_info.local_state->_memory_used_counter->set(
131
17.7k
            sink_info.local_state->_shared_state->mem_usage);
132
17.7k
    return Status::OK();
133
17.7k
}
134
135
85.7k
void ShuffleExchanger::close(SourceInfo&& source_info) {
136
85.7k
    PartitionedBlock partitioned_block;
137
85.7k
    bool eos;
138
85.7k
    Block block;
139
85.7k
    _data_queue[source_info.channel_id].set_eos();
140
85.7k
    while (_dequeue_data(source_info.local_state, partitioned_block, &eos, &block,
141
85.7k
                         source_info.channel_id)) {
142
        // do nothing
143
40
    }
144
85.7k
}
145
146
Status ShuffleExchanger::get_block(RuntimeState* state, Block* block, bool* eos, Profile&& profile,
147
104k
                                   SourceInfo&& source_info) {
148
104k
    PartitionedBlock partitioned_block;
149
104k
    MutableBlock mutable_block;
150
151
104k
    auto get_data = [&]() -> Status {
152
33.7k
        do {
153
33.7k
            const auto* offset_start = partitioned_block.second.row_idxs->data() +
154
33.7k
                                       partitioned_block.second.offset_start;
155
33.7k
            auto block_wrapper = partitioned_block.first;
156
33.7k
            RETURN_IF_ERROR(mutable_block.add_rows(&block_wrapper->_data_block, offset_start,
157
33.7k
                                                   offset_start + partitioned_block.second.length));
158
33.7k
        } while (mutable_block.rows() < state->batch_size() && !*eos &&
159
33.7k
                 _dequeue_data(source_info.local_state, partitioned_block, eos, block,
160
32.8k
                               source_info.channel_id));
161
26.7k
        return Status::OK();
162
26.7k
    };
163
164
104k
    if (_dequeue_data(source_info.local_state, partitioned_block, eos, block,
165
104k
                      source_info.channel_id)) {
166
26.7k
        SCOPED_TIMER(profile.copy_data_timer);
167
26.7k
        mutable_block = VectorizedUtils::build_mutable_mem_reuse_block(
168
26.7k
                block, partitioned_block.first->_data_block);
169
26.7k
        RETURN_IF_ERROR(get_data());
170
26.7k
    }
171
104k
    return Status::OK();
172
104k
}
173
174
Status ShuffleExchanger::_split_rows(RuntimeState* state, const std::vector<uint32_t>& channel_ids,
175
                                     Block* block, int channel_id,
176
                                     LocalExchangeSinkLocalState* local_state,
177
17.6k
                                     std::map<int, int>* shuffle_idx_to_instance_idx) {
178
17.6k
    if (local_state == nullptr) {
179
0
        return _split_rows(state, channel_ids, block, channel_id);
180
0
    }
181
17.6k
    const auto rows = cast_set<int32_t>(block->rows());
182
17.6k
    auto row_idx = std::make_shared<PODArray<uint32_t>>(rows);
183
17.6k
    auto& partition_rows_histogram = _partition_rows_histogram[channel_id];
184
17.6k
    {
185
17.6k
        partition_rows_histogram.assign(_num_partitions + 1, 0);
186
14.5M
        for (int32_t i = 0; i < rows; ++i) {
187
14.5M
            partition_rows_histogram[channel_ids[i]]++;
188
14.5M
        }
189
217k
        for (int32_t i = 1; i <= _num_partitions; ++i) {
190
199k
            partition_rows_histogram[i] += partition_rows_histogram[i - 1];
191
199k
        }
192
13.1M
        for (int32_t i = rows - 1; i >= 0; --i) {
193
13.1M
            (*row_idx)[partition_rows_histogram[channel_ids[i]] - 1] = i;
194
13.1M
            partition_rows_histogram[channel_ids[i]]--;
195
13.1M
        }
196
17.6k
    }
197
198
17.6k
    Block data_block;
199
17.6k
    std::shared_ptr<BlockWrapper> new_block_wrapper;
200
17.6k
    if (!_free_blocks.try_dequeue(data_block)) {
201
10.0k
        data_block = block->clone_empty();
202
10.0k
    }
203
17.6k
    data_block.swap(*block);
204
17.6k
    new_block_wrapper =
205
17.6k
            BlockWrapper::create_shared(std::move(data_block), local_state->_shared_state, -1);
206
17.6k
    if (new_block_wrapper->_data_block.empty()) {
207
0
        return Status::OK();
208
0
    }
209
    /**
210
     * Data are hash-shuffled and distributed to all instances of
211
     * all BEs. So we need a shuffleId-To-InstanceId mapping.
212
     * For example, row 1 get a hash value 1 which means we should distribute to instance 1 on
213
     * BE 1 and row 2 get a hash value 2 which means we should distribute to instance 1 on BE 3.
214
     */
215
17.6k
    DCHECK(shuffle_idx_to_instance_idx && shuffle_idx_to_instance_idx->size() > 0);
216
17.6k
    const auto& map = *shuffle_idx_to_instance_idx;
217
17.6k
    int32_t enqueue_rows = 0;
218
198k
    for (const auto& it : map) {
219
18.4E
        DCHECK(it.second >= 0 && it.second < _num_partitions)
220
18.4E
                << it.first << " : " << it.second << " " << _num_partitions;
221
198k
        uint32_t start = partition_rows_histogram[it.first];
222
198k
        uint32_t size = partition_rows_histogram[it.first + 1] - start;
223
198k
        if (size > 0) {
224
33.8k
            enqueue_rows += size;
225
33.8k
            _enqueue_data_and_set_ready(
226
33.8k
                    it.second, local_state,
227
33.8k
                    {new_block_wrapper,
228
33.8k
                     {.row_idxs = row_idx, .offset_start = start, .length = size}});
229
33.8k
        }
230
198k
    }
231
17.6k
    if (enqueue_rows != rows) [[unlikely]] {
232
1
        fmt::memory_buffer debug_string_buffer;
233
1
        fmt::format_to(debug_string_buffer, "Type: {}, Local Exchange Id: {}, Shuffled Map: ",
234
1
                       get_exchange_type_name(get_type()), local_state->parent()->node_id());
235
3
        for (const auto& it : map) {
236
3
            fmt::format_to(debug_string_buffer, "[{}:{}], ", it.first, it.second);
237
3
        }
238
1
        return Status::InternalError(
239
1
                "Rows mismatched! Data may be lost. [Expected enqueue rows={}, Real enqueue "
240
1
                "rows={}, Detail: {}]",
241
1
                rows, enqueue_rows, fmt::to_string(debug_string_buffer));
242
1
    }
243
244
17.6k
    return Status::OK();
245
17.6k
}
246
247
Status ShuffleExchanger::_split_rows(RuntimeState* state, const std::vector<uint32_t>& channel_ids,
248
0
                                     Block* block, int channel_id) {
249
0
    const auto rows = cast_set<int32_t>(block->rows());
250
0
    auto row_idx = std::make_shared<PODArray<uint32_t>>(rows);
251
0
    auto& partition_rows_histogram = _partition_rows_histogram[channel_id];
252
0
    {
253
0
        partition_rows_histogram.assign(_num_partitions + 1, 0);
254
0
        for (int32_t i = 0; i < rows; ++i) {
255
0
            partition_rows_histogram[channel_ids[i]]++;
256
0
        }
257
0
        for (int32_t i = 1; i <= _num_partitions; ++i) {
258
0
            partition_rows_histogram[i] += partition_rows_histogram[i - 1];
259
0
        }
260
0
        for (int32_t i = rows - 1; i >= 0; --i) {
261
0
            (*row_idx)[partition_rows_histogram[channel_ids[i]] - 1] = i;
262
0
            partition_rows_histogram[channel_ids[i]]--;
263
0
        }
264
0
    }
265
266
0
    Block data_block;
267
0
    std::shared_ptr<BlockWrapper> new_block_wrapper;
268
0
    if (!_free_blocks.try_dequeue(data_block)) {
269
0
        data_block = block->clone_empty();
270
0
    }
271
0
    data_block.swap(*block);
272
0
    new_block_wrapper = BlockWrapper::create_shared(std::move(data_block), nullptr, -1);
273
0
    if (new_block_wrapper->_data_block.empty()) {
274
0
        return Status::OK();
275
0
    }
276
0
    for (int i = 0; i < _num_partitions; i++) {
277
0
        uint32_t start = partition_rows_histogram[i];
278
0
        uint32_t size = partition_rows_histogram[i + 1] - start;
279
0
        if (size > 0) {
280
0
            _enqueue_data_and_set_ready(
281
0
                    i, {new_block_wrapper,
282
0
                        {.row_idxs = row_idx, .offset_start = start, .length = size}});
283
0
        }
284
0
    }
285
286
0
    return Status::OK();
287
0
}
288
289
Status PassthroughExchanger::sink(RuntimeState* state, Block* in_block, bool eos, Profile&& profile,
290
303k
                                  SinkInfo& sink_info) {
291
303k
    if (in_block->empty()) {
292
112k
        return Status::OK();
293
112k
    }
294
191k
    Block new_block;
295
191k
    if (!_free_blocks.try_dequeue(new_block)) {
296
79.5k
        new_block = {in_block->clone_empty()};
297
79.5k
    }
298
191k
    new_block.swap(*in_block);
299
191k
    auto channel_id = ((*sink_info.channel_id)++) % _num_partitions;
300
191k
    BlockWrapperSPtr wrapper = BlockWrapper::create_shared(
301
191k
            std::move(new_block),
302
191k
            sink_info.local_state ? sink_info.local_state->_shared_state : nullptr, channel_id);
303
304
191k
    _enqueue_data_and_set_ready(channel_id, sink_info.local_state, std::move(wrapper));
305
306
191k
    sink_info.local_state->_memory_used_counter->set(
307
191k
            sink_info.local_state->_shared_state->mem_usage);
308
309
191k
    return Status::OK();
310
303k
}
311
312
576k
void PassthroughExchanger::close(SourceInfo&& source_info) {
313
576k
    Block next_block;
314
576k
    BlockWrapperSPtr wrapper;
315
576k
    bool eos;
316
576k
    _data_queue[source_info.channel_id].set_eos();
317
577k
    while (_dequeue_data(source_info.local_state, wrapper, &eos, &next_block,
318
577k
                         source_info.channel_id)) {
319
        // do nothing
320
1.34k
    }
321
576k
}
322
323
13.0k
void PassToOneExchanger::close(SourceInfo&& source_info) {
324
13.0k
    Block next_block;
325
13.0k
    BlockWrapperSPtr wrapper;
326
13.0k
    bool eos;
327
13.0k
    _data_queue[source_info.channel_id].set_eos();
328
13.0k
    while (_dequeue_data(source_info.local_state, wrapper, &eos, &next_block,
329
13.0k
                         source_info.channel_id)) {
330
        // do nothing
331
0
    }
332
13.0k
}
333
334
Status PassthroughExchanger::get_block(RuntimeState* state, Block* block, bool* eos,
335
885k
                                       Profile&& profile, SourceInfo&& source_info) {
336
885k
    BlockWrapperSPtr next_block;
337
885k
    _dequeue_data(source_info.local_state, next_block, eos, block, source_info.channel_id);
338
885k
    return Status::OK();
339
885k
}
340
341
Status PassToOneExchanger::sink(RuntimeState* state, Block* in_block, bool eos, Profile&& profile,
342
4.85k
                                SinkInfo& sink_info) {
343
4.85k
    if (in_block->empty()) {
344
1.79k
        return Status::OK();
345
1.79k
    }
346
3.06k
    Block new_block;
347
3.06k
    if (!_free_blocks.try_dequeue(new_block)) {
348
1.98k
        new_block = {in_block->clone_empty()};
349
1.98k
    }
350
3.06k
    new_block.swap(*in_block);
351
352
3.06k
    BlockWrapperSPtr wrapper = BlockWrapper::create_shared(
353
3.06k
            std::move(new_block),
354
3.06k
            sink_info.local_state ? sink_info.local_state->_shared_state : nullptr, 0);
355
3.06k
    _enqueue_data_and_set_ready(0, sink_info.local_state, std::move(wrapper));
356
357
3.06k
    sink_info.local_state->_memory_used_counter->set(
358
3.06k
            sink_info.local_state->_shared_state->mem_usage);
359
360
3.06k
    return Status::OK();
361
4.85k
}
362
363
Status PassToOneExchanger::get_block(RuntimeState* state, Block* block, bool* eos,
364
5.69k
                                     Profile&& profile, SourceInfo&& source_info) {
365
5.69k
    if (source_info.channel_id != 0) {
366
3
        *eos = true;
367
3
        return Status::OK();
368
3
    }
369
5.69k
    BlockWrapperSPtr next_block;
370
5.69k
    _dequeue_data(source_info.local_state, next_block, eos, block, source_info.channel_id);
371
5.69k
    return Status::OK();
372
5.69k
}
373
374
106k
void ExchangerBase::finalize() {
375
106k
    DCHECK(_running_source_operators == 0);
376
106k
    Block block;
377
204k
    while (_free_blocks.try_dequeue(block)) {
378
        // do nothing
379
98.0k
    }
380
106k
}
381
382
Status BroadcastExchanger::sink(RuntimeState* state, Block* in_block, bool eos, Profile&& profile,
383
4.31k
                                SinkInfo& sink_info) {
384
4.31k
    if (in_block->empty()) {
385
1.53k
        return Status::OK();
386
1.53k
    }
387
2.77k
    Block new_block;
388
2.77k
    if (!_free_blocks.try_dequeue(new_block)) {
389
2.01k
        new_block = {in_block->clone_empty()};
390
2.01k
    }
391
2.77k
    new_block.swap(*in_block);
392
2.77k
    auto wrapper = BlockWrapper::create_shared(
393
2.77k
            std::move(new_block),
394
2.77k
            sink_info.local_state ? sink_info.local_state->_shared_state : nullptr, -1);
395
25.6k
    for (int i = 0; i < _num_partitions; i++) {
396
22.8k
        _enqueue_data_and_set_ready(
397
22.8k
                i, sink_info.local_state,
398
22.8k
                {wrapper, {.offset_start = 0, .length = wrapper->_data_block.rows()}});
399
22.8k
    }
400
401
2.77k
    return Status::OK();
402
4.31k
}
403
404
12.0k
void BroadcastExchanger::close(SourceInfo&& source_info) {
405
12.0k
    BroadcastBlock partitioned_block;
406
12.0k
    bool eos;
407
12.0k
    Block block;
408
12.0k
    _data_queue[source_info.channel_id].set_eos();
409
12.0k
    while (_dequeue_data(source_info.local_state, partitioned_block, &eos, &block,
410
12.0k
                         source_info.channel_id)) {
411
        // do nothing
412
0
    }
413
12.0k
}
414
415
Status BroadcastExchanger::get_block(RuntimeState* state, Block* block, bool* eos,
416
40.3k
                                     Profile&& profile, SourceInfo&& source_info) {
417
40.3k
    BroadcastBlock partitioned_block;
418
419
40.3k
    if (_dequeue_data(source_info.local_state, partitioned_block, eos, block,
420
40.3k
                      source_info.channel_id)) {
421
22.8k
        SCOPED_TIMER(profile.copy_data_timer);
422
22.8k
        MutableBlock mutable_block = VectorizedUtils::build_mutable_mem_reuse_block(
423
22.8k
                block, partitioned_block.first->_data_block);
424
22.8k
        auto block_wrapper = partitioned_block.first;
425
22.8k
        RETURN_IF_ERROR(mutable_block.add_rows(&block_wrapper->_data_block,
426
22.8k
                                               partitioned_block.second.offset_start,
427
22.8k
                                               partitioned_block.second.length));
428
22.8k
    }
429
430
40.3k
    return Status::OK();
431
40.3k
}
432
433
Status AdaptivePassthroughExchanger::_passthrough_sink(RuntimeState* state, Block* in_block,
434
711
                                                       SinkInfo& sink_info) {
435
711
    Block new_block;
436
711
    if (!_free_blocks.try_dequeue(new_block)) {
437
287
        new_block = {in_block->clone_empty()};
438
287
    }
439
711
    new_block.swap(*in_block);
440
711
    auto channel_id = ((*sink_info.channel_id)++) % _num_partitions;
441
711
    _enqueue_data_and_set_ready(
442
711
            channel_id, sink_info.local_state,
443
711
            BlockWrapper::create_shared(
444
711
                    std::move(new_block),
445
711
                    sink_info.local_state ? sink_info.local_state->_shared_state : nullptr,
446
711
                    channel_id));
447
448
711
    sink_info.local_state->_memory_used_counter->set(
449
711
            sink_info.local_state->_shared_state->mem_usage);
450
711
    return Status::OK();
451
711
}
452
453
Status AdaptivePassthroughExchanger::_shuffle_sink(RuntimeState* state, Block* block,
454
2.28k
                                                   SinkInfo& sink_info) {
455
2.28k
    std::vector<uint32_t> channel_ids;
456
2.28k
    const auto num_rows = block->rows();
457
2.28k
    channel_ids.resize(num_rows, 0);
458
2.28k
    if (num_rows <= _num_partitions) {
459
1.60k
        std::iota(channel_ids.begin(), channel_ids.end(), 0);
460
1.60k
    } else {
461
680
        size_t i = 0;
462
9.33k
        for (; i < num_rows - _num_partitions; i += _num_partitions) {
463
8.65k
            std::iota(channel_ids.begin() + i, channel_ids.begin() + i + _num_partitions, 0);
464
8.65k
        }
465
680
        if (i < num_rows - 1) {
466
388
            std::iota(channel_ids.begin() + i, channel_ids.end(), 0);
467
388
        }
468
680
    }
469
470
2.28k
    sink_info.local_state->_memory_used_counter->set(
471
2.28k
            sink_info.local_state->_shared_state->mem_usage);
472
2.28k
    RETURN_IF_ERROR(_split_rows(state, channel_ids, block, sink_info));
473
2.28k
    return Status::OK();
474
2.28k
}
475
476
Status AdaptivePassthroughExchanger::_split_rows(RuntimeState* state,
477
                                                 const std::vector<uint32_t>& channel_ids,
478
2.28k
                                                 Block* block, SinkInfo& sink_info) {
479
2.28k
    const auto rows = cast_set<int32_t>(block->rows());
480
2.28k
    auto row_idx = std::make_shared<std::vector<uint32_t>>(rows);
481
2.28k
    auto& partition_rows_histogram = _partition_rows_histogram[*sink_info.channel_id];
482
2.28k
    {
483
2.28k
        partition_rows_histogram.assign(_num_partitions + 1, 0);
484
55.4k
        for (int32_t i = 0; i < rows; ++i) {
485
53.1k
            partition_rows_histogram[channel_ids[i]]++;
486
53.1k
        }
487
17.1k
        for (int32_t i = 1; i <= _num_partitions; ++i) {
488
14.8k
            partition_rows_histogram[i] += partition_rows_histogram[i - 1];
489
14.8k
        }
490
491
55.4k
        for (int32_t i = rows - 1; i >= 0; --i) {
492
53.1k
            (*row_idx)[partition_rows_histogram[channel_ids[i]] - 1] = i;
493
53.1k
            partition_rows_histogram[channel_ids[i]]--;
494
53.1k
        }
495
2.28k
    }
496
17.1k
    for (int32_t i = 0; i < _num_partitions; i++) {
497
14.8k
        const size_t start = partition_rows_histogram[i];
498
14.8k
        const size_t size = partition_rows_histogram[i + 1] - start;
499
14.8k
        if (size > 0) {
500
7.12k
            std::unique_ptr<MutableBlock> mutable_block =
501
7.12k
                    MutableBlock::create_unique(block->clone_empty());
502
7.12k
            RETURN_IF_ERROR(mutable_block->add_rows(block, start, size));
503
7.12k
            auto new_block = mutable_block->to_block();
504
505
7.12k
            _enqueue_data_and_set_ready(
506
7.12k
                    i, sink_info.local_state,
507
7.12k
                    BlockWrapper::create_shared(
508
7.12k
                            std::move(new_block),
509
18.4E
                            sink_info.local_state ? sink_info.local_state->_shared_state : nullptr,
510
7.12k
                            i));
511
7.12k
        }
512
14.8k
    }
513
2.28k
    return Status::OK();
514
2.28k
}
515
516
Status AdaptivePassthroughExchanger::sink(RuntimeState* state, Block* in_block, bool eos,
517
8.44k
                                          Profile&& profile, SinkInfo& sink_info) {
518
8.44k
    if (in_block->empty()) {
519
5.45k
        return Status::OK();
520
5.45k
    }
521
2.99k
    if (_is_pass_through) {
522
711
        return _passthrough_sink(state, in_block, sink_info);
523
2.28k
    } else {
524
2.28k
        if (++_total_block >= _num_partitions) {
525
332
            _is_pass_through = true;
526
332
        }
527
2.28k
        return _shuffle_sink(state, in_block, sink_info);
528
2.28k
    }
529
2.99k
}
530
531
Status AdaptivePassthroughExchanger::get_block(RuntimeState* state, Block* block, bool* eos,
532
15.0k
                                               Profile&& profile, SourceInfo&& source_info) {
533
15.0k
    BlockWrapperSPtr next_block;
534
15.0k
    _dequeue_data(source_info.local_state, next_block, eos, block, source_info.channel_id);
535
15.0k
    return Status::OK();
536
15.0k
}
537
538
6.35k
void AdaptivePassthroughExchanger::close(SourceInfo&& source_info) {
539
6.35k
    Block next_block;
540
6.35k
    bool eos;
541
6.35k
    BlockWrapperSPtr wrapper;
542
6.35k
    _data_queue[source_info.channel_id].set_eos();
543
6.35k
    while (_dequeue_data(source_info.local_state, wrapper, &eos, &next_block,
544
6.35k
                         source_info.channel_id)) {
545
        // do nothing
546
3
    }
547
6.35k
}
548
549
} // namespace doris