-
Notifications
You must be signed in to change notification settings - Fork 3.4k
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
[fix](runtime filter) Disable build_bf_exactly
if `sync_filter_size…
#44169
Conversation
Thank you for your contribution to Apache Doris. Please clearly describe your PR:
|
run buildall |
clang-tidy review says "All clean, LGTM! 👍" |
TeamCity be ut coverage result: |
@@ -1355,20 +1355,18 @@ Status IRuntimeFilter::init_with_desc(const TRuntimeFilterDesc* desc, const TQue | |||
params.runtime_bloom_filter_max_size = options->__isset.runtime_bloom_filter_max_size | |||
? options->runtime_bloom_filter_max_size | |||
: 0; | |||
// We build runtime filter by exact distinct count iff three conditions are met: | |||
auto sync_filter_size = desc->__isset.sync_filter_size && desc->sync_filter_size; | |||
// We build runtime filter by exact distinct count if all of 3 conditions are met: |
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 add broadcast join
748807f
to
7332f5b
Compare
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
run buildall |
PR approved by at least one committer and no changes requested. |
PR approved by anyone and no changes requested. |
clang-tidy review says "All clean, LGTM! 👍" |
TPC-H: Total hot run time: 45343 ms
|
TeamCity be ut coverage result: |
TPC-H: Total hot run time: 44986 ms
|
apache#44169) …` is disabled When a bloom filter has multiple targets, it should use a size which is estimated by FE.
apache#44169) …` is disabled When a bloom filter has multiple targets, it should use a size which is estimated by FE.
…` is disabled
What problem does this PR solve?
When a bloom filter has multiple targets, it should use a size which is estimated by FE.
Release note
None
Check List (For Author)
Test
Behavior changed:
Does this need documentation?
Check List (For Reviewer who merge this PR)