ltamber opened a new issue, #9467:
URL: https://github.com/apache/rocketmq/issues/9467

   ### Before Creating the Enhancement Request
   
   - [x] I have confirmed that this should be classified as an enhancement 
rather than a bug/feature.
   
   
   ### Summary
   
   By introducing sequence-based pagination, you can safely handle large 
metadata sets like Topic and SubscriptionGroup configurations, ensuring 
compatibility with Netty’s frame limits and improving robustness across 
environments.
   
   ### Motivation
   
   When retrieving topic or subscription group information via 
getAllTopicConfig and getAllSubscriptionGroup, if the number of topics or 
groups is too large, the serialized data may exceed Netty's maxFrameLength, 
leading to invocation failures.
   
   ### Describe the Solution You'd Like
   
   Modify the request logic so that clients can specify:
   - A starting sequence number (topicSeq or groupSeq)
   - Maximum number of items to return per request (maxTopicNum or maxGroupNum)
   
   This allows the client to fetch data in smaller, manageable chunks.
   
   ### Describe Alternatives You've Considered
   
   none
   
   ### Additional Context
   
   _No response_


-- 
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]

Reply via email to