You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to use a RabbitMQ Quorum Queue with the Quarkus AMQP 1.0 connector, but it seems the connector doesn't support creating Quorum Queues directly.
To work around this, I manually create the queue during Quarkus startup. However, this leads to a race condition between my custom queue factory and the connector's internal queue creation logic.
✅ If the queue already exists before the application starts, everything works fine.
✅ If my factory creates the queue first, it’s correctly configured as a Quorum Queue.
❌ If the connector creates the queue first, it defaults to a classic queue type, which causes an exception.
My questions are:
Is there a way to prevent the connector from automatically creating the queue?
Is it possible to configure the connector to create a Quorum Queue using custom parameters?
Any guidance or suggestions would be greatly appreciated!
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
-
I'm trying to use a RabbitMQ Quorum Queue with the Quarkus AMQP 1.0 connector, but it seems the connector doesn't support creating Quorum Queues directly.
To work around this, I manually create the queue during Quarkus startup. However, this leads to a race condition between my custom queue factory and the connector's internal queue creation logic.
✅ If the queue already exists before the application starts, everything works fine.
✅ If my factory creates the queue first, it’s correctly configured as a Quorum Queue.
❌ If the connector creates the queue first, it defaults to a classic queue type, which causes an exception.
My questions are:
Any guidance or suggestions would be greatly appreciated!
Beta Was this translation helpful? Give feedback.
All reactions