zaynt4606 commented on code in PR #3132:
URL: https://github.com/apache/celeborn/pull/3132#discussion_r1984596388


##########
common/src/main/scala/org/apache/celeborn/common/CelebornConf.scala:
##########
@@ -982,6 +982,8 @@ class CelebornConf(loadDefaults: Boolean) extends Cloneable 
with Logging with Se
   def clientFetchTimeoutMs: Long = get(CLIENT_FETCH_TIMEOUT)
   def clientFetchBufferSize: Int = get(CLIENT_FETCH_BUFFER_SIZE).toInt
   def clientFetchMaxReqsInFlight: Int = get(CLIENT_FETCH_MAX_REQS_IN_FLIGHT)
+  def isWorkerPartitionReaderCheckpointEnabled: Boolean =
+    get(WORKER_PARTITION_READER_CHECKPOINT_ENABLE)

Review Comment:
   what about disable this conf when replica enable.
   `  def isWorkerPartitionReaderCheckpointEnabled: Boolean =
       if (clientPushReplicateEnabled) { false }
       else { get(WORKER_PARTITION_READER_CHECKPOINT_ENABLE) }` 



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

Reply via email to