yiguolei commented on code in PR #33332: URL: https://github.com/apache/doris/pull/33332#discussion_r1554991558
########## be/src/pipeline/exec/scan_operator.cpp: ########## @@ -1407,7 +1400,11 @@ Status ScanLocalState<Derived>::close(RuntimeState* state) { return Status::OK(); } COUNTER_UPDATE(exec_time_counter(), _scan_dependency->watcher_elapse_time()); - COUNTER_UPDATE(exec_time_counter(), _filter_dependency->watcher_elapse_time()); + int64_t rf_time = 0; + for (auto& dep : _filter_dependencies) { + rf_time += dep->watcher_elapse_time(); + } + COUNTER_UPDATE(exec_time_counter(), rf_time); Review Comment: 感觉这个不应该是把多个rf的时间累加啊 -- 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