-
Notifications
You must be signed in to change notification settings - Fork 330
feat: Add plan conversion statistics to extended explain info #2412
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
Changes from 17 commits
79310d0
5157f83
4ef5293
8b6dcfc
8dca97d
45aa334
2dc8f70
22407fc
f85ffd5
3552888
8fc2108
6f99dd9
9cd439f
ad7ff51
ac57ee9
36c0439
bdc8300
62473ad
e483ffa
6a0500d
6436574
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 |
|---|---|---|
|
|
@@ -118,6 +118,11 @@ class CometExecSuite extends CometTestBase { | |
| val (_, cometPlan) = checkSparkAnswer(df) | ||
| val infos = new ExtendedExplainInfo().generateExtendedInfo(cometPlan) | ||
| assert(infos.contains("Dynamic Partition Pruning is not supported")) | ||
|
|
||
| withSQLConf(CometConf.COMET_EXPLAIN_VERBOSE_ENABLED.key -> "true") { | ||
| val extendedExplain = new ExtendedExplainInfo().generateExtendedInfo(cometPlan) | ||
| assert(extendedExplain.contains("Comet accelerated 33% of eligible operators")) | ||
|
Contributor
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. would be this number fluctuating?
Member
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. It is currently stable across all Spark versions that we test with.
Member
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. I was wrong. There is a failure due to a different percentage. I will make the test less specific. |
||
| } | ||
| } | ||
| } | ||
| } | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.