RockteMQ-AI commented on issue #2662: URL: https://github.com/apache/rocketmq-dashboard/issues/2662#issuecomment-5454240684
**Issue Evaluation** Category: | Status: **Confirmed** The reported issue has been verified against the current codebase on the branch. **Root Cause:** creates a with core/max threads and an with . This caps total in-flight + queued jobs at . When the configured instance count exceeds this capacity, catches and silently discards the job — the affected instances never get a collection opportunity in that pass, and the same tail instances are starved on every cycle. **Impact:** Any deployment with more than (default 8) instances will have a subset of instances permanently missing metric snapshots and alert evaluation. **Severity:** High — silent data loss for monitoring/alerting on tail instances. **Code references verified:** - — uses with bounded queue - — is caught, logged, and discarded - — returns all instances without pagination/batching An automated fix proposal can be generated. Reply to proceed with PR generation. --- *Automated evaluation by @RockteMQ-AI* -- 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]
