RockteMQ-AI commented on issue #4881: URL: https://github.com/apache/rocketmq-dashboard/issues/4881#issuecomment-5771971777
**Issue Evaluation** Category: `bug` | Status: **Confirmed** The reported issue is valid. When `enrichLiveStats` awaits each enrichment future with its own 3-second timeout, a hanging broker causes linear wait time growth (N×3s for N groups). The proposed fix—using a single absolute deadline for the entire batch—is correct and aligns with best practices for batch timeout handling. **Root Cause:** Each future in the batch has an independent timeout instead of sharing a batch-level deadline. **Impact:** Consumer group listing becomes unresponsive when brokers are slow or unreachable. **Severity:** Medium An automated fix proposal may be generated. Reply `/approve` 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]
