Skip to content
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

Enable GpuShuffledSymmetricHashJoin by default #10418

Merged
merged 4 commits into from
Feb 22, 2024

Conversation

jlowe
Copy link
Member

@jlowe jlowe commented Feb 13, 2024

Fixes #10243. Turns on the new symmetric hash join exec by default and fixes a few bugs that were found. One was a double-close bug, and the other is a incorrect binding of a join condition expression. This binding order bug also existed in the original GpuHashJoin code, so I fixed it there as well (and verified tests pass even if we disable symmetric hash join).

Signed-off-by: Jason Lowe <jlowe@nvidia.com>
@jlowe jlowe self-assigned this Feb 13, 2024
@jlowe
Copy link
Member Author

jlowe commented Feb 13, 2024

build

revans2
revans2 previously approved these changes Feb 13, 2024
Copy link
Collaborator

@revans2 revans2 left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks good. A few nits that I don't really care about.

Table.mixedInnerJoinGatherMaps(leftKeys, rightKeys, leftTable, rightTable,
compiledCondition, nullEquality)
case _: InnerLike if buildSide == GpuBuildLeft =>
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

nit: Should we update the error message in the exception to include the build side?

@jlowe
Copy link
Member Author

jlowe commented Feb 14, 2024

build

@jlowe
Copy link
Member Author

jlowe commented Feb 15, 2024

build

@jlowe jlowe merged commit 5be63f9 into NVIDIA:branch-24.04 Feb 22, 2024
39 of 40 checks passed
@jlowe jlowe deleted the enable-symmetric-join branch February 22, 2024 22:44
@sameerz sameerz added the task Work required that improves the product but is not user facing label Feb 24, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
task Work required that improves the product but is not user facing
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Enable GpuSymmetricHashJoinExec by default
3 participants