Partition handling in the client #1198
-
Situation There is a cluster consisting of three nodes. As a result of an emergency situation, and one of the nodes is considered partitioned, but in fact it is still running. The client accesses the cluster through load balancing, which distributes traffic randomly (port check is used as a healthcheck). Question Does |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Neither this nor other AMQP 0-9-1 clients do not treat any nodes as special. A node either allows for connections or does not (a node in the minority might stop itself, for example, or nodes marked for maintenance intentionally won't accept client connections). This client, like most, supports lists of endpoints it will try to to connect, in order, until one of them succeeds. |
Beta Was this translation helpful? Give feedback.
Neither this nor other AMQP 0-9-1 clients do not treat any nodes as special. A node either allows for connections or does not (a node in the minority might stop itself, for example, or nodes marked for maintenance intentionally won't accept client connections).
This client, like most, supports lists of endpoints it will try to to connect, in order, until one of them succeeds.