Uh oh!
There was an error while loading. Please reload this page.
[SPARK-15616] [SQL] Metastore relation should fallback to HDFS size of partitions that are involved in Query for JoinSelection. - #13373
Conversation
SparkQA
commented
May 28, 2016
Test build #59552 has finished for PR 13373 at commit
|
SparkQA
commented
May 28, 2016
Test build #59555 has finished for PR 13373 at commit
|
SparkQA
commented
Jun 6, 2016
Test build #60017 has finished for PR 13373 at commit
|
SparkQA
commented
Jun 6, 2016
Test build #60018 has finished for PR 13373 at commit
|
SparkQA
commented
Jun 6, 2016
Test build #60044 has finished for PR 13373 at commit
|
SparkQA
commented
Jun 7, 2016
Test build #60094 has finished for PR 13373 at commit
|
SparkQA
commented
Jun 7, 2016
Test build #60110 has finished for PR 13373 at commit
|
SparkQA
commented
Jul 22, 2016
Test build #62707 has finished for PR 13373 at commit
|
SparkQA
commented
Jul 22, 2016
Test build #62710 has finished for PR 13373 at commit
|
SparkQA
commented
Jul 22, 2016
Test build #62711 has finished for PR 13373 at commit
|
lianhuiwang
commented
Jul 22, 2016
SparkQA
commented
Jul 22, 2016
Test build #62704 has finished for PR 13373 at commit
|
SparkQA
commented
Jul 22, 2016
Test build #62713 has finished for PR 13373 at commit
|
SparkQA
commented
Jul 22, 2016
Test build #62715 has finished for PR 13373 at commit
|
SparkQA
commented
Aug 11, 2016
Test build #63612 has finished for PR 13373 at commit
|
SparkQA
commented
Aug 11, 2016
Test build #63614 has finished for PR 13373 at commit
|
…on_broadcast # Conflicts: # sql/hive/src/main/scala/org/apache/spark/sql/hive/MetastoreRelation.scala
SparkQA
commented
Oct 29, 2016
Test build #67765 has finished for PR 13373 at commit
|
SparkQA
commented
Oct 29, 2016
Test build #67768 has finished for PR 13373 at commit
|
SparkQA
commented
Oct 29, 2016
Test build #67771 has finished for PR 13373 at commit
|
SparkQA
commented
Oct 30, 2016
Test build #67777 has finished for PR 13373 at commit
|
HyukjinKwon
commented
Jun 2, 2017
@lianhuiwang, I understand it is painful to keep the PR up-to-date. However, shouldn't we probably have the Jenkins build passed at the last even if it has conflicts? |
cloud-fan
commented
Jun 2, 2017
Sorry that I think it's not valid anymore after we have |
lianhuiwang
commented
Jun 3, 2017
@cloud-fan I do not think that PruneFileSourcePartitions rule is for Hive's CatalogRelation. example in this PR with master branch cannot get expected result. So i will update it with the latest code. |
lianhuiwang
commented
Jun 4, 2017
@HyukjinKwon@cloud-fan I will close this PR and create new PR #18193 for it. Thanks. |
What changes were proposed in this pull request?
Currently if some partitions of a partitioned table are used in join operation we rely on Metastore returned size of table to calculate if we can convert the operation to Broadcast join.
if Filter can prune some partitions, Hive can prune partition before determining to use broadcast joins according to HDFS size of partitions that are involved in Query.So sparkSQL needs it that can improve join's performance for partitioned table.
How was this patch tested?
integration tests