-
Notifications
You must be signed in to change notification settings - Fork 2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Feature Request] Enable client side batching for Spring Cloud Azure Service Bus #21537
Comments
@yiliuTo is this sitll valid? |
Hi @stliu , there can be two modes of the client-side batching: explicitly and implicitly. The explicit way is to construct a batch of messages and using the SDK sender client to send directly, this is supported by ServiceBusSenderAsyncClient, however, given it has been implemented in the same as how EventHubProducerAsyncClient does, so currently we can only support batch sending in the And for the implicit way, which is that the SDK client batches messages automatically and send, this is not supported by the ServiceBusSenderAsyncClient nor the sync client. So I think what we can do for the client-side batching currently, is to support the batch sending API in the |
Hi @z1069867141, we deeply appreciate your input into this project. Regrettably, this issue has remained inactive for over 2 years, leading us to the decision to close it. We've implemented this policy to maintain the relevance of our issue queue and facilitate easier navigation for new contributors. If you still believe this topic requires attention, please feel free to create a new issue, referencing this one. Thank you for your understanding and ongoing support. |
Context
Referring to Service Bus client-side batching, Service Bus supports client side batching operations to send messages in batches.
Goal
Support client-side batching in Spring Cloud Azure Service Bus libraries towards different spring projects.
The text was updated successfully, but these errors were encountered: