-
- Downloads
[SPARK-13977] [SQL] Brings back Shuffled hash join
## What changes were proposed in this pull request? ShuffledHashJoin (also outer join) is removed in 1.6, in favor of SortMergeJoin, which is more robust and also fast. ShuffledHashJoin is still useful in this case: 1) one table is much smaller than the other one, then cost to build a hash table on smaller table is smaller than sorting the larger table 2) any partition of the small table could fit in memory. This PR brings back ShuffledHashJoin, basically revert #9645, and fix the conflict. Also merging outer join and left-semi join into the same class. This PR does not implement full outer join, because it's not implemented efficiently (requiring build hash table on both side). A simple benchmark (one table is 5x smaller than other one) show that ShuffledHashJoin could be 2X faster than SortMergeJoin. ## How was this patch tested? Added new unit tests for ShuffledHashJoin. Author: Davies Liu <davies@databricks.com> Closes #11788 from davies/shuffle_join.
Showing
- sql/core/src/main/scala/org/apache/spark/sql/execution/SparkStrategies.scala 60 additions, 6 deletions...cala/org/apache/spark/sql/execution/SparkStrategies.scala
- sql/core/src/main/scala/org/apache/spark/sql/execution/joins/ShuffledHashJoin.scala 95 additions, 0 deletions...g/apache/spark/sql/execution/joins/ShuffledHashJoin.scala
- sql/core/src/main/scala/org/apache/spark/sql/execution/joins/SortMergeJoin.scala 27 additions, 29 deletions.../org/apache/spark/sql/execution/joins/SortMergeJoin.scala
- sql/core/src/main/scala/org/apache/spark/sql/internal/SQLConf.scala 7 additions, 0 deletions...rc/main/scala/org/apache/spark/sql/internal/SQLConf.scala
- sql/core/src/test/scala/org/apache/spark/sql/JoinSuite.scala 4 additions, 4 deletionssql/core/src/test/scala/org/apache/spark/sql/JoinSuite.scala
- sql/core/src/test/scala/org/apache/spark/sql/execution/BenchmarkWholeStageCodegen.scala 21 additions, 1 deletion...ache/spark/sql/execution/BenchmarkWholeStageCodegen.scala
- sql/core/src/test/scala/org/apache/spark/sql/execution/PlannerSuite.scala 2 additions, 2 deletions...t/scala/org/apache/spark/sql/execution/PlannerSuite.scala
- sql/core/src/test/scala/org/apache/spark/sql/execution/joins/InnerJoinSuite.scala 38 additions, 0 deletions...org/apache/spark/sql/execution/joins/InnerJoinSuite.scala
- sql/core/src/test/scala/org/apache/spark/sql/execution/joins/OuterJoinSuite.scala 16 additions, 0 deletions...org/apache/spark/sql/execution/joins/OuterJoinSuite.scala
- sql/core/src/test/scala/org/apache/spark/sql/execution/joins/SemiJoinSuite.scala 3 additions, 2 deletions.../org/apache/spark/sql/execution/joins/SemiJoinSuite.scala
- sql/core/src/test/scala/org/apache/spark/sql/execution/metric/SQLMetricsSuite.scala 3 additions, 15 deletions...g/apache/spark/sql/execution/metric/SQLMetricsSuite.scala
- sql/hive/src/test/scala/org/apache/spark/sql/hive/StatisticsSuite.scala 1 addition, 1 deletion...est/scala/org/apache/spark/sql/hive/StatisticsSuite.scala
Loading
Please register or sign in to comment