File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed
core/src/main/scala/org/apache/spark/storage Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -551,8 +551,10 @@ final class ShuffleBlockFetcherIterator(
551551 // Send out initial requests for blocks, up to our maxBytesInFlight
552552 fetchUpToMaxBytes()
553553
554- val numFetches = remoteRequests.size - fetchRequests.size
555- logInfo(s " Started $numFetches remote fetches in ${Utils .getUsedTimeNs(startTimeNs)}" )
554+ val numDeferredRequest = deferredFetchRequests.values.map(_.size).sum
555+ val numFetches = remoteRequests.size - fetchRequests.size - numDeferredRequest
556+ logInfo(s " Started $numFetches remote fetches in ${Utils .getUsedTimeNs(startTimeNs)}" +
557+ s " ${if (numDeferredRequest > 0 ) s " , deferred $numDeferredRequest requests " else " " }" )
556558
557559 // Get Local Blocks
558560 fetchLocalBlocks()
You can’t perform that action at this time.
0 commit comments