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

    https://github.com/apache/spark/pull/2019#discussion_r16631998
  
    --- Diff: core/src/main/scala/org/apache/spark/network/Connection.scala ---
    @@ -263,14 +282,20 @@ class SendingConnection(val address: 
InetSocketAddress, selector_ : Selector,
     
       val DEFAULT_INTEREST = SelectionKey.OP_READ
     
    +  var alreadyReading = false
    +
       override def registerInterest() {
         // Registering read too - does not really help in most cases, but for 
some
         // it does - so let us keep it for now.
    -    changeConnectionKeyInterest(SelectionKey.OP_WRITE | DEFAULT_INTEREST)
    +    changeConnectionKeyInterest(
    +      SelectionKey.OP_WRITE | (if (!alreadyReading) {
    +        alreadyReading = true
    +        DEFAULT_INTEREST
    +      } else { 0 }))
    --- End diff --
    
    We use non blocking IO.
    Please take a look at ConnectionManager and Connection classes in detail to 
get better understanding of the codebase; there are a lot of resources online 
about how to use nio in non blocking mode in a multithreaded application.


---
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 [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to