This is an automated email from the ASF dual-hosted git repository.
zhangchen 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 12e94294dc7 [Opt](bvar) Add bvar counter for `CALCULATE_DELETE_BITMAP`
task (#46195)
12e94294dc7 is described below
commit 12e94294dc75efe00f41f7ba01d2b487713525bf
Author: bobhan1 <[email protected]>
AuthorDate: Wed Jan 8 23:20:25 2025 +0800
[Opt](bvar) Add bvar counter for `CALCULATE_DELETE_BITMAP` task (#46195)
Add bvar counter for CALCULATE_DELETE_BITMAP task
---
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 a8ab93de455..40b84facecf 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: [email protected]
For additional commands, e-mail: [email protected]