This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch branch-1.1-lts in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-1.1-lts by this push: new e8bc9a01b4 [fix](sink) time info order mismatch in log (#12251) (#13727) e8bc9a01b4 is described below commit e8bc9a01b4db85e375c963abf65e8b6347525455 Author: zhengyu <freeman.zhang1...@gmail.com> AuthorDate: Fri Oct 28 08:41:46 2022 +0800 [fix](sink) time info order mismatch in log (#12251) (#13727) Signed-off-by: freemandealer <freeman.zhang1...@gmail.com> Signed-off-by: freemandealer <freeman.zhang1...@gmail.com> --- be/src/exec/tablet_sink.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/be/src/exec/tablet_sink.cpp b/be/src/exec/tablet_sink.cpp index b33bb8b1f8..f4742ab590 100644 --- a/be/src/exec/tablet_sink.cpp +++ b/be/src/exec/tablet_sink.cpp @@ -1107,7 +1107,7 @@ Status OlapTableSink::close(RuntimeState* state, Status close_status) { for (auto const& pair : node_add_batch_counter_map) { ss << "{" << pair.first << ":(" << (pair.second.add_batch_execution_time_us / 1000) << ")(" << (pair.second.add_batch_wait_execution_time_us / 1000) << ")(" - << pair.second.close_wait_time_ms << ")(" << (pair.second.add_batch_rpc_time_us / 1000) + << (pair.second.add_batch_rpc_time_us / 1000) << ")(" << pair.second.close_wait_time_ms << ")(" << pair.second.add_batch_num << ")} "; } LOG(INFO) << ss.str(); --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org