You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have confirmed that this should be classified as an enhancement rather than a bug/feature.
Summary
Currently the creation and modification of subscription groups can only be executed one by one at a time, which can be inefficient when dealing with a large number of subscription groups. In #8265 batching creation of topics was supported, but the efficiency for creating subscription groups also needs to be improved.
This enhancement request aims to enhance Apache RocketMQ by adding support for creating or updating subscription groups in batch, allowing users to efficiently manage multiple subscription groups at once.
Motivation
A message can only be consumed by a consumer after the group is created, thus the efficiency of creating subscription groups should be mattered. When the number of subscription groups is large, a message may be 'waiting' to be consumed by a specified group for a long time if only one subscription group can be created at a time.
This feature will enable users to manage multiple subscription groups in a single operation, thus streamlining the administration process, reducing operational overhead.
Describe the Solution You'd Like
A new request code UPDATE_AND_CREATE_SUBSCRIPTIONGROUP_LIST with value 225 is added.
The UPDATE_AND_CREATE_SUBSCRIPTIONGROUP_LIST request receives a list of configurations of subscription groups, and then modifying the subscriptionGroupTable according to the list in batch.
A new mqadmin subcommand updateSubGroupList is added, which enable creating or updating a list of subscription groups in a single operation.
Describe Alternatives You've Considered
None
Additional Context
No response
The text was updated successfully, but these errors were encountered:
Before Creating the Enhancement Request
Summary
Currently the creation and modification of subscription groups can only be executed one by one at a time, which can be inefficient when dealing with a large number of subscription groups. In #8265 batching creation of topics was supported, but the efficiency for creating subscription groups also needs to be improved.
This enhancement request aims to enhance Apache RocketMQ by adding support for creating or updating subscription groups in batch, allowing users to efficiently manage multiple subscription groups at once.
Motivation
A message can only be consumed by a consumer after the group is created, thus the efficiency of creating subscription groups should be mattered. When the number of subscription groups is large, a message may be 'waiting' to be consumed by a specified group for a long time if only one subscription group can be created at a time.
This feature will enable users to manage multiple subscription groups in a single operation, thus streamlining the administration process, reducing operational overhead.
Describe the Solution You'd Like
UPDATE_AND_CREATE_SUBSCRIPTIONGROUP_LIST
with value225
is added.UPDATE_AND_CREATE_SUBSCRIPTIONGROUP_LIST
request receives a list of configurations of subscription groups, and then modifying the subscriptionGroupTable according to the list in batch.mqadmin
subcommandupdateSubGroupList
is added, which enable creating or updating a list of subscription groups in a single operation.Describe Alternatives You've Considered
None
Additional Context
No response
The text was updated successfully, but these errors were encountered: