Skip to content

Commit

Permalink
[BugFix] Fix the miss profile metrics for GIN (#50914)
Browse files Browse the repository at this point in the history
Signed-off-by: srlch <[email protected]>
(cherry picked from commit 5eebf0e)

# Conflicts:
#	be/src/exec/pipeline/scan/olap_chunk_source.cpp
  • Loading branch information
srlch authored and mergify[bot] committed Sep 18, 2024
1 parent 67a12c7 commit a7871e3
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions be/src/exec/pipeline/scan/olap_chunk_source.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -620,6 +620,12 @@ void OlapChunkSource::_update_counter() {
COUNTER_UPDATE(_bi_filter_timer, _reader->stats().bitmap_index_filter_timer);
COUNTER_UPDATE(_gin_filtered_counter, _reader->stats().rows_gin_filtered);
COUNTER_UPDATE(_gin_filtered_timer, _reader->stats().gin_index_filter_ns);
<<<<<<< HEAD
=======
COUNTER_UPDATE(_get_row_ranges_by_vector_index_timer, _reader->stats().get_row_ranges_by_vector_index_timer);
COUNTER_UPDATE(_vector_search_timer, _reader->stats().vector_search_timer);
COUNTER_UPDATE(_process_vector_distance_and_id_timer, _reader->stats().process_vector_distance_and_id_timer);
>>>>>>> 5eebf0e6c7 ([BugFix] Fix the miss profile metrics for GIN (#50914))
COUNTER_UPDATE(_block_seek_counter, _reader->stats().block_seek_num);

COUNTER_UPDATE(_rowsets_read_count, _reader->stats().rowsets_read_count);
Expand Down

0 comments on commit a7871e3

Please sign in to comment.