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

    https://github.com/apache/spark/pull/3562#discussion_r21214791
  
    --- Diff: 
core/src/main/scala/org/apache/spark/network/nio/ConnectionManager.scala ---
    @@ -81,7 +81,8 @@ private[nio] class ConnectionManager(
       private val ackTimeoutMonitor =
         new HashedWheelTimer(Utils.namedThreadFactory("AckTimeoutMonitor"))
     
    -  private val ackTimeout = 
conf.getInt("spark.core.connection.ack.wait.timeout", 60)
    +  private val ackTimeout =
    +    conf.getInt("spark.core.connection.ack.wait.timeout", 
conf.getInt("spark.network.timeout", 100))
    --- End diff --
    
    @Lewuathe , that is what I wanted to know. That what should I keep as the 
default value.  Keep a single fixed timeout value for the config 
spark.network.timeout or change the default based on defaults for earlier 
configurations which this config intends to replace. As I am pretty new to 
Spark, I am not aware of what default value will be suitable. Maybe @rxin can 
confirm. 


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