yiguolei commented on code in PR #42552: URL: https://github.com/apache/doris/pull/42552#discussion_r1820338363
########## be/src/pipeline/exec/exchange_sink_operator.cpp: ########## @@ -162,6 +165,28 @@ Status ExchangeSinkLocalState::init(RuntimeState* state, LocalSinkStateInfo& inf return Status::OK(); } +void ExchangeSinkLocalState::on_channel_finished(InstanceLoId channel_id) { + std::lock_guard<std::mutex> lock(_finished_channels_mutex); + + if (_finished_channels.contains(channel_id)) { + return; + } else { + _finished_channels.emplace(channel_id); + LOG(INFO) << "query: " << print_id(_state->query_id()) << ", node: " << _parent->node_id() Review Comment: too many logs -- 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