-
Notifications
You must be signed in to change notification settings - Fork 306
feat: comet native scan improvements - Dynamic Partition Pruning #3546
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
base: main
Are you sure you want to change the base?
Changes from all commits
30af3e6
bba6b83
f39a31f
d6d5f1a
0574aaa
cd977ea
26fee50
08f0089
5d470a4
f8dd8c8
4a2971a
228bc3a
98957b7
5f8c283
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 |
|---|---|---|
|
|
@@ -14,7 +14,7 @@ TakeOrderedAndProject | |
| : : : +- BroadcastHashJoin | ||
| : : : :- Filter | ||
| : : : : +- ColumnarToRow | ||
| : : : : +- Scan parquet spark_catalog.default.store_returns [COMET: Native DataFusion scan does not support subqueries/dynamic pruning] | ||
|
Contributor
Author
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. CI checks where failing and hence need to update them
Member
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'd suggest not changing the fallback message for this PR and have a follow on PR to improve the message, so that this PR is smaller and just focuses on the functionality. Another option is to add a new config to feature gate the DPP support and disable it for now in the stability suite.
Contributor
Author
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. Thanks @andygrove for review, Actually unit tests were failing and hence I had to update in PR itself to make all checks green. |
||
| : : : : +- Scan parquet spark_catalog.default.store_returns [COMET: native_datafusion scan with DPP requires AQE to be enabled. DPP subqueries are not properly prepared in non-AQE mode.] | ||
| : : : : +- SubqueryBroadcast | ||
| : : : : +- BroadcastExchange | ||
| : : : : +- CometNativeColumnarToRow | ||
|
|
@@ -40,7 +40,7 @@ TakeOrderedAndProject | |
| : : +- BroadcastHashJoin | ||
| : : :- Filter | ||
| : : : +- ColumnarToRow | ||
| : : : +- Scan parquet spark_catalog.default.store_returns [COMET: Native DataFusion scan does not support subqueries/dynamic pruning] | ||
| : : : +- Scan parquet spark_catalog.default.store_returns [COMET: native_datafusion scan with DPP requires AQE to be enabled. DPP subqueries are not properly prepared in non-AQE mode.] | ||
| : : : +- ReusedSubquery | ||
| : : +- BroadcastExchange | ||
| : : +- CometNativeColumnarToRow | ||
|
|
||
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.
👍