Queue to receive messages not picked up by other queues #4232
-
Hello, I am new to learning RabbitMQ, so please excuse me if this question is common. Am I able to configure a queue for all messages that do not go to any other queue? For example, I have one queue with binding key Thanks in advance! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi, Yes, you can configure an alternate exchange: https://www.rabbitmq.com/ae.html. Once you configure it for the exchange you already have and bind the third queue to this new exchange, messages that don't match any of the bindings (neither |
Beta Was this translation helpful? Give feedback.
Hi,
Yes, you can configure an alternate exchange: https://www.rabbitmq.com/ae.html. Once you configure it for the exchange you already have and bind the third queue to this new exchange, messages that don't match any of the bindings (neither
apples.*
norbananas.*
) will be routed through the alternate exchange to the third queue.