SteNicholas commented on code in PR #3245:
URL: https://github.com/apache/celeborn/pull/3245#discussion_r2095039482
##########
common/src/main/scala/org/apache/celeborn/common/CelebornConf.scala:
##########
@@ -2089,6 +2093,16 @@ object CelebornConf extends Logging {
.intConf
.createWithDefault(0)
+ val NETWORK_IO_THREADS: ConfigEntry[Int] =
+ buildConf("celeborn.<module>.io.threads")
+ .categories("network")
+ .doc(s"Default number of threads used in the server and client thread
pool. " +
+ s"This specifies thread configuration based on JVM's allocation of
cores. " +
+ s"If setting <module> to `${TransportModuleConstants.DATA_MODULE}`, " +
+ s"it works for shuffle client push and fetch data.")
+ .intConf
+ .createWithDefault(8)
Review Comment:
@turboFei, there is no behavior change. Just add the config option in
`CelebornConf` with the default value `8`.
--
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]