-
Notifications
You must be signed in to change notification settings - Fork 3.7k
[feature](inverted index) Add profile statistics for each condition in inverted index filters #47504
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
c75c6d0 to
b35d749
Compare
|
run buildall |
TPC-H: Total hot run time: 32210 ms |
TPC-DS: Total hot run time: 193009 ms |
ClickBench: Total hot run time: 30.25 s |
|
TeamCity be ut coverage result: |
|
run buildall |
TPC-H: Total hot run time: 32686 ms |
TPC-DS: Total hot run time: 186506 ms |
ClickBench: Total hot run time: 30.65 s |
|
TeamCity be ut coverage result: |
b35d749 to
221058f
Compare
|
run buildall |
TPC-H: Total hot run time: 31459 ms |
TPC-DS: Total hot run time: 184440 ms |
ClickBench: Total hot run time: 30.46 s |
221058f to
a1cd6dc
Compare
|
run buildall |
TPC-H: Total hot run time: 31645 ms |
TPC-DS: Total hot run time: 190603 ms |
ClickBench: Total hot run time: 30.89 s |
|
TeamCity be ut coverage result: |
be/src/olap/inverted_index_profile.h
Outdated
| COUNTER_UPDATE(filter_rows, stats.filter_rows); | ||
| } | ||
|
|
||
| for (auto stats : statistics->stats) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should we add a limit for max columns?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
a1cd6dc to
1e3877a
Compare
|
run buildall |
qidaye
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
|
PR approved by at least one committer and no changes requested. |
…n inverted index filters
4e621d3 to
4cca179
Compare
|
run buildall |
TPC-H: Total hot run time: 31416 ms |
TPC-DS: Total hot run time: 183774 ms |
ClickBench: Total hot run time: 30.74 s |
|
TeamCity be ut coverage result: |
airborne12
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
|
PR approved by at least one committer and no changes requested. |
qidaye
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
…n inverted index filters (apache#47504) Problem Summary: select count() from httplogs where clientip match '232.71.0.0' and request match 'images'; IndexFilter: - HitRows: 0ns - fr_clientip: 10.392K (10392) - fr_request: 28.601172M (28601172) - ExecTime: 0ns - ft_clientip: 2.65ms - ft_request: 201.778ms FilteredRows: Represents the count of rows that met the filtering conditions post-index filtering. FilteredTime: Represents the time taken to complete the filtering operation.
…n inverted index filters (apache#47504) Problem Summary: select count() from httplogs where clientip match '232.71.0.0' and request match 'images'; IndexFilter: - HitRows: 0ns - fr_clientip: 10.392K (10392) - fr_request: 28.601172M (28601172) - ExecTime: 0ns - ft_clientip: 2.65ms - ft_request: 201.778ms FilteredRows: Represents the count of rows that met the filtering conditions post-index filtering. FilteredTime: Represents the time taken to complete the filtering operation.
…n inverted index filters (apache#47504) Problem Summary: select count() from httplogs where clientip match '232.71.0.0' and request match 'images'; IndexFilter: - HitRows: 0ns - fr_clientip: 10.392K (10392) - fr_request: 28.601172M (28601172) - ExecTime: 0ns - ft_clientip: 2.65ms - ft_request: 201.778ms FilteredRows: Represents the count of rows that met the filtering conditions post-index filtering. FilteredTime: Represents the time taken to complete the filtering operation.
…n inverted index filters (apache#47504) Problem Summary: select count() from httplogs where clientip match '232.71.0.0' and request match 'images'; IndexFilter: - HitRows: 0ns - fr_clientip: 10.392K (10392) - fr_request: 28.601172M (28601172) - ExecTime: 0ns - ft_clientip: 2.65ms - ft_request: 201.778ms FilteredRows: Represents the count of rows that met the filtering conditions post-index filtering. FilteredTime: Represents the time taken to complete the filtering operation.
…n inverted index filters (apache#47504) Problem Summary: select count() from httplogs where clientip match '232.71.0.0' and request match 'images'; IndexFilter: - HitRows: 0ns - fr_clientip: 10.392K (10392) - fr_request: 28.601172M (28601172) - ExecTime: 0ns - ft_clientip: 2.65ms - ft_request: 201.778ms FilteredRows: Represents the count of rows that met the filtering conditions post-index filtering. FilteredTime: Represents the time taken to complete the filtering operation.
…n inverted index filters (apache#47504) Problem Summary: select count() from httplogs where clientip match '232.71.0.0' and request match 'images'; IndexFilter: - HitRows: 0ns - fr_clientip: 10.392K (10392) - fr_request: 28.601172M (28601172) - ExecTime: 0ns - ft_clientip: 2.65ms - ft_request: 201.778ms FilteredRows: Represents the count of rows that met the filtering conditions post-index filtering. FilteredTime: Represents the time taken to complete the filtering operation.
What problem does this PR solve?
Issue Number: close #xxx
Related PR: #xxx
Problem Summary:
select count() from httplogs where clientip match '232.71.0.0' and request match 'images';
IndexFilter:
- HitRows: 0ns
- fr_clientip: 10.392K (10392)
- fr_request: 28.601172M (28601172)
- ExecTime: 0ns
- ft_clientip: 2.65ms
- ft_request: 201.778ms
FilteredRows: Represents the count of rows that met the filtering conditions post-index filtering.
FilteredTime: Represents the time taken to complete the filtering operation.
Release note
None
Check List (For Author)
Test
Behavior changed:
Does this need documentation?
Check List (For Reviewer who merge this PR)