-
Notifications
You must be signed in to change notification settings - Fork 303
feat: Improve TPC-H performance with AQE on #2084
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
andygrove
merged 24 commits into
apache:main
from
andygrove:fix/2081-size-aware-broadcast
Jul 21, 2026
Merged
Changes from 22 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
31f8b6e
feat: make AQE respect broadcast_join_threshold_bytes
andygrove aade4aa
feat: add Ballista broadcast_join_threshold_rows and use it in AQE
andygrove 2729768
fix: default broadcast_join_threshold_rows to 1M to match existing be…
andygrove bd940a3
refactor: derive new_with_ballista join thresholds from Ballista conf…
andygrove a42245a
feat: demote DataFusion CollectLeft joins over the Ballista threshold
andygrove 6809fa5
docs: apply prettier formatting to AQE tuning-guide table
andygrove bf185ce
test: disable AQE broadcast via Ballista threshold in repartition tests
andygrove 806fcb7
fix: size the AQE broadcast decision by bytes, not row count
andygrove f33bef6
test: cover broadcast thresholds with declared statistics
andygrove b3bd7a7
Merge remote-tracking branch 'apache/main' into fix/2081-size-aware-b…
andygrove affeec0
feat: log AQE join decisions at INFO and shuffle spills at WARN
andygrove b53c1e3
feat: default sort-shuffle spill cap to 0 (uncapped) and plumb it thr…
andygrove c6a474a
feat: add hash_join_max_build_partition_bytes config
andygrove 99e66ee
feat: add max_per_partition_build_bytes helper for hash-join fit check
andygrove 5174608
feat: fall back to SMJ when hash-join build exceeds per-slot budget
andygrove 45d9844
feat: log hash-join build-fit decision at INFO
andygrove afef9af
refactor: hoist build-size call and tidy hash-join fit-check docs
andygrove 3fe1771
docs: add hash-join + safety-fallback SF1000 suite results (2x16, p64)
andygrove becb376
Merge upstream/main into fix/2081-size-aware-broadcast
andygrove ad16347
docs: refresh SF1000 Ballista AQE-on results on #2084 build
andygrove fac1fa2
revert: keep upstream 256 MiB sort-shuffle spill-cap default
andygrove 45db50c
docs: note SF1000 results use uncapped sort-shuffle spill override
andygrove 2939ece
Update ballista/scheduler/src/state/aqe/execution_plan/dynamic_join.rs
andygrove b563844
refactor: log per-partition shuffle write at debug; fix log import
andygrove File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
Oops, something went wrong.
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.
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.
Looks like this got flipped back to info
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.
Fixed in b563844 — demoted to
debug!. It fires once per shuffle partition; the spill case stays atwarn!.