Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

RabbitMQ exchange binding arguments

Tags:

rabbitmq

I am setting up bindings from a topic exchange to various queues in RabbitMQ. What does the "Arguments" setting mean on a binding? I cannot find any information in the docs. enter image description here Thanks Markus

like image 874
Markus K Avatar asked Dec 20 '18 09:12

Markus K


1 Answers

Binding arguments are used for headers exchanges: see https://www.cloudamqp.com/blog/2015-09-03-part4-rabbitmq-for-beginners-exchanges-routing-keys-bindings.html for more details.

AFAIK, this is the only case where they are used.

like image 95
cdelmas Avatar answered Nov 15 '22 04:11

cdelmas