I\'ve set up RabbitMQ in order to parse some 20.000 requests from an external API but it keeps timing out after a few minutes. It does get to correctly parse about 2000 out of t
Add more to @tul's answer.
subChannel.basicQos(10);
Reducing consumer prefetch count does eliminate this timeout exception. The default prefetch count is unlimited.