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
Hi everyone,
I'm currently using Symfony Messenger with Amazon SQS as the transport, and I’ve run into a cost-efficiency challenge. AWS charges per API request, so sending one message per SendMessage call becomes expensive at scale. Using SendMessageBatch (up to 10 messages per call) significantly reduces costs — up to 90% savings in some scenarios.
Symfony Messenger supports batch handling of messages but from what I see it's not supported on the sending side. Is there any ideas on how to support/implement this in Symfony messenger?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
Hi everyone,
I'm currently using Symfony Messenger with Amazon SQS as the transport, and I’ve run into a cost-efficiency challenge. AWS charges per API request, so sending one message per SendMessage call becomes expensive at scale. Using SendMessageBatch (up to 10 messages per call) significantly reduces costs — up to 90% savings in some scenarios.
Symfony Messenger supports batch handling of messages but from what I see it's not supported on the sending side. Is there any ideas on how to support/implement this in Symfony messenger?
Beta Was this translation helpful? Give feedback.
All reactions