-
Notifications
You must be signed in to change notification settings - Fork 770
feat: support using fragment forest to execute additional broadcast operations. #17872
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
Merged
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Conflicts: # src/query/service/src/sessions/query_ctx_shared.rs
# Conflicts: # src/query/sql/src/executor/physical_plans/mod.rs # src/query/sql/src/executor/physical_plans/physical_hash_join.rs
# Conflicts: # src/query/service/src/pipelines/pipeline_builder.rs
zhang2014
reviewed
Apr 30, 2025
src/query/service/src/pipelines/processors/transforms/broadcast.rs
Outdated
Show resolved
Hide resolved
zhang2014
reviewed
Apr 30, 2025
src/query/service/src/pipelines/processors/transforms/broadcast.rs
Outdated
Show resolved
Hide resolved
zhang2014
reviewed
Apr 30, 2025
src/query/service/src/servers/flight/v1/exchange/serde/exchange_serializer.rs
Show resolved
Hide resolved
zhang2014
reviewed
Apr 30, 2025
src/query/service/src/pipelines/processors/transforms/broadcast.rs
Outdated
Show resolved
Hide resolved
zhang2014
approved these changes
Apr 30, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
I hereby agree to the terms of the CLA available at: https://docs.databend.com/dev/policies/cla/
Summary
This PR introduces a new mechanism for broadcasting additional metadata outside the main data pipeline, aiming to simplify the implementation of runtime filters in shuffle joins and to facilitate range shuffle joins.
Interface
Please refer to the three functions annotated in this commit:b28877e
Implemention
When building the distributed pipeline (build_distributed_pipeline), additional fragments dedicated to broadcasting metadata are created. These fragments form independent trees, and these are connected to the main fragment via channels.
Example
This commit implements a simple demo to illustrate its usage. On the build side of the hash join, basic information (build_num, build_key, node_id) is broadcast, and once all broadcasted data has been received, it is printed to the log.
Execute these sqls in 3-node cluster:
Observe logs:
Tests
Type of change
This change is