chenghuichen commented on code in PR #3698:
URL: https://github.com/apache/celeborn/pull/3698#discussion_r3417880536
##########
worker/src/main/scala/org/apache/celeborn/service/deploy/worker/Worker.scala:
##########
@@ -1080,22 +1087,28 @@ private[celeborn] class Worker(
workerStatusManager.exitEventType match {
case WorkerEventType.Graceful =>
shutdownGracefully()
+ stop(CelebornExitKind.WORKER_GRACEFUL_SHUTDOWN)
case WorkerEventType.Decommission =>
decommissionWorker()
+ stop(CelebornExitKind.WORKER_DECOMMISSION)
Review Comment:
Not a regression — the existing REST `exit("DECOMMISSION")` path already
swallows this, and the master falls back to heartbeat-timeout eviction.
--
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]