You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Apache Spark (Jira)" <ji...@apache.org> on 2020/08/20 06:09:00 UTC

[jira] [Assigned] (SPARK-32649) Optimize BHJ/SHJ inner and semi join with empty hashed relation

     [ https://issues.apache.org/jira/browse/SPARK-32649?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Apache Spark reassigned SPARK-32649:
------------------------------------

    Assignee: Apache Spark

> Optimize BHJ/SHJ inner and semi join with empty hashed relation
> ---------------------------------------------------------------
>
>                 Key: SPARK-32649
>                 URL: https://issues.apache.org/jira/browse/SPARK-32649
>             Project: Spark
>          Issue Type: Sub-task
>          Components: SQL
>    Affects Versions: 3.1.0
>            Reporter: Cheng Su
>            Assignee: Apache Spark
>            Priority: Trivial
>
> With `EmptyHashedRelation` introduced in [https://github.com/apache/spark/pull/29389], it inspired me that there's a minor optimization we can apply to broadcast hash join and shuffled hash join if build side hashed relation is empty.
> If build side hashed relation is empty (i.e. build side is empty)
> 1.inner join: we don't need to execute stream side at all, just return an empty iterator - [https://github.com/apache/spark/blob/master/sql/core/src/main/scala/org/apache/spark/sql/execution/joins/HashJoin.scala#L152]
> 2.semi join: we don't need to execute stream side at all, just return an empty iterator - [https://github.com/apache/spark/blob/master/sql/core/src/main/scala/org/apache/spark/sql/execution/joins/HashJoin.scala#L227] .
> This is not common that build side is empty, but in case it is, we can leverage it to not execute stream side at all for better query CPU/IO performance.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org