This is an automated email from the ASF dual-hosted git repository. yiguolei pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push: new 9c66acdaff0 [opt](profile) Add WaitWorkerTime into MergedProfile of pipeline task (#43350) 9c66acdaff0 is described below commit 9c66acdaff07e3b561719a8b5ae7faedf8ce416d Author: zhiqiang <seuhezhiqi...@163.com> AuthorDate: Sun Nov 10 10:19:35 2024 +0800 [opt](profile) Add WaitWorkerTime into MergedProfile of pipeline task (#43350) --- be/src/pipeline/pipeline_task.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/be/src/pipeline/pipeline_task.cpp b/be/src/pipeline/pipeline_task.cpp index 400495437d4..6f9e59c8291 100644 --- a/be/src/pipeline/pipeline_task.cpp +++ b/be/src/pipeline/pipeline_task.cpp @@ -181,7 +181,7 @@ void PipelineTask::_init_profile() { _sink_timer = ADD_CHILD_TIMER(_task_profile, "SinkTime", exec_time); _close_timer = ADD_CHILD_TIMER(_task_profile, "CloseTime", exec_time); - _wait_worker_timer = ADD_TIMER(_task_profile, "WaitWorkerTime"); + _wait_worker_timer = ADD_TIMER_WITH_LEVEL(_task_profile, "WaitWorkerTime", 1); _schedule_counts = ADD_COUNTER(_task_profile, "NumScheduleTimes", TUnit::UNIT); _yield_counts = ADD_COUNTER(_task_profile, "NumYieldTimes", TUnit::UNIT); --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org