Aias00 opened a new issue, #2609: URL: https://github.com/apache/rocketmq-dashboard/issues/2609
## Problem Tencent cloud instance discovery and consumer-group inventory use a fixed `PAGE_SIZE = 100` and `MAX_PAGES = 100`. When the 100th page is full, both loops return a successful but incomplete inventory. The Tencent SDK response already exposes `TotalCount`, but these loops do not use it. ## Locations - `server/src/main/java/org/apache/rocketmq/studio/provider/tencent/TencentCatalogService.java` - `server/src/main/java/org/apache/rocketmq/studio/provider/tencent/TencentInstanceProvider.java` ## Impact Deployments with more than 10,000 Tencent Cloud RocketMQ instances in a region, or more than 10,000 consumer groups in an instance, silently lose later records. This makes instance import, group management, exports, and counts incomplete while the API reports success. ## Expected behavior Continue pagination until `TotalCount` is reached, while retaining the short-page fallback for missing totals. Add regression coverage for exact and over-10,000 inventories. ## Related - #2442 covers the analogous Aliyun consumer-group cap. - #2355 covers cloud Topic paging. - Neither covers Tencent instance catalog or consumer-group inventory truncation. -- 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]
