Github user jiangxb1987 commented on a diff in the pull request:

    https://github.com/apache/spark/pull/18487#discussion_r126305092
  
    --- Diff: 
core/src/main/scala/org/apache/spark/storage/ShuffleBlockFetcherIterator.scala 
---
    @@ -433,12 +449,57 @@ final class ShuffleBlockFetcherIterator(
       }
     
       private def fetchUpToMaxBytes(): Unit = {
    -    // Send fetch requests up to maxBytesInFlight
    -    while (fetchRequests.nonEmpty &&
    -      (bytesInFlight == 0 ||
    -        (reqsInFlight + 1 <= maxReqsInFlight &&
    -          bytesInFlight + fetchRequests.front.size <= maxBytesInFlight))) {
    -      sendRequest(fetchRequests.dequeue())
    +    // Send fetch requests up to maxBytesInFlight. If you cannot fetch 
from a remote host
    +    // immediately, defer the request until the next time it can be 
processed.
    +
    +    // Process any outstanding deferred fetch requests if possible.
    +    if (deferredFetchRequests.nonEmpty) {
    +      for ((remoteAddress, defReqQueue) <- deferredFetchRequests) {
    --- End diff --
    
    ah, make sense.


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at infrastruct...@apache.org or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org
For additional commands, e-mail: reviews-h...@spark.apache.org

Reply via email to