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

    https://github.com/apache/spark/pull/43#discussion_r10156309
  
    --- Diff: 
core/src/main/scala/org/apache/spark/storage/BlockFetcherIterator.scala ---
    @@ -146,6 +146,12 @@ object BlockFetcherIterator {
         }
     
         protected def splitLocalRemoteBlocks(): ArrayBuffer[FetchRequest] = {
    +      // Make remote requests at most maxBytesInFlight / 5 in length; the 
reason to keep them
    +      // smaller than maxBytesInFlight is to allow multiple, parallel 
fetches from up to 5
    +      // nodes, rather than blocking on reading output from one node.
    +      val maxRequestSize = math.max(maxBytesInFlight / 5, 1L)
    +      logInfo("maxBytesInFlight: " + maxBytesInFlight + ", maxRequestSize: 
" + maxRequestSize)
    +
    --- End diff --
    
    Was always bothered by this ... not specifically related to this PR btw !


---
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.
---

Reply via email to