mridulm commented on code in PR #3358:
URL: https://github.com/apache/celeborn/pull/3358#discussion_r2222773039
##########
common/src/main/scala/org/apache/celeborn/common/CelebornConf.scala:
##########
@@ -4808,6 +4809,17 @@ object CelebornConf extends Logging {
.timeConf(TimeUnit.MILLISECONDS)
.createWithDefaultString("600s")
+ val CLIENT_FETCH_POLL_CHUNK_WAIT_TIME: ConfigEntry[Long] =
+ buildConf("celeborn.client.fetch.pollChunk.wait")
+ .categories("client")
+ .version("0.7.0")
+ .doc("The waiting time for shuffle client to read the empty chunk on the
work side." +
+ "when there are many empty chunk in the shuffle partition of a small
task," +
+ "the current value can be set small to avoid long waiting times and
the illusion of the" +
+ "task getting stuck")
+ .timeConf(TimeUnit.MILLISECONDS)
+ .createWithDefault(200)
Review Comment:
Keep the same default
--
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]