Clustering 将多个 RabbitMQ 节点连接到单个逻辑代理中 — 用于可扩展性和(通过复制队列)高可用性。理解聚类及其细微之处对于可靠地扩展和运维 RabbitMQ 至关重要。
什么是集群
A RabbitMQ CLUSTER = multiple nodes acting as ONE logical broker:
→ nodes share METADATA (queue/exchange definitions, bindings, users, vhosts) across the cluster
→ clients can connect to any node; load is distributed across nodes
→ scales connection/channel capacity and distributes load
集群中的队列(一个重要的细微之处)
⚠️ By default, a queue's DATA lives on ONE node (the node where it was declared):
→ other nodes know about the queue (metadata) but route to the owning node
→ if that node FAILS → the queue (and its messages) is UNAVAILABLE
→ so CLUSTERING ALONE does NOT make queues highly available!
→ for HA → use REPLICATED queues (QUORUM QUEUES) that replicate data across nodes
