kevin85421 commented on code in PR #37411:
URL: https://github.com/apache/spark/pull/37411#discussion_r946369394
##########
core/src/main/scala/org/apache/spark/internal/config/Network.scala:
##########
@@ -51,6 +51,21 @@ private[spark] object Network {
.timeConf(TimeUnit.MILLISECONDS)
.createWithDefaultString(STORAGE_BLOCKMANAGER_TIMEOUTINTERVAL.defaultValueString)
+ private[spark] val NETWORK_EXECUTOR_TIMEOUT =
+ ConfigBuilder("spark.network.executorTimeout")
+ .version("3.4.0")
+ .timeConf(TimeUnit.MILLISECONDS)
+ .createOptional
+
+ private[spark] val HEARTBEAT_EXPIRY_CANDIDATES_TIMEOUT =
+ ConfigBuilder("spark.network.expiryCandidatesTimeout")
+ .doc("This config is a timeout used for heartbeat receiver
`executorExpiryCandidates`. Be" +
+ "effective only when HEARTBEAT_RECEIVER_CHECK_WORKER_LAST_HEARTBEAT is
enabled. See" +
+ "[SPARK-39984] for more details")
+ .version("3.4.0")
+ .timeConf(TimeUnit.MILLISECONDS)
+ .createWithDefaultString("30s")
Review Comment:
Updated
https://github.com/apache/spark/pull/37411/commits/e14853527434b7d625f0de05800314d00aaa5fc2
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]