From f5673d62c4aca24e27abee28025ec33b09d4fb67 Mon Sep 17 00:00:00 2001 From: Wish Date: Sun, 24 Mar 2024 11:49:57 +0800 Subject: [PATCH] vector: More metrics Signed-off-by: Wish --- proto/executor.proto | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/proto/executor.proto b/proto/executor.proto index 0ceafa8b..6c5f7866 100644 --- a/proto/executor.proto +++ b/proto/executor.proto @@ -355,8 +355,9 @@ message TiFlashScanContext { optional uint64 dmfile_lm_filter_scanned_rows = 33; optional uint64 dmfile_lm_filter_skipped_rows = 34; - optional uint64 total_vector_idx_load_from_disk = 101; - optional uint64 total_vector_idx_load_from_cache = 102; + optional uint64 total_vector_idx_load_from_s3 = 100; // Index file not available in disk + optional uint64 total_vector_idx_load_from_disk = 101; // Index file available in disk and not cached in memory + optional uint64 total_vector_idx_load_from_cache = 102; // Index file available in disk and cached in memory optional uint64 total_vector_idx_load_time_ms = 103; optional uint64 total_vector_idx_search_time_ms = 104; optional uint64 total_vector_idx_search_visited_nodes = 105;