You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My application listens to a key in etcd, but after a period of time (about a week) without any data transmission, the TCP connection was dropped, and the etcd client did not automatically reconnect, causing my application to miss the key change events. After I restarted my application, the watch resumed working normally. How should I troubleshoot this issue?
Below is my client initialization configuration. clientV3.Config{ Endpoints: etcdEndpoints(), DialTimeout: 5 * time.Second, TLS: tlsConf, },
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
My application listens to a key in etcd, but after a period of time (about a week) without any data transmission, the TCP connection was dropped, and the etcd client did not automatically reconnect, causing my application to miss the key change events. After I restarted my application, the watch resumed working normally. How should I troubleshoot this issue?
Below is my client initialization configuration.
clientV3.Config{ Endpoints: etcdEndpoints(), DialTimeout: 5 * time.Second, TLS: tlsConf, },
Beta Was this translation helpful? Give feedback.
All reactions