Section NATS Server Clustering states that:
Note that NATS clustered servers have a forwarding limit of one hop. This means that each gnatsd instance will only forward messages that it has received from a client to the immediately adjacent gnatsd instances to which it has routes. Messages received from a route will only be distributed to local clients. Therefore a full mesh cluster, or complete graph, is recommended for NATS to function as intended and as described throughout the documentation.
Let's assume that I have a NATS cluster of 3 nodes: A -> B -> C ( ->
denotes a route). Would you please let me know what will happen wit NATS clients in the following scenario:
- A message sent to node A
- Node A suddenly terminates before delivering the message to node B
Thanks in advance