Skip to content

Commit

Permalink
[BugFix] Fix the miss profile metrics for GIN
Browse files Browse the repository at this point in the history
Fix the miss profile metrics for GIN, pr#48521 delete the code of the profile metrics for GIN by mistake

Signed-off-by: srlch <[email protected]>
  • Loading branch information
srlch committed Sep 18, 2024
1 parent 3ccf3c4 commit 0f4701d
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions be/src/exec/pipeline/scan/olap_chunk_source.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -673,6 +673,8 @@ void OlapChunkSource::_update_counter() {

COUNTER_UPDATE(_bi_filtered_counter, _reader->stats().rows_bitmap_index_filtered);
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);
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);
Expand Down

0 comments on commit 0f4701d

Please sign in to comment.