Wysoka dostępność w RabbitMQ polega na klastrowaniu (wiele węzłów) i replikowanych kolejkach (lustrzanych lub quorum queues) tak aby system przetrwał awarie węzłów bez utraty wiadomości. Zrozumienie HA jest ważne dla niezawodnego, produkcyjnego RabbitMQ.
Klasterowanie
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)
