NATS client applications use a PING/PONG protocol to check that there is a working connection to the NATS service. Periodically the client will send PING messages to the server, which responds with a PONG. This period is configured by specifying a ping interval on the client connection settings.
The connection will be closed as stale when the client reaches a number of pings which recieved no pong in response, which is configured by specifying the maximum pings outstanding on the client connection settings.
The ping interval and the maximum pings outstanding work together to specify how quickly the client connection will be notified of a problem. This will also help when there is a remote network partition where the operating system does not detect a socket error. Upon connection close, the client will attempt to reconnect. When it knows about other servers, these will be tried next.
In the presence of traffic, such as messages or client side pings, the server will not initiate the PING/PONG interaction.
On connections with significant traffic, the client will often figure out there is a problem between PINGS, and as a result the default ping interval is typically on the order of minutes. To close an unresponsive connection after 100s, set the ping interval to 20s and the maximum pings outstanding to 5:
// Set Ping Interval to 20 seconds and Max Pings Outstanding to 5nc, err := nats.Connect("demo.nats.io", nats.Name("API Ping Example"), nats.PingInterval(20*time.Second), nats.MaxPingsOutstanding(5))if err !=nil { log.Fatal(err)}defer nc.Close()// Do something with the connection
Options options =new Options.Builder().server("nats://demo.nats.io").pingInterval(Duration.ofSeconds(20)) // Set Ping Interval.maxPingsOut(5) // Set max pings in flight.build();// Connection is AutoCloseabletry (Connection nc =Nats.connect(options)) {// Do something with the connection}
// Set Ping Interval to 20 seconds and Max Pings Outstanding to 5constnc=awaitconnect({ pingInterval:20*1000, maxPingOut:5, servers: ["demo.nats.io:4222"],});
nc =NATS()await nc.connect( servers=["nats://demo.nats.io:4222"],# Set Ping Interval to 20 seconds and Max Pings Outstanding to 5 ping_interval=20, max_outstanding_pings=5, )# Do something with the connection.
// dotnet add package NATS.NetusingNATS.Net;usingNATS.Client.Core;awaitusingvar client =newNatsClient(newNatsOpts{ Url ="nats://demo.nats.io:4222", // Set Ping Interval to 20 seconds and Max Pings Outstanding to 5 PingInterval =TimeSpan.FromSeconds(20), MaxPingOut =5,});
require'nats/client'# Set Ping Interval to 20 seconds and Max Pings Outstanding to 5NATS.start(ping_interval: 20, max_outstanding_pings: 5) do|nc| nc.on_reconnect doputs"Got reconnected to #{nc.connected_server}"end nc.on_disconnect do|reason|puts"Got disconnected! #{reason}"end# Do something with the connectionend
natsConnection *conn =NULL;natsOptions *opts =NULL;natsStatus s = NATS_OK;s =natsOptions_Create(&opts);if (s == NATS_OK)// Set Ping interval to 20 seconds (20,000 milliseconds) s =natsOptions_SetPingInterval(opts,20000);if (s == NATS_OK)// Set the limit to 5 s =natsOptions_SetMaxPingsOut(opts,5);if (s == NATS_OK) s =natsConnection_Connect(&conn, opts);(...)// Destroy objects that were creatednatsConnection_Destroy(conn);natsOptions_Destroy(opts);