RabbitMQ కి అనేక exchange types ఉన్నాయి, ఇవి సందేశాలను queues కు ఎలా route చేయాలో నిర్ణయిస్తాయి — direct, topic, fanout, మరియు headers. వీటిని అర్థం చేసుకోవడం RabbitMQ యొక్క సరళ routing కోసం కీలకమైనది, వేర్వేరు messaging patterns ను సక్షమ చేస్తుంది.
Exchange రకాలు
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
