dybyte commented on code in PR #9696: URL: https://github.com/apache/seatunnel/pull/9696#discussion_r2284663838
########## docs/en/seatunnel-engine/hybrid-cluster-deployment.md: ########## @@ -168,12 +168,25 @@ The corePoolSize of seatunnel coordinator job's executor cached thread pool The max job count can be executed at same time +**cleanup-retry-interval** + +Interval in seconds between attempts to retry metrics cleanup when previous cleanup fails due to lock contention or other issues. +Default value is 60 seconds. + +**cleanup-retry-queue-size** + +Maximum number of retry tasks allowed in the metrics cleanup retry queue. +Older entries will be removed when the queue is full. +Default value is 1024. + Example ```yaml coordinator-service: core-thread-num: 30 max-thread-num: 1000 + cleanup-retry-interval: 60 + cleanup-retry-queue-size: 1024 Review Comment: I’ve removed the retry queue and thread changes as discussed. Please take a look when you get a chance. @Hisoka-X -- 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: commits-unsubscr...@seatunnel.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org