Uh oh!
There was an error while loading. Please reload this page.
[opt](inverted index) add performance profiling for remote io access in inverted index - #43542
Conversation
doris-robot
commented
Nov 10, 2024
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
| Status FullTextIndexReader::query(OlapReaderStatistics* stats, RuntimeState* runtime_state, | ||
| const std::string& column_name, const void* query_value, | ||
| InvertedIndexQueryType query_type, | ||
| Status FullTextIndexReader::query(const io::IOContext* io_ctx, OlapReaderStatistics* stats, |
There was a problem hiding this comment.
warning: function 'query' exceeds recommended size/complexity thresholds [readability-function-size]
Status FullTextIndexReader::query(const io::IOContext* io_ctx, OlapReaderStatistics* stats,
^Additional context
be/src/olap/rowset/segment_v2/inverted_index_reader.cpp:250: 81 lines including whitespace and comments (threshold 80)
Status FullTextIndexReader::query(const io::IOContext* io_ctx, OlapReaderStatistics* stats,
^| } | ||
| Status StringTypeInvertedIndexReader::query(OlapReaderStatistics* stats, | ||
| Status StringTypeInvertedIndexReader::query(const io::IOContext* io_ctx, |
There was a problem hiding this comment.
warning: function 'query' exceeds recommended size/complexity thresholds [readability-function-size]
Status StringTypeInvertedIndexReader::query(const io::IOContext* io_ctx,
^Additional context
be/src/olap/rowset/segment_v2/inverted_index_reader.cpp:348: 117 lines including whitespace and comments (threshold 80)
Status StringTypeInvertedIndexReader::query(const io::IOContext* io_ctx,
^028c8fd to
6e99cbbComparezzzxl1993
commented
Nov 11, 2024
run buildall |
1 similar comment
zzzxl1993
commented
Nov 11, 2024
run buildall |
Uh oh!
There was an error while loading. Please reload this page.
025f6e7 to
c0b7127Comparezzzxl1993
commented
Nov 12, 2024
run buildall |
zzzxl1993
commented
Nov 13, 2024
run buildall |
zzzxl1993
commented
Nov 13, 2024
run buildall |
zzzxl1993
commented
Nov 13, 2024
run buildall |
zzzxl1993
commented
Nov 13, 2024
run buildall |
PR approved by at least one committer and no changes requested. |
PR approved by anyone and no changes requested. |
zzzxl1993
commented
Nov 13, 2024
run buildall |
zzzxl1993
commented
Nov 14, 2024
run buildall |
| } | ||
| Status InvertedIndexFileReader::_init_from_v2(int32_t read_buffer_size) { | ||
| Status InvertedIndexFileReader::_init_from_v2(const io::IOContext* io_ctx, |
There was a problem hiding this comment.
warning: function '_init_from_v2' exceeds recommended size/complexity thresholds [readability-function-size]
Status InvertedIndexFileReader::_init_from_v2(const io::IOContext* io_ctx,
^Additional context
be/src/olap/rowset/segment_v2/inverted_index_file_reader.cpp:43: 94 lines including whitespace and comments (threshold 80)
Status InvertedIndexFileReader::_init_from_v2(const io::IOContext* io_ctx,
^zzzxl1993
commented
Nov 14, 2024
run buildall |
1 similar comment
zzzxl1993
commented
Nov 14, 2024
run buildall |
zzzxl1993
commented
Nov 15, 2024
run p0 |
| Status FullTextIndexReader::query(OlapReaderStatistics* stats, RuntimeState* runtime_state, | ||
| const std::string& column_name, const void* query_value, | ||
| InvertedIndexQueryType query_type, | ||
| Status FullTextIndexReader::query(const io::IOContext* io_ctx, OlapReaderStatistics* stats, |
There was a problem hiding this comment.
warning: function 'query' exceeds recommended size/complexity thresholds [readability-function-size]
Status FullTextIndexReader::query(const io::IOContext* io_ctx, OlapReaderStatistics* stats,
^Additional context
be/src/olap/rowset/segment_v2/inverted_index_reader.cpp:248: 81 lines including whitespace and comments (threshold 80)
Status FullTextIndexReader::query(const io::IOContext* io_ctx, OlapReaderStatistics* stats,
^| } | ||
| Status StringTypeInvertedIndexReader::query(OlapReaderStatistics* stats, | ||
| Status StringTypeInvertedIndexReader::query(const io::IOContext* io_ctx, |
There was a problem hiding this comment.
warning: function 'query' exceeds recommended size/complexity thresholds [readability-function-size]
Status StringTypeInvertedIndexReader::query(const io::IOContext* io_ctx,
^Additional context
be/src/olap/rowset/segment_v2/inverted_index_reader.cpp:346: 117 lines including whitespace and comments (threshold 80)
Status StringTypeInvertedIndexReader::query(const io::IOContext* io_ctx,
^zzzxl1993
commented
Nov 17, 2024
run buildall |
zzzxl1993
commented
Nov 17, 2024
run buildall |
doris-robot
commented
Nov 17, 2024
TeamCity be ut coverage result: |
PR approved by at least one committer and no changes requested. |
…in inverted index (#43542) Problem Summary: 1. Implement the accounting of remote I/O operations for the inverted index in profiling statistics. ### Release note Add performance profiling for remote IO access in inverted index
… profile (apache#44863) Add NumInvertedIndexRemoteIOTotal to count the number of remote IO operations in the inverted index Related PR: apache#43542
…in inverted index (apache#43542) Problem Summary: 1. Implement the accounting of remote I/O operations for the inverted index in profiling statistics. ### Release note Add performance profiling for remote IO access in inverted index
… profile (apache#44863) Add NumInvertedIndexRemoteIOTotal to count the number of remote IO operations in the inverted index Related PR: apache#43542
What problem does this PR solve?
Issue Number: close #xxx
Related PR: #xxx
Problem Summary:
Release note
None
Check List (For Author)
Test
Behavior changed:
Does this need documentation?
Check List (For Reviewer who merge this PR)