perf: reuse hash values across partial aggregation, repartition, and final - #2
Closed
naman-modi wants to merge 1 commit into
Closed
perf: reuse hash values across partial aggregation, repartition, and final#2naman-modi wants to merge 1 commit into
naman-modi wants to merge 1 commit into
Conversation
…final aggregation Apply upstream PR apache#23720: the group-key hash computed by the partial aggregation is carried through the hash repartition and reused by the final aggregation instead of being recomputed at each stage.
Collaborator
Author
|
Engine-level benchmark showed no gain (flat to slightly negative on the aggregate-heavy suite), so this is not kept. The hash-reuse idea stays available on branch agg-hashreuse if the picture changes. |
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
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.
What does this PR do?
Carries the group-key hash from the partial aggregation through the hash repartition into the final aggregation, so it is computed once per row instead of at each stage (upstream PR apache#23720 applied onto this line).
Testing
Local: datafusion-physical-plan (1571) + datafusion-physical-expr-common (75) unit tests green; the PR's own execution test suite (45 tests incl. hash_reuse) green.
Merge gate: held open until the engine-level benchmark confirms the gain; merged only if kept.