RockteMQ-AI commented on issue #1534: URL: https://github.com/apache/rocketmq-dashboard/issues/1534#issuecomment-5248531874
**Issue Evaluation** Category: `enhancement` | Status: **Evaluated** **Feasibility:** Feasible — the Tencent Cloud provider (`provider/tencent`) already has the Trocket OpenAPI wiring for instance onboarding; this extends it to topic operations. **Scope:** `TencentInstanceProvider` topic CRUD, topic consumer listing, topic count optimization. **Compatibility:** No breaking changes — adds new operations to an existing provider that currently throws `UnsupportedOperationException`. The implementation maps to Trocket v20230308 OpenAPI endpoints (`DescribeTopicList`, `CreateTopic`, `ModifyTopic`, `DeleteTopic`, `DescribeTopic`). The scope is well-defined and the approach is sound. Key considerations: - `LiteTopic` rejection is correct (Tencent Cloud does not support it) - The N+1 optimization for topic count (avoiding per-topic `DescribeTopic` calls) is a good design choice - Timestamp enrichment via `DescribeTopic` adds latency but provides accurate created/updated times This looks ready for implementation. If you have a PR ready or in progress, please link it. --- *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]
