Relative Content

Tag Archive for rabbitmq

Rabbit MQ: Migration to quorum queues. Auto-deleted quorum queues

In our system architecture, applications retrieve their initial state independently from real-time events. To achieve this, we utilize RabbitMQ’s exclusive auto-delete classic queues with server-generated names, which perfectly meet our requirements.
However, RabbitMQ is promoting a shift towards quorum queues, which unfortunately do not support these features.
We can devise a workaround for generating unique queue names and use the single-active-consumer property to simulate an exclusive queue. Yet, the challenge remains in creating an auto-deleted queue that will be removed once the host connection is closed.
Any assistance or insights on this matter would be greatly appreciated.