Copilot commented on code in PR #3207:
URL: https://github.com/apache/celeborn/pull/3207#discussion_r2036411563
##########
worker/src/main/java/org/apache/celeborn/service/deploy/worker/memory/MemoryManager.java:
##########
@@ -362,13 +365,14 @@ public void switchServingState() {
case PUSH_AND_REPLICATE_PAUSED:
if (!tryResumeByPinnedMemory(servingState, lastState)) {
pausePushDataAndReplicateCounter.increment();
- logger.info("Trigger action: PAUSE PUSH");
- pausePushDataAndReplicateStartTime = System.currentTimeMillis();
+ if (servingState != lastState) {
Review Comment:
[nitpick] The removal of the separate logging for 'Trigger action: PAUSE
REPLICATE' may reduce clarity in logs. Consider adding a log statement for the
replicate pause action to maintain consistency and facilitate troubleshooting.
--
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]