-
- Downloads
[SPARK-10704] Rename HashShuffleReader to BlockStoreShuffleReader
The current shuffle code has an interface named ShuffleReader with only one implementation, HashShuffleReader. This naming is confusing, since the same read path code is used for both sort- and hash-based shuffle. This patch addresses this by renaming HashShuffleReader to BlockStoreShuffleReader. Author: Josh Rosen <joshrosen@databricks.com> Closes #8825 from JoshRosen/shuffle-reader-cleanup.
Showing
- core/src/main/scala/org/apache/spark/shuffle/BlockStoreShuffleReader.scala 2 additions, 3 deletions...la/org/apache/spark/shuffle/BlockStoreShuffleReader.scala
- core/src/main/scala/org/apache/spark/shuffle/hash/HashShuffleManager.scala 1 addition, 1 deletion...la/org/apache/spark/shuffle/hash/HashShuffleManager.scala
- core/src/main/scala/org/apache/spark/shuffle/sort/SortShuffleManager.scala 1 addition, 2 deletions...la/org/apache/spark/shuffle/sort/SortShuffleManager.scala
- core/src/test/scala/org/apache/spark/shuffle/BlockStoreShuffleReaderSuite.scala 3 additions, 4 deletions...g/apache/spark/shuffle/BlockStoreShuffleReaderSuite.scala
Please register or sign in to comment