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
Right now, amqp consumers only support handling one message at a time, while kafka consumers have a batch_size parameter.
Is it feasible to add batch processing for amqp consumers? Adapting the typing is slightly annoying, because the current handler function type expects a single message, but it's doable with overloading.
Or is there a reason I'm missing why the amqp consumer is only handler one message at a time right now?
The text was updated successfully, but these errors were encountered:
Right now, amqp consumers only support handling one message at a time, while kafka consumers have a
batch_size
parameter.Is it feasible to add batch processing for amqp consumers? Adapting the typing is slightly annoying, because the current handler function type expects a single message, but it's doable with overloading.
Or is there a reason I'm missing why the amqp consumer is only handler one message at a time right now?
The text was updated successfully, but these errors were encountered: