This is an automated email from the ASF dual-hosted git repository.
gabriellee 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 aaeb3101fdc [pipelineX](profile) refine scan profile (#29801)
aaeb3101fdc is described below
commit aaeb3101fdcf143b944a9bbe2d587380ea7187f9
Author: Gabriel <[email protected]>
AuthorDate: Thu Jan 11 10:07:09 2024 +0800
[pipelineX](profile) refine scan profile (#29801)
---
be/src/pipeline/exec/scan_operator.cpp | 7 -------
be/src/pipeline/exec/scan_operator.h | 4 ----
2 files changed, 11 deletions(-)
diff --git a/be/src/pipeline/exec/scan_operator.cpp
b/be/src/pipeline/exec/scan_operator.cpp
index 7001e2b828a..c92b2cbfcbf 100644
--- a/be/src/pipeline/exec/scan_operator.cpp
+++ b/be/src/pipeline/exec/scan_operator.cpp
@@ -141,13 +141,6 @@ Status ScanLocalState<Derived>::init(RuntimeState* state,
LocalStateInfo& info)
// could add here, not in the _init_profile() function
_prepare_rf_timer(_runtime_profile.get());
- static const std::string timer_name = "WaitForDependencyTime";
- _wait_for_dependency_timer = ADD_TIMER_WITH_LEVEL(_runtime_profile,
timer_name, 1);
- _wait_for_data_timer =
- ADD_CHILD_TIMER_WITH_LEVEL(_runtime_profile, "WaitForData",
timer_name, 1);
- _wait_for_scanner_done_timer =
- ADD_CHILD_TIMER_WITH_LEVEL(_runtime_profile, "WaitForScannerDone",
timer_name, 1);
- _wait_for_eos_timer = ADD_CHILD_TIMER_WITH_LEVEL(_runtime_profile,
"WaitForEos", timer_name, 1);
_wait_for_rf_timer = ADD_TIMER(_runtime_profile, "WaitForRuntimeFilter");
return Status::OK();
}
diff --git a/be/src/pipeline/exec/scan_operator.h
b/be/src/pipeline/exec/scan_operator.h
index fa7e44a8fb7..ec2d68e7649 100644
--- a/be/src/pipeline/exec/scan_operator.h
+++ b/be/src/pipeline/exec/scan_operator.h
@@ -169,10 +169,6 @@ protected:
RuntimeProfile::Counter* _total_throughput_counter = nullptr;
RuntimeProfile::Counter* _num_scanners = nullptr;
- RuntimeProfile::Counter* _wait_for_data_timer = nullptr;
- RuntimeProfile::Counter* _wait_for_scanner_done_timer = nullptr;
- // time of prefilter input block from scanner
- RuntimeProfile::Counter* _wait_for_eos_timer = nullptr;
RuntimeProfile::Counter* _wait_for_rf_timer = nullptr;
};
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]