-
Notifications
You must be signed in to change notification settings - Fork 169
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: Enable shuffle by default #881
Changes from all commits
c851a4f
1fa5923
bb14683
55e949b
13d849a
71143e0
dd889c3
39b2740
c970c41
35f73c7
760cb25
ea9e517
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -75,9 +75,11 @@ abstract class CometTestBase | |
conf.set(MEMORY_OFFHEAP_SIZE.key, "2g") | ||
conf.set(SQLConf.AUTO_BROADCASTJOIN_THRESHOLD.key, "1g") | ||
conf.set(SQLConf.ADAPTIVE_AUTO_BROADCASTJOIN_THRESHOLD.key, "1g") | ||
// TODO we should no longer be disabling COALESCE_PARTITIONS_ENABLED | ||
conf.set(SQLConf.COALESCE_PARTITIONS_ENABLED.key, "false") | ||
Comment on lines
+78
to
79
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Unrelated to this PR, but we should fix this in a separate PR There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I removed it in https://github.com/apache/datafusion-comet/pull/553/files#r1730694991, in order to trigger a test case failed in current code. |
||
conf.set(CometConf.COMET_ENABLED.key, "true") | ||
conf.set(CometConf.COMET_EXEC_ENABLED.key, "true") | ||
conf.set(CometConf.COMET_EXEC_SHUFFLE_ENABLED.key, "true") | ||
conf.set(CometConf.COMET_SPARK_TO_ARROW_ENABLED.key, "true") | ||
conf.set(CometConf.COMET_MEMORY_OVERHEAD.key, "2g") | ||
conf | ||
|
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.
We also need to fix default value in description
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.
We should probably automate adding the text stating the default value. Thanks for catching that.