Yüksek kullanılabilirlik (HA), RabbitMQ'da clustering (birden fazla node) ve replicated queues (mirrored veya quorum queues) ile çalışır; böylece sistem node hatalarında mesajları kaybetmeden ayakta kalır. HA'yı anlamak, güvenilir, production RabbitMQ için önemlidir.
Clustering
RabbitMQ CLUSTER → multiple RabbitMQ nodes working together as one logical broker:
→ nodes share metadata (queues, exchanges, bindings, users)
→ distributes connections and load across nodes
⚠️ by default, a queue lives on ONE node → if that node fails, the queue is unavailable
(clustering alone doesn't make queues highly available → need replication)
