Gabriel39 commented on code in PR #22847: URL: https://github.com/apache/doris/pull/22847#discussion_r1289997087
########## be/src/vec/sink/vdata_stream_sender.cpp: ########## @@ -497,19 +497,21 @@ Status VDataStreamSender::send(RuntimeState* state, Block* block, bool eos) { #define BROADCAST_ALL_CHANNELS(PBLOCK, PBLOCK_TO_SEND, POST_PROCESS) \ { \ SCOPED_CONSUME_MEM_TRACKER(_mem_tracker.get()); \ + Status status; \ + for (auto channel : _channels) { \ + if (!channel->is_receiver_eof() && channel->is_local()) { \ + status = channel->send_local_block(block); \ + HANDLE_CHANNEL_STATUS(state, channel, status); \ + } \ + } \ bool serialized = false; \ RETURN_IF_ERROR( \ _serializer.next_serialized_block(block, PBLOCK, _channels.size(), &serialized)); \ Review Comment: Do we still need to serialize this block? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org