yiguolei commented on code in PR #45654: URL: https://github.com/apache/doris/pull/45654#discussion_r1891611355
########## be/src/pipeline/exec/hashjoin_build_sink.cpp: ########## @@ -511,9 +549,12 @@ Status HashJoinBuildSinkOperatorX::sink(RuntimeState* state, vectorized::Block* local_state._shared_state->build_block = std::make_shared<vectorized::Block>( local_state._build_side_mutable_block.to_block()); - RETURN_IF_ERROR(local_state._runtime_filter_slots->send_filter_size( - state, local_state._shared_state->build_block->rows(), - local_state._finish_dependency)); + if (!local_state._runtime_filters_disabled) { Review Comment: 那现在的逻辑是,如果disable了runtime filter,实际是用runtime filter 等待超时的方式解决吗?没有机制,告诉coordinator 一个0或者啥的? -- 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