'RabbitMQ delete Queue with no connection
I have a problem with RabbitMQ. The point is that when the federation loses connection with the queue, the queue is removed. Why is it removing? Messages keep going but in empty space.
Solution 1:[1]
If you want your queue to stay you could either set a TTL (Time To Live) on the queue, or you could use durable queues.
Durable queues will stay. The TTL sets the amount of time the queue can stay alive without having an active consumer/producer.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | Jordy |
