-
Notifications
You must be signed in to change notification settings - Fork 176
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
chore: Add config for enabling SMJ with join condition #937
Conversation
Thanks, related to apache/datafusion#9846 |
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.
lgtm thanks @andygrove
Co-authored-by: Oleks V <[email protected]>
Co-authored-by: Oleks V <[email protected]>
@@ -262,6 +262,7 @@ trait CometPlanStabilitySuite extends DisableAdaptiveExecutionSuite with TPCDSBa | |||
CometConf.COMET_EXEC_ENABLED.key -> "true", | |||
CometConf.COMET_DPP_FALLBACK_ENABLED.key -> "false", | |||
CometConf.COMET_EXEC_SHUFFLE_ENABLED.key -> "true", | |||
CometConf.COMET_EXEC_SORT_MERGE_JOIN_WITH_JOIN_FILTER_ENABLED.key -> "true", |
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.
@andygrove Do you remember by any chance why COMET_EXEC_SORT_MERGE_JOIN_WITH_JOIN_FILTER_ENABLED
is enabled only for testQuery()
but not for createSparkSession()
?
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.
Maybe this one? #901
Which issue does this PR close?
Part of #901
Rationale for this change
There are known correctness and performance issues with our support for SMJ with join condtion, so we should disable it by default.
What changes are included in this PR?
New config.
How are these changes tested?