-
Notifications
You must be signed in to change notification settings - Fork 166
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
feat: Simplify configs for enabling/disabling operators #855
Conversation
@@ -1240,7 +1235,7 @@ class CometExecSuite extends CometTestBase { | |||
.saveAsTable("bucketed_table2") | |||
|
|||
withSQLConf( | |||
"spark.comet.exec.sortMergeJoin.disabled" -> "true", | |||
CometConf.COMET_EXEC_SORT_MERGE_JOIN_ENABLED.key -> "false", |
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.
true -> false change, is it related?
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.
This is to disable sort merge join. Previously it is a disabled
config. Now it is enabled
config.
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 @parthchandra @comphead |
* stop unpacking dictionaries for hash join input * simply configs * Revert * simplify configs * code cleanup and revert changes to FilterExec * Revert * revert * cargo update * add comment * update plans * update tests * enable stddev * revert plan changes * update configs * revert unrelated changes (cherry picked from commit fbf389c)
Which issue does this PR close?
N/A
Rationale for this change
Simplify configs so that there is one "enabled" config per oeprator, defaulting to true. We can disable operators by setting to false.
What changes are included in this PR?
How are these changes tested?