hi guys
Currently, in services got issues about consumer timeout like below:
1. Error RMQ AlreadyClosedException (see in attachments)
2. Message doesn't ack, so it piled up (see in attachments)
I've already search the workaround for this. then found a solution. the solution refer from RabbitMQ documentation (
https://www.rabbitmq.com/consumers.html#acknowledgement-timeout). there are 2 options:
1. extend consumer_timeout in RMQ configuration
this option is recommended from RMQ, but this is an impact on all queues. and we don't know how long a process running in each service.
2. disable consumer_timeout, this option is not recommended
for 2 option above, I agree with first option, but my question is, can the configuration consumer_timeout be set per queue with different values? as I explain above of option.