Uh oh!
There was an error while loading. Please reload this page.
[SPARK-23303][SQL] improve the explain result for data source v2 relations - #20477
[SPARK-23303][SQL] improve the explain result for data source v2 relations#20477cloud-fan wants to merge 2 commits into
Conversation
cloud-fan
commented
Feb 1, 2018
SparkQA
commented
Feb 1, 2018
Test build #86937 has finished for PR 20477 at commit
|
SparkQA
commented
Feb 2, 2018
Test build #86957 has finished for PR 20477 at commit
|
cloud-fan
commented
Feb 2, 2018
retest this please |
SparkQA
commented
Feb 2, 2018
Test build #86962 has finished for PR 20477 at commit
|
SparkQA
commented
Feb 2, 2018
Test build #86963 has finished for PR 20477 at commit
|
SparkQA
commented
Feb 2, 2018
Test build #86974 has finished for PR 20477 at commit
|
cloud-fan
commented
Feb 2, 2018
retest this please |
SparkQA
commented
Feb 2, 2018
Test build #86986 has finished for PR 20477 at commit
|
There was a problem hiding this comment.
For your info, https://github.com/apache/spark/pull/20226/files#diff-3e1258979e16f72a829abb8a1cd88bda is also updating the output of the explain. Overriding the nodeName looks better for UI.
There was a problem hiding this comment.
I've replied on that PR. I don't think overwriting nodeName is the right way to fix the UI issue, as we need to overwrite more methods. We can discuss more on that PR about this problem, but it should not block this PR.
SparkQA
commented
Feb 5, 2018
Test build #87064 has finished for PR 20477 at commit
|
SparkQA
commented
Feb 6, 2018
Test build #87087 has finished for PR 20477 at commit
|
huaxingao
commented
Feb 7, 2018
@cloud-fan It seems to me that push down is happened at optimization. Should the optimized logical plan also contain the pushed filter like this? |
c4bfbf4 to
c0c5895CompareThe result was out-dated, I've updated the PR description, please check again, thanks! |
SparkQA
commented
Feb 7, 2018
Test build #87145 has finished for PR 20477 at commit
|
SparkQA
commented
Feb 7, 2018
Test build #87146 has finished for PR 20477 at commit
|
cloud-fan
commented
Feb 7, 2018
retest this please |
SparkQA
commented
Feb 7, 2018
Test build #87152 has finished for PR 20477 at commit
|
cloud-fan
commented
Feb 7, 2018
retest this please |
SparkQA
commented
Feb 7, 2018
Test build #87158 has finished for PR 20477 at commit
|
SparkQA
commented
Feb 8, 2018
Test build #87189 has finished for PR 20477 at commit
|
cloud-fan
commented
Feb 8, 2018
also cc @tdas@jose-torres@zsxwing |
SparkQA
commented
Feb 8, 2018
Test build #87197 has finished for PR 20477 at commit
|
cloud-fan
commented
Feb 8, 2018
retest this please |
SparkQA
commented
Feb 8, 2018
Test build #87208 has finished for PR 20477 at commit
|
SparkQA
commented
Feb 8, 2018
Test build #87220 has finished for PR 20477 at commit
|
SparkQA
commented
Feb 9, 2018
Test build #87242 has finished for PR 20477 at commit
|
cloud-fan
commented
Feb 9, 2018
retest this please |
SparkQA
commented
Feb 9, 2018
Test build #87247 has finished for PR 20477 at commit
|
gatorsmile
commented
Feb 12, 2018
retest this please |
SparkQA
commented
Feb 13, 2018
Test build #87350 has finished for PR 20477 at commit
|
kiszk
commented
Feb 13, 2018
retest this please |
SparkQA
commented
Feb 13, 2018
Test build #87358 has finished for PR 20477 at commit
|
gatorsmile
commented
Feb 13, 2018
LGTM Merged to master. |
gatorsmile
commented
Feb 14, 2018
As pointed out by @tdas , since this PR impacts the streaming, I am reverting this PR from master. Thanks! |
tdas
commented
Feb 14, 2018
To be clear, the MicrobatchReader -> DataSourceV2 map added to MicroBatchExecution has potential implications in the scenario of self-joins (that I am trying to debug in #20598). |
gatorsmile
commented
Feb 14, 2018
Thanks! The PR has been reverted. |
tdas
commented
Feb 14, 2018
Thank you very much @gatorsmile, I promise I will do a proper review of the streaming side when you reopen this PR. |
What changes were proposed in this pull request?
The current explain result for data source v2 relation is unreadable:
after this PR
an example for streaming query
How was this patch tested?
N/A