be/src/exec/exchange/vdata_stream_recvr.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/vdata_stream_recvr.h" |
19 | | |
20 | | #include <fmt/format.h> |
21 | | #include <gen_cpp/Metrics_types.h> |
22 | | #include <gen_cpp/Types_types.h> |
23 | | #include <gen_cpp/data.pb.h> |
24 | | |
25 | | #include <algorithm> |
26 | | #include <functional> |
27 | | #include <string> |
28 | | |
29 | | #include "common/logging.h" |
30 | | #include "core/block/block.h" |
31 | | #include "core/block/materialize_block.h" |
32 | | #include "exec/exchange/vdata_stream_mgr.h" |
33 | | #include "exec/operator/exchange_sink_operator.h" |
34 | | #include "exec/operator/exchange_source_operator.h" |
35 | | #include "exec/sort/sort_cursor.h" |
36 | | #include "exec/sort/vsorted_run_merger.h" |
37 | | #include "runtime/memory/mem_tracker.h" |
38 | | #include "runtime/runtime_state.h" |
39 | | #include "runtime/thread_context.h" |
40 | | #include "util/defer_op.h" |
41 | | #include "util/uid_util.h" |
42 | | |
43 | | namespace doris { |
44 | | |
45 | | VDataStreamRecvr::SenderQueue::SenderQueue(VDataStreamRecvr* parent_recvr, int num_senders, |
46 | | std::shared_ptr<Dependency> local_channel_dependency) |
47 | 576k | : _recvr(parent_recvr), |
48 | 576k | _is_cancelled(false), |
49 | 576k | _num_remaining_senders(num_senders), |
50 | 576k | _local_channel_dependency(local_channel_dependency) { |
51 | 576k | _cancel_status = Status::OK(); |
52 | 576k | _queue_mem_tracker = std::make_unique<MemTracker>("local data queue mem tracker"); |
53 | 576k | } |
54 | | |
55 | 586k | VDataStreamRecvr::SenderQueue::~SenderQueue() { |
56 | 586k | run_block_queue_done_callbacks(_block_queue); |
57 | 586k | _block_queue.clear(); |
58 | 586k | } |
59 | | |
60 | 857k | Status VDataStreamRecvr::SenderQueue::get_batch(Block* block, bool* eos) { |
61 | 857k | BlockItem block_item; |
62 | 857k | { |
63 | 857k | INJECT_MOCK_SLEEP(std::lock_guard<std::mutex> l(_lock)); |
64 | 857k | #ifndef NDEBUG |
65 | 857k | if (!_is_cancelled && _block_queue.empty() && _num_remaining_senders > 0) { |
66 | 0 | throw doris::Exception(ErrorCode::INTERNAL_ERROR, |
67 | 0 | "_is_cancelled: {}, _block_queue_empty: {}, " |
68 | 0 | "_num_remaining_senders: {}", |
69 | 0 | _is_cancelled, _block_queue.empty(), _num_remaining_senders); |
70 | 0 | } |
71 | 857k | #endif |
72 | | //check and get block_item from data_queue |
73 | 857k | if (_is_cancelled) { |
74 | 3 | RETURN_IF_ERROR(_cancel_status); |
75 | 2 | return Status::Cancelled("Cancelled"); |
76 | 3 | } |
77 | | |
78 | 857k | if (_block_queue.empty()) { |
79 | 570k | if (_num_remaining_senders != 0) { |
80 | 0 | return Status::InternalError( |
81 | 0 | "Data queue is empty but there are still remaining senders. " |
82 | 0 | "_num_remaining_senders: {}", |
83 | 0 | _num_remaining_senders); |
84 | 0 | } |
85 | 570k | *eos = true; |
86 | 570k | return Status::OK(); |
87 | 570k | } |
88 | | |
89 | 857k | DCHECK(!_block_queue.empty()); |
90 | 286k | block_item = std::move(_block_queue.front()); |
91 | 286k | _block_queue.pop_front(); |
92 | 286k | } |
93 | 0 | BlockUPtr next_block; |
94 | 286k | RETURN_IF_ERROR(block_item.get_block(next_block)); |
95 | 286k | size_t block_byte_size = block_item.block_byte_size(); |
96 | 286k | COUNTER_UPDATE(_recvr->_deserialize_row_batch_timer, block_item.deserialize_time()); |
97 | 286k | COUNTER_UPDATE(_recvr->_decompress_timer, block_item.decompress_time()); |
98 | 286k | COUNTER_UPDATE(_recvr->_decompress_bytes, block_item.decompress_bytes()); |
99 | 286k | _recvr->_memory_used_counter->update(-(int64_t)block_byte_size); |
100 | 286k | INJECT_MOCK_SLEEP(std::lock_guard<std::mutex> l(_lock)); |
101 | 286k | sub_blocks_memory_usage(block_byte_size); |
102 | 286k | if (_block_queue.empty() && _source_dependency) { |
103 | 224k | if (!_is_cancelled && _num_remaining_senders > 0) { |
104 | 107k | _source_dependency->block(); |
105 | 107k | } |
106 | 224k | } |
107 | | |
108 | 286k | block_item.call_done(_recvr); |
109 | | |
110 | 286k | DCHECK(block->empty()); |
111 | 286k | block->swap(*next_block); |
112 | 286k | *eos = false; |
113 | 286k | return Status::OK(); |
114 | 286k | } |
115 | | |
116 | 200 | bool VDataStreamRecvr::SenderQueue::has_data_or_finished() { |
117 | 200 | std::lock_guard<std::mutex> l(_lock); |
118 | 200 | return _is_cancelled || !_block_queue.empty() || _num_remaining_senders == 0; |
119 | 200 | } |
120 | | |
121 | 1.45M | void VDataStreamRecvr::SenderQueue::set_source_ready(std::lock_guard<std::mutex>&) { |
122 | | // Here, it is necessary to check if _source_dependency is not nullptr. |
123 | | // This is because the queue might be closed before setting the source dependency. |
124 | 1.45M | if (!_source_dependency) { |
125 | 52 | return; |
126 | 52 | } |
127 | 1.45M | const bool should_wait = !_is_cancelled && _block_queue.empty() && _num_remaining_senders > 0; |
128 | 1.45M | if (!should_wait) { |
129 | 1.45M | _source_dependency->set_ready(); |
130 | 1.45M | } |
131 | 1.45M | } |
132 | | |
133 | | void VDataStreamRecvr::SenderQueue::run_block_queue_done_callbacks( |
134 | 1.17M | std::list<BlockItem>& block_queue) { |
135 | 1.17M | for (auto& block_item : block_queue) { |
136 | 1.54k | block_item.call_done(_recvr); |
137 | 1.54k | } |
138 | 1.17M | } |
139 | | |
140 | 43 | std::string VDataStreamRecvr::SenderQueue::debug_string() { |
141 | 43 | std::lock_guard<std::mutex> l(_lock); |
142 | 43 | fmt::memory_buffer debug_string_buffer; |
143 | 43 | fmt::format_to(debug_string_buffer, |
144 | 43 | "_num_remaining_senders = {}, block_queue size = {}, _is_cancelled: {}, " |
145 | 43 | "_cancel_status: {}, _sender_eos_set: (", |
146 | 43 | _num_remaining_senders, _block_queue.size(), _is_cancelled, |
147 | 43 | _cancel_status.to_string()); |
148 | 43 | for (auto& i : _sender_eos_set) { |
149 | 0 | fmt::format_to(debug_string_buffer, "{}, ", i); |
150 | 0 | } |
151 | 43 | fmt::format_to(debug_string_buffer, ")"); |
152 | 43 | return fmt::to_string(debug_string_buffer); |
153 | 43 | } |
154 | | |
155 | | Status VDataStreamRecvr::SenderQueue::add_block(std::unique_ptr<PBlock> pblock, int be_number, |
156 | | int64_t packet_seq, |
157 | | ::google::protobuf::Closure** done, |
158 | | const int64_t wait_for_worker, |
159 | 2.09k | const uint64_t time_to_find_recvr) { |
160 | 2.09k | { |
161 | 2.09k | INJECT_MOCK_SLEEP(std::lock_guard<std::mutex> l(_lock)); |
162 | 2.09k | if (_is_cancelled) { |
163 | 1.55k | return Status::OK(); |
164 | 1.55k | } |
165 | 540 | auto iter = _packet_seq_map.find(be_number); |
166 | 540 | if (iter != _packet_seq_map.end()) { |
167 | 529 | if (iter->second >= packet_seq) { |
168 | 0 | return Status::InternalError( |
169 | 0 | "packet already exist [cur_packet_id= {} receive_packet_id={}]", |
170 | 0 | iter->second, packet_seq); |
171 | 0 | } |
172 | 529 | iter->second = packet_seq; |
173 | 529 | } else { |
174 | 11 | _packet_seq_map.emplace(be_number, packet_seq); |
175 | 11 | } |
176 | | |
177 | 540 | DCHECK(_num_remaining_senders >= 0); |
178 | 540 | if (_num_remaining_senders == 0) { |
179 | 0 | DCHECK(_sender_eos_set.contains(be_number)); |
180 | 0 | return Status::OK(); |
181 | 0 | } |
182 | 540 | } |
183 | | |
184 | 540 | INJECT_MOCK_SLEEP(std::lock_guard<std::mutex> l(_lock)); |
185 | 540 | if (_is_cancelled) { |
186 | 4 | return Status::OK(); |
187 | 4 | } |
188 | | |
189 | 536 | const auto block_byte_size = pblock->ByteSizeLong(); |
190 | 536 | COUNTER_UPDATE(_recvr->_blocks_produced_counter, 1); |
191 | 536 | if (_recvr->_max_wait_worker_time->value() < wait_for_worker) { |
192 | 0 | _recvr->_max_wait_worker_time->set(wait_for_worker); |
193 | 0 | } |
194 | | |
195 | 536 | if (_recvr->_max_find_recvr_time->value() < time_to_find_recvr) { |
196 | 0 | _recvr->_max_find_recvr_time->set((int64_t)time_to_find_recvr); |
197 | 0 | } |
198 | | |
199 | 536 | _block_queue.emplace_back(std::move(pblock), block_byte_size); |
200 | 536 | COUNTER_UPDATE(_recvr->_remote_bytes_received_counter, block_byte_size); |
201 | 536 | set_source_ready(l); |
202 | | |
203 | | // if done is nullptr, this function can't delay this response |
204 | 540 | if (done != nullptr && _recvr->exceeds_limit(block_byte_size)) { |
205 | 39 | _block_queue.back().set_done(*done); |
206 | 39 | *done = nullptr; |
207 | 39 | } |
208 | 536 | _recvr->_memory_used_counter->update(block_byte_size); |
209 | 536 | add_blocks_memory_usage(block_byte_size); |
210 | 536 | return Status::OK(); |
211 | 540 | } |
212 | | |
213 | | Status VDataStreamRecvr::SenderQueue::add_blocks(const PTransmitDataParams* request, |
214 | | ::google::protobuf::Closure** done, |
215 | | const int64_t wait_for_worker, |
216 | 74.7k | const uint64_t time_to_find_recvr) { |
217 | 74.7k | { |
218 | 74.7k | INJECT_MOCK_SLEEP(std::lock_guard<std::mutex> l(_lock)); |
219 | 74.7k | if (_is_cancelled) { |
220 | 0 | return Status::OK(); |
221 | 0 | } |
222 | 74.7k | const int be_number = request->be_number(); |
223 | | // In the request, the packet_seq for blocks is [request->packet_seq() - blocks_size(), request->packet_seq()) |
224 | | // Note this is a left-closed, right-open interval; the packet_seq of the last block is request->packet_seq() - 1 |
225 | | // We store the packet_seq of the last block in _packet_seq_map so we can compare it with the packet_seq of the next received packet |
226 | 74.7k | const int64_t packet_seq = request->packet_seq() - 1; |
227 | 74.7k | auto iter = _packet_seq_map.find(be_number); |
228 | 74.7k | if (iter != _packet_seq_map.end()) { |
229 | 7.80k | if (iter->second > (packet_seq - request->blocks_size())) { |
230 | 0 | return Status::InternalError( |
231 | 0 | "packet already exist [cur_packet_id= {} receive_packet_id={}]", |
232 | 0 | iter->second, packet_seq); |
233 | 0 | } |
234 | 7.80k | iter->second = packet_seq; |
235 | 66.9k | } else { |
236 | 66.9k | _packet_seq_map.emplace(be_number, packet_seq); |
237 | 66.9k | } |
238 | | |
239 | 74.7k | DCHECK(_num_remaining_senders >= 0); |
240 | 74.7k | if (_num_remaining_senders == 0) { |
241 | 0 | DCHECK(_sender_eos_set.end() != _sender_eos_set.find(be_number)); |
242 | 0 | return Status::OK(); |
243 | 0 | } |
244 | 74.7k | } |
245 | | |
246 | 74.7k | INJECT_MOCK_SLEEP(std::lock_guard<std::mutex> l(_lock)); |
247 | 74.7k | if (_is_cancelled) { |
248 | 0 | return Status::OK(); |
249 | 0 | } |
250 | | |
251 | 74.7k | int64_t total_block_byte_size = 0; |
252 | 149k | for (int i = 0; i < request->blocks_size(); i++) { |
253 | 74.8k | std::unique_ptr<PBlock> pblock = std::make_unique<PBlock>(); |
254 | 74.8k | pblock->CopyFrom(request->blocks(i)); |
255 | | |
256 | 74.8k | const auto block_byte_size = pblock->ByteSizeLong(); |
257 | 74.8k | COUNTER_UPDATE(_recvr->_blocks_produced_counter, 1); |
258 | 74.8k | if (_recvr->_max_wait_worker_time->value() < wait_for_worker) { |
259 | 1 | _recvr->_max_wait_worker_time->set(wait_for_worker); |
260 | 1 | } |
261 | | |
262 | 74.8k | if (_recvr->_max_find_recvr_time->value() < time_to_find_recvr) { |
263 | 53.9k | _recvr->_max_find_recvr_time->set((int64_t)time_to_find_recvr); |
264 | 53.9k | } |
265 | | |
266 | 74.8k | _block_queue.emplace_back(std::move(pblock), block_byte_size); |
267 | 74.8k | COUNTER_UPDATE(_recvr->_remote_bytes_received_counter, block_byte_size); |
268 | 74.8k | total_block_byte_size += block_byte_size; |
269 | 74.8k | } |
270 | | |
271 | 74.7k | set_source_ready(l); |
272 | | |
273 | | // if done is nullptr, this function can't delay this response |
274 | 74.8k | if (done != nullptr && _recvr->exceeds_limit(total_block_byte_size)) { |
275 | 1 | _block_queue.back().set_done(*done); |
276 | 1 | *done = nullptr; |
277 | 1 | } |
278 | 74.7k | _recvr->_memory_used_counter->update(total_block_byte_size); |
279 | 74.7k | add_blocks_memory_usage(total_block_byte_size); |
280 | 74.7k | return Status::OK(); |
281 | 74.7k | } |
282 | | |
283 | 213k | void VDataStreamRecvr::SenderQueue::add_block(Block* block, bool use_move) { |
284 | 213k | if (block->rows() == 0) { |
285 | 0 | return; |
286 | 0 | } |
287 | 213k | { |
288 | 213k | INJECT_MOCK_SLEEP(std::unique_lock<std::mutex> l(_lock)); |
289 | 213k | if (_is_cancelled) { |
290 | 297 | return; |
291 | 297 | } |
292 | 213k | DCHECK(_num_remaining_senders >= 0); |
293 | 213k | if (_num_remaining_senders == 0) { |
294 | 1 | return; |
295 | 1 | } |
296 | 213k | } |
297 | 213k | BlockUPtr nblock = Block::create_unique(block->get_columns_with_type_and_name()); |
298 | | |
299 | | // local exchange should copy the block contented if use move == false |
300 | 213k | if (use_move) { |
301 | 208k | block->clear(); |
302 | 208k | } else { |
303 | 5.05k | auto rows = block->rows(); |
304 | 15.5k | for (int i = 0; i < nblock->columns(); ++i) { |
305 | 10.4k | nblock->get_by_position(i).column = |
306 | 10.4k | nblock->get_by_position(i).column->clone_resized(rows); |
307 | 10.4k | } |
308 | 5.05k | } |
309 | 213k | materialize_block_inplace(*nblock); |
310 | | |
311 | 213k | auto block_mem_size = nblock->allocated_bytes(); |
312 | 213k | { |
313 | 213k | INJECT_MOCK_SLEEP(std::lock_guard<std::mutex> l(_lock)); |
314 | 213k | if (_is_cancelled) { |
315 | 2 | return; |
316 | 2 | } |
317 | 213k | _block_queue.emplace_back(std::move(nblock), block_mem_size); |
318 | 213k | set_source_ready(l); |
319 | 213k | COUNTER_UPDATE(_recvr->_local_bytes_received_counter, block_mem_size); |
320 | 213k | _recvr->_memory_used_counter->update(block_mem_size); |
321 | 213k | add_blocks_memory_usage(block_mem_size); |
322 | 213k | } |
323 | 213k | } |
324 | | |
325 | 2.79M | void VDataStreamRecvr::SenderQueue::decrement_senders(int be_number) { |
326 | 2.79M | INJECT_MOCK_SLEEP(std::lock_guard<std::mutex> l(_lock)); |
327 | 2.79M | if (_sender_eos_set.end() != _sender_eos_set.find(be_number)) { |
328 | 0 | return; |
329 | 0 | } |
330 | 2.79M | _sender_eos_set.insert(be_number); |
331 | 2.79M | DCHECK_GT(_num_remaining_senders, 0); |
332 | 2.79M | _num_remaining_senders--; |
333 | 18.4E | VLOG_FILE << "decremented senders: fragment_instance_id=" |
334 | 18.4E | << print_id(_recvr->fragment_instance_id()) << " node_id=" << _recvr->dest_node_id() |
335 | 18.4E | << " #senders=" << _num_remaining_senders; |
336 | 2.79M | if (_num_remaining_senders == 0) { |
337 | 576k | set_source_ready(l); |
338 | 576k | } |
339 | 2.79M | } |
340 | | |
341 | 586k | void VDataStreamRecvr::SenderQueue::cancel(Status cancel_status) { |
342 | 586k | std::list<BlockItem> block_queue; |
343 | 586k | { |
344 | 586k | INJECT_MOCK_SLEEP(std::lock_guard<std::mutex> l(_lock)); |
345 | 586k | if (_is_cancelled) { |
346 | 586k | return; |
347 | 586k | } |
348 | 18.4E | _is_cancelled = true; |
349 | 18.4E | _cancel_status = cancel_status; |
350 | 18.4E | set_source_ready(l); |
351 | 18.4E | VLOG_QUERY << "cancelled stream: _fragment_instance_id=" |
352 | 18.4E | << print_id(_recvr->fragment_instance_id()) |
353 | 18.4E | << " node_id=" << _recvr->dest_node_id(); |
354 | 18.4E | block_queue.splice(block_queue.end(), _block_queue); |
355 | 18.4E | } |
356 | 0 | run_block_queue_done_callbacks(block_queue); |
357 | 18.4E | } |
358 | | |
359 | 585k | void VDataStreamRecvr::SenderQueue::close() { |
360 | | // If _is_cancelled is not set to true, there may be concurrent send |
361 | | // which add batch to _block_queue. The batch added after _block_queue |
362 | | // is clear will be memory leak |
363 | 585k | std::list<BlockItem> block_queue; |
364 | 585k | { |
365 | 585k | INJECT_MOCK_SLEEP(std::lock_guard<std::mutex> l(_lock)); |
366 | 585k | _is_cancelled = true; |
367 | 585k | set_source_ready(l); |
368 | 585k | block_queue.splice(block_queue.end(), _block_queue); |
369 | 585k | } |
370 | | // Release delayed RPC callbacks after the queue state is fully closed. |
371 | 585k | run_block_queue_done_callbacks(block_queue); |
372 | 585k | } |
373 | | |
374 | | VDataStreamRecvr::VDataStreamRecvr(VDataStreamMgr* stream_mgr, |
375 | | RuntimeProfile::HighWaterMarkCounter* memory_used_counter, |
376 | | RuntimeState* state, const TUniqueId& fragment_instance_id, |
377 | | PlanNodeId dest_node_id, int num_senders, bool is_merging, |
378 | | RuntimeProfile* profile, size_t data_queue_capacity) |
379 | 365k | : HasTaskExecutionCtx(state), |
380 | 365k | _mgr(stream_mgr), |
381 | 365k | _memory_used_counter(memory_used_counter), |
382 | 365k | _resource_ctx(state->get_query_ctx()->resource_ctx()), |
383 | 365k | _query_context(state->get_query_ctx()->shared_from_this()), |
384 | 365k | _fragment_instance_id(fragment_instance_id), |
385 | 365k | _dest_node_id(dest_node_id), |
386 | 365k | _is_merging(is_merging), |
387 | 365k | _is_closed(false), |
388 | 365k | _sender_queue_mem_limit(data_queue_capacity), |
389 | 365k | _profile(profile) { |
390 | | // DataStreamRecvr may be destructed after the instance execution thread ends. |
391 | 365k | _mem_tracker = |
392 | 365k | std::make_unique<MemTracker>("VDataStreamRecvr:" + print_id(_fragment_instance_id)); |
393 | 365k | SCOPED_CONSUME_MEM_TRACKER(_mem_tracker.get()); |
394 | | |
395 | | // Create one queue per sender if is_merging is true. |
396 | 365k | int num_queues = is_merging ? num_senders : 1; |
397 | 365k | _sender_to_local_channel_dependency.resize(num_queues); |
398 | 944k | for (size_t i = 0; i < num_queues; i++) { |
399 | 578k | _sender_to_local_channel_dependency[i] = Dependency::create_shared( |
400 | 578k | _dest_node_id, _dest_node_id, fmt::format("LocalExchangeChannelDependency_{}", i), |
401 | 578k | true); |
402 | 578k | } |
403 | 365k | _sender_queues.reserve(num_queues); |
404 | 365k | int num_sender_per_queue = is_merging ? 1 : num_senders; |
405 | 944k | for (int i = 0; i < num_queues; ++i) { |
406 | 579k | SenderQueue* queue = nullptr; |
407 | 579k | queue = _sender_queue_pool.add(new SenderQueue(this, num_sender_per_queue, |
408 | 579k | _sender_to_local_channel_dependency[i])); |
409 | 579k | _sender_queues.push_back(queue); |
410 | 579k | } |
411 | | |
412 | | // Initialize the counters |
413 | 365k | _remote_bytes_received_counter = ADD_COUNTER(_profile, "RemoteBytesReceived", TUnit::BYTES); |
414 | 365k | _local_bytes_received_counter = ADD_COUNTER(_profile, "LocalBytesReceived", TUnit::BYTES); |
415 | | |
416 | 365k | _deserialize_row_batch_timer = ADD_TIMER(_profile, "DeserializeRowBatchTimer"); |
417 | 365k | _data_arrival_timer = ADD_TIMER(_profile, "DataArrivalWaitTime"); |
418 | 365k | _buffer_full_total_timer = ADD_TIMER(_profile, "SendersBlockedTotalTimer(*)"); |
419 | 365k | _first_batch_wait_total_timer = ADD_TIMER(_profile, "FirstBatchArrivalWaitTime"); |
420 | 365k | _decompress_timer = ADD_TIMER(_profile, "DecompressTime"); |
421 | 365k | _decompress_bytes = ADD_COUNTER(_profile, "DecompressBytes", TUnit::BYTES); |
422 | 365k | _blocks_produced_counter = ADD_COUNTER(_profile, "BlocksProduced", TUnit::UNIT); |
423 | 365k | _max_wait_worker_time = ADD_COUNTER(_profile, "MaxWaitForWorkerTime", TUnit::UNIT); |
424 | 365k | _max_wait_to_process_time = ADD_COUNTER(_profile, "MaxWaitToProcessTime", TUnit::UNIT); |
425 | 365k | _max_find_recvr_time = ADD_COUNTER(_profile, "MaxFindRecvrCpuTime(NS)", TUnit::UNIT); |
426 | 365k | } |
427 | | |
428 | 370k | VDataStreamRecvr::~VDataStreamRecvr() { |
429 | 18.4E | DCHECK(_mgr == nullptr) << "Must call close()"; |
430 | 370k | } |
431 | | |
432 | | Status VDataStreamRecvr::create_merger(const VExprContextSPtrs& ordering_expr, |
433 | | const std::vector<bool>& is_asc_order, |
434 | | const std::vector<bool>& nulls_first, size_t batch_size, |
435 | 43.6k | int64_t limit, size_t offset) { |
436 | 43.6k | DCHECK(_is_merging); |
437 | 43.6k | SCOPED_CONSUME_MEM_TRACKER(_mem_tracker.get()); |
438 | 43.6k | std::vector<BlockSupplier> child_block_suppliers; |
439 | 43.6k | std::vector<BlockSupplierReadyChecker> child_block_supplier_ready_checkers; |
440 | | // Create the merger that will a single stream of sorted rows. |
441 | 43.6k | _merger.reset(new VSortedRunMerger(ordering_expr, is_asc_order, nulls_first, batch_size, limit, |
442 | 43.6k | offset, _profile)); |
443 | | |
444 | 43.6k | child_block_suppliers.reserve(_sender_queues.size()); |
445 | 43.6k | child_block_supplier_ready_checkers.reserve(_sender_queues.size()); |
446 | 301k | for (int i = 0; i < _sender_queues.size(); ++i) { |
447 | 257k | child_block_suppliers.emplace_back(std::bind(std::mem_fn(&SenderQueue::get_batch), |
448 | 257k | _sender_queues[i], std::placeholders::_1, |
449 | 257k | std::placeholders::_2)); |
450 | 257k | child_block_supplier_ready_checkers.emplace_back( |
451 | 257k | std::bind(std::mem_fn(&SenderQueue::has_data_or_finished), _sender_queues[i])); |
452 | 257k | } |
453 | 43.6k | RETURN_IF_ERROR(_merger->prepare(child_block_suppliers, child_block_supplier_ready_checkers)); |
454 | 43.6k | return Status::OK(); |
455 | 43.6k | } |
456 | | |
457 | | Status VDataStreamRecvr::add_block(std::unique_ptr<PBlock> pblock, int sender_id, int be_number, |
458 | | int64_t packet_seq, ::google::protobuf::Closure** done, |
459 | | const int64_t wait_for_worker, |
460 | 0 | const uint64_t time_to_find_recvr) { |
461 | 0 | SCOPED_ATTACH_TASK(_resource_ctx); |
462 | 0 | if (_query_context->low_memory_mode()) { |
463 | 0 | set_low_memory_mode(); |
464 | 0 | } |
465 | |
|
466 | 0 | int use_sender_id = _is_merging ? sender_id : 0; |
467 | 0 | return _sender_queues[use_sender_id]->add_block(std::move(pblock), be_number, packet_seq, done, |
468 | 0 | wait_for_worker, time_to_find_recvr); |
469 | 0 | } |
470 | | |
471 | | Status VDataStreamRecvr::add_blocks(const PTransmitDataParams* request, |
472 | | ::google::protobuf::Closure** done, |
473 | | const int64_t wait_for_worker, |
474 | 74.7k | const uint64_t time_to_find_recvr) { |
475 | 74.7k | SCOPED_ATTACH_TASK(_resource_ctx); |
476 | 74.7k | if (_query_context->low_memory_mode()) { |
477 | 0 | set_low_memory_mode(); |
478 | 0 | } |
479 | 74.7k | int use_sender_id = _is_merging ? request->sender_id() : 0; |
480 | 74.7k | return _sender_queues[use_sender_id]->add_blocks(request, done, wait_for_worker, |
481 | 74.7k | time_to_find_recvr); |
482 | 74.7k | } |
483 | | |
484 | 212k | void VDataStreamRecvr::add_block(Block* block, int sender_id, bool use_move) { |
485 | 212k | if (_query_context->low_memory_mode()) { |
486 | 0 | set_low_memory_mode(); |
487 | 0 | } |
488 | 212k | int use_sender_id = _is_merging ? sender_id : 0; |
489 | 212k | _sender_queues[use_sender_id]->add_block(block, use_move); |
490 | 212k | } |
491 | | |
492 | 27 | std::string VDataStreamRecvr::debug_string() { |
493 | 27 | fmt::memory_buffer debug_string_buffer; |
494 | 27 | fmt::format_to(debug_string_buffer, |
495 | 27 | "fragment_instance_id: {}, _dest_node_id: {}, _is_merging: {}, _is_closed: {}", |
496 | 27 | print_id(_fragment_instance_id), _dest_node_id, _is_merging, _is_closed); |
497 | 70 | for (size_t i = 0; i < _sender_queues.size(); i++) { |
498 | 43 | fmt::format_to(debug_string_buffer, "No. {} queue: {}", i, |
499 | 43 | _sender_queues[i]->debug_string()); |
500 | 43 | } |
501 | 27 | return fmt::to_string(debug_string_buffer); |
502 | 27 | } |
503 | | |
504 | 1.84M | std::shared_ptr<Dependency> VDataStreamRecvr::get_local_channel_dependency(int sender_id) { |
505 | 1.84M | DCHECK(_sender_to_local_channel_dependency[_is_merging ? sender_id : 0] != nullptr); |
506 | 1.84M | return _sender_to_local_channel_dependency[_is_merging ? sender_id : 0]; |
507 | 1.84M | } |
508 | | |
509 | 642k | Status VDataStreamRecvr::get_next(Block* block, bool* eos) { |
510 | 642k | if (!_is_merging) { |
511 | 528k | block->clear(); |
512 | 528k | return _sender_queues[0]->get_batch(block, eos); |
513 | 528k | } else { |
514 | 114k | return _merger->get_next(block, eos); |
515 | 114k | } |
516 | 642k | } |
517 | | |
518 | 2.80M | void VDataStreamRecvr::remove_sender(int sender_id, int be_number, Status exec_status) { |
519 | 2.80M | if (!exec_status.ok()) { |
520 | 0 | cancel_stream(exec_status); |
521 | 0 | return; |
522 | 0 | } |
523 | 2.80M | int use_sender_id = _is_merging ? sender_id : 0; |
524 | 2.80M | _sender_queues[use_sender_id]->decrement_senders(be_number); |
525 | 2.80M | } |
526 | | |
527 | 371k | void VDataStreamRecvr::cancel_stream(Status exec_status) { |
528 | 18.4E | VLOG_QUERY << "cancel_stream: fragment_instance_id=" << print_id(_fragment_instance_id) |
529 | 18.4E | << exec_status; |
530 | | |
531 | 957k | for (int i = 0; i < _sender_queues.size(); ++i) { |
532 | 586k | _sender_queues[i]->cancel(exec_status); |
533 | 586k | } |
534 | 371k | } |
535 | | |
536 | 288k | void VDataStreamRecvr::SenderQueue::add_blocks_memory_usage(int64_t size) { |
537 | 288k | DCHECK(size >= 0); |
538 | 288k | _recvr->_mem_tracker->consume(size); |
539 | 288k | _queue_mem_tracker->consume(size); |
540 | 288k | if (_local_channel_dependency && exceeds_limit()) { |
541 | 5.65k | _local_channel_dependency->block(); |
542 | 5.65k | } |
543 | 288k | } |
544 | | |
545 | 287k | void VDataStreamRecvr::SenderQueue::sub_blocks_memory_usage(int64_t size) { |
546 | 287k | DCHECK(size >= 0); |
547 | 287k | _recvr->_mem_tracker->release(size); |
548 | 287k | _queue_mem_tracker->release(size); |
549 | 287k | if (_local_channel_dependency && (!exceeds_limit())) { |
550 | 286k | _local_channel_dependency->set_ready(); |
551 | 286k | } |
552 | 287k | } |
553 | | |
554 | 575k | bool VDataStreamRecvr::SenderQueue::exceeds_limit() { |
555 | 575k | const size_t queue_byte_size = _queue_mem_tracker->consumption(); |
556 | 575k | return _recvr->queue_exceeds_limit(queue_byte_size); |
557 | 575k | } |
558 | | |
559 | 75.3k | bool VDataStreamRecvr::exceeds_limit(size_t block_byte_size) { |
560 | 75.3k | return _mem_tracker->consumption() + block_byte_size > config::exchg_node_buffer_size_bytes; |
561 | 75.3k | } |
562 | | |
563 | 575k | bool VDataStreamRecvr::queue_exceeds_limit(size_t queue_byte_size) const { |
564 | 575k | return queue_byte_size >= _sender_queue_mem_limit; |
565 | 575k | } |
566 | | |
567 | 739k | void VDataStreamRecvr::close() { |
568 | 739k | if (_is_closed) { |
569 | 368k | return; |
570 | 368k | } |
571 | 370k | _is_closed = true; |
572 | 585k | for (auto& it : _sender_to_local_channel_dependency) { |
573 | 585k | it->set_always_ready(); |
574 | 585k | } |
575 | 956k | for (int i = 0; i < _sender_queues.size(); ++i) { |
576 | 586k | _sender_queues[i]->close(); |
577 | 586k | } |
578 | | // Remove this receiver from the DataStreamMgr that created it. |
579 | | // TODO: log error msg |
580 | 370k | if (_mgr) { |
581 | 370k | static_cast<void>(_mgr->deregister_recvr(fragment_instance_id(), dest_node_id())); |
582 | 370k | } |
583 | 370k | _mgr = nullptr; |
584 | | |
585 | 370k | _merger.reset(); |
586 | 370k | } |
587 | | |
588 | 363k | void VDataStreamRecvr::set_sink_dep_always_ready() const { |
589 | 578k | for (auto dep : _sender_to_local_channel_dependency) { |
590 | 578k | dep->set_always_ready(); |
591 | 578k | } |
592 | 363k | } |
593 | | |
594 | | } // namespace doris |