-
Notifications
You must be signed in to change notification settings - Fork 1.4k
[multistage] Support Hash Functions Gracefully in V2 Optimizer #16296
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
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## master #16296 +/- ##
============================================
+ Coverage 62.90% 63.19% +0.29%
+ Complexity 1386 1364 -22
============================================
Files 2867 2966 +99
Lines 163354 171673 +8319
Branches 24952 26296 +1344
============================================
+ Hits 102755 108497 +5742
- Misses 52847 54919 +2072
- Partials 7752 8257 +505
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
shauryachats
reviewed
Jul 8, 2025
...java/org/apache/pinot/query/planner/physical/v2/opt/rules/LeafStageWorkerAssignmentRule.java
Show resolved
Hide resolved
shauryachats
approved these changes
Jul 8, 2025
itschrispeck
approved these changes
Jul 8, 2025
shauryachats
approved these changes
Jul 8, 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.
Summary
This PR fixes some assumptions in the v2 query optimizer, specifically about hash functions. With this PR, we achieve the following:
DistHashFunction. If a table uses some other hash function like modulo, then we consider the table-scan un-partitioned. We only allow those hash functions in table-scan which are also supported by KeySelector for hash exchange.PhysicalExchangetracks hash function separately to indicate the Hash Function to be used in KeySelector.Before, we would simply assume that a hash function we choose during planning could be used at runtime for shuffling, but our shuffle runtime was always using
absHashCode, which would have yielded incorrect results.Test Plan
UTs have decent coverage. I am also doing some manual testing and figuring out how to add tests for this