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
{{ message }}
This repository has been archived by the owner on Jun 7, 2021. It is now read-only.
apply the circuit breaker pattern to handling of failed nodes to prevent thundering herd problems. Basically, if pinging (or writing to a node) fails, we set its last_failed and wait announce_frequency seconds to try pinging again. If it fails a second ping, we wait 2 * announce_frequency seconds before making the next attempt, then 3 * announce_frequency times, and so on.
The text was updated successfully, but these errors were encountered:
apply the circuit breaker pattern to handling of failed nodes to prevent thundering herd problems. Basically, if pinging (or writing to a node) fails, we set its last_failed and wait announce_frequency seconds to try pinging again. If it fails a second ping, we wait 2 * announce_frequency seconds before making the next attempt, then 3 * announce_frequency times, and so on.
The text was updated successfully, but these errors were encountered: