yew1eb commented on code in PR #3601: URL: https://github.com/apache/celeborn/pull/3601#discussion_r2809212189
########## client/src/main/scala/org/apache/celeborn/client/LifecycleManager.scala: ########## @@ -132,6 +132,11 @@ class LifecycleManager(val appUniqueId: String, val conf: CelebornConf) extends private val mockDestroyFailure = conf.testMockDestroySlotsFailure private val authEnabled = conf.authEnabledOnClient private var applicationMeta: ApplicationMeta = _ + + private val shuffleWriteLimitEnabled = conf.shuffleWriteLimitEnabled + private val shuffleWriteLimitThreshold = conf.shuffleWriteLimitThreshold + private val shuffleTotalWrittenBytes = JavaUtils.newConcurrentHashMap[Int, AtomicLong]() Review Comment: yes. -- 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]
