This is an automated email from the ASF dual-hosted git repository. dataroaring pushed a commit to branch branch-3.0 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-3.0 by this push: new b8c49de1e67 branch-3.0: [Opt](bvar) Add bvar counter for `CALCULATE_DELETE_BITMAP` task #46195 (#46656) b8c49de1e67 is described below commit b8c49de1e67227b930cbfc2cbe2e26b09dcb8d68 Author: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> AuthorDate: Mon Jan 13 21:46:08 2025 +0800 branch-3.0: [Opt](bvar) Add bvar counter for `CALCULATE_DELETE_BITMAP` task #46195 (#46656) Cherry-picked from #46195 Co-authored-by: bobhan1 <bao...@selectdb.com> --- be/src/agent/task_worker_pool.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/be/src/agent/task_worker_pool.cpp b/be/src/agent/task_worker_pool.cpp index a8cbac9326d..1adfc3b072f 100644 --- a/be/src/agent/task_worker_pool.cpp +++ b/be/src/agent/task_worker_pool.cpp @@ -454,6 +454,7 @@ bvar::Adder<uint64_t> CLONE_count("task", "CLONE"); bvar::Adder<uint64_t> STORAGE_MEDIUM_MIGRATE_count("task", "STORAGE_MEDIUM_MIGRATE"); bvar::Adder<uint64_t> GC_BINLOG_count("task", "GC_BINLOG"); bvar::Adder<uint64_t> UPDATE_VISIBLE_VERSION_count("task", "UPDATE_VISIBLE_VERSION"); +bvar::Adder<uint64_t> CALCULATE_DELETE_BITMAP_count("task", "CALCULATE_DELETE_BITMAP"); void add_task_count(const TAgentTaskRequest& task, int n) { // clang-format off @@ -481,6 +482,7 @@ void add_task_count(const TAgentTaskRequest& task, int n) { ADD_TASK_COUNT(STORAGE_MEDIUM_MIGRATE) ADD_TASK_COUNT(GC_BINLOG) ADD_TASK_COUNT(UPDATE_VISIBLE_VERSION) + ADD_TASK_COUNT(CALCULATE_DELETE_BITMAP) #undef ADD_TASK_COUNT case TTaskType::REALTIME_PUSH: case TTaskType::PUSH: --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org