xuanyuanking commented on a change in pull request #26040: [SPARK-9853][Core]
Optimize shuffle fetch of continuous partition IDs
URL: https://github.com/apache/spark/pull/26040#discussion_r332982674
##########
File path:
core/src/main/scala/org/apache/spark/network/netty/NettyBlockRpcServer.scala
##########
@@ -65,12 +65,32 @@ class NettyBlockRpcServer(
case fetchShuffleBlocks: FetchShuffleBlocks =>
val blocks = fetchShuffleBlocks.mapIds.zipWithIndex.flatMap { case
(mapId, index) =>
- fetchShuffleBlocks.reduceIds.apply(index).map { reduceId =>
- blockManager.getBlockData(
- ShuffleBlockId(fetchShuffleBlocks.shuffleId, mapId, reduceId))
+ if (!fetchShuffleBlocks.batchFetchEnabled) {
+ fetchShuffleBlocks.reduceIds(index).map { reduceId =>
+ blockManager.getBlockData(
+ ShuffleBlockId(fetchShuffleBlocks.shuffleId, mapId, reduceId))
+ }
+ } else {
+ val startAndEndId = fetchShuffleBlocks.reduceIds(index)
+ if (startAndEndId.length != 2) {
+ throw new RuntimeException("Invalid reduceIds for batch fetch
mode, " +
Review comment:
Sure, done in 3b6c5a6.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]