RabbitMQ मध्ये अनेक एक्सचेंज प्रकार आहेत जे संदेशांना queue मध्ये कसे route करायचे हे निर्धारित करतात — direct, topic, fanout, आणि headers. त्यांच्या बद्दल समजून घेणे RabbitMQ च्या लचकदार routing साठी महत्त्वाचे आहे, जे विविध messaging patterns सक्षम करते.
एक्सचेंज प्रकार
DIRECT → routes by an EXACT routing key match:
→ message routing key = queue binding key → delivered to that queue
→ for: routing to specific queues by a key (e.g. route by severity, type)
FANOUT → broadcasts to ALL bound queues (ignores routing key):
→ every queue bound to the exchange gets the message → PUB/SUB (one-to-many)
→ for: broadcasting events to all interested consumers
TOPIC → routes by PATTERN matching on the routing key (wildcards):
→ routing keys like "order.created", "order.*", "*.error" → flexible pattern routing
→ for: routing by topics/categories with wildcards (flexible pub/sub)
HEADERS → routes by message HEADER attributes (not the routing key) → less common
