Skip to content

Commit

Permalink
[SPARK-8430] ExternalShuffleBlockResolver of shuffle service should s…
Browse files Browse the repository at this point in the history
…upport UnsafeShuffleManager

andrewor14 can you take a look?thanks

Author: Lianhui Wang <[email protected]>

Closes #6873 from lianhuiwang/SPARK-8430 and squashes the following commits:

51c47ca [Lianhui Wang] update andrewor's comments
2b27b19 [Lianhui Wang] support UnsafeShuffleManager
  • Loading branch information
lianhuiwang authored and Andrew Or committed Jun 19, 2015
1 parent 2c59d5c commit 9baf093
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,8 @@ public ManagedBuffer getBlockData(String appId, String execId, String blockId) {

if ("org.apache.spark.shuffle.hash.HashShuffleManager".equals(executor.shuffleManager)) {
return getHashBasedShuffleBlockData(executor, blockId);
} else if ("org.apache.spark.shuffle.sort.SortShuffleManager".equals(executor.shuffleManager)) {
} else if ("org.apache.spark.shuffle.sort.SortShuffleManager".equals(executor.shuffleManager)
|| "org.apache.spark.shuffle.unsafe.UnsafeShuffleManager".equals(executor.shuffleManager)) {
return getSortBasedShuffleBlockData(executor, shuffleId, mapId, reduceId);
} else {
throw new UnsupportedOperationException(
Expand Down

0 comments on commit 9baf093

Please sign in to comment.