Replies: 1 comment 3 replies
-
Messages are delivered and dispatched to consumers one by one. What you then do with them — accumulate and batch process or do it one by one — is entirely up to you. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi, this's an SDK-using question. I am now using
com.rabbitmq:amqp-client:5.14.2
in my project.Which consume messages like this:
I found that the message would be only processed serially but not concurrently. I can find nothing to do but in spring, well in
Spring-AMQP
it provided a way likenew SimpleRabbitListenerContainerFactory().setConcurrentConsumers(30);
But the problem is I don't want to use Spring things in my project, is there a way to process batch messages concurrently in one consumer?
Beta Was this translation helpful? Give feedback.
All reactions