-
Notifications
You must be signed in to change notification settings - Fork 187
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 Comet explicitly in CometTPCDSQueryTestSuite
#1559
base: main
Are you sure you want to change the base?
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #1559 +/- ##
============================================
+ Coverage 56.12% 58.39% +2.26%
- Complexity 976 985 +9
============================================
Files 119 122 +3
Lines 11743 12217 +474
Branches 2251 2280 +29
============================================
+ Hits 6591 7134 +543
+ Misses 4012 3951 -61
+ Partials 1140 1132 -8 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
CometTPCDSQueryTestSuite
conf.set(MEMORY_OFFHEAP_ENABLED.key, "true") | ||
conf.set(MEMORY_OFFHEAP_SIZE.key, "2g") | ||
conf.set(CometConf.COMET_MEMORY_OVERHEAD.key, "2g") |
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.
COMET_MEMORY_OVERHEAD
is not used in off-heap mode
@@ -90,10 +90,8 @@ class CometTPCHQuerySuite extends QueryTest with TPCBase with ShimCometTPCHQuery | |||
conf.set(CometConf.COMET_EXEC_ENABLED.key, "true") | |||
conf.set(CometConf.COMET_NATIVE_SCAN_ENABLED.key, "true") | |||
conf.set(CometConf.COMET_EXEC_SHUFFLE_ENABLED.key, "true") | |||
conf.set(CometConf.COMET_SHUFFLE_MODE.key, "jvm") |
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 unrelated, but there is no reason for us to disable native shuffle now. I can revert this change and move to a separate PR if needed.
Which issue does this PR close?
N/A
Rationale for this change
Enable Comet support explicitly rather than rely on default setting.
What changes are included in this PR?
How are these changes tested?