Skip to content

Commit

Permalink
vector: More metrics
Browse files Browse the repository at this point in the history
Signed-off-by: Wish <[email protected]>
  • Loading branch information
breezewish committed Mar 24, 2024
1 parent 674f95d commit f5673d6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions proto/executor.proto
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit f5673d6

Please sign in to comment.