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
Connect to the TLS node in dev-env with grpc.Insecure
Fail with timeout.
Latency of the client operations is increased to 2 seconds (dial timeout) because all workers are busy with connecting to the failed node and channels eventually become full.
Another solution would be to have a dedicated goroutine for each client, but this requires some refactoring and is somewhat related to #1447 .
The text was updated successfully, but these errors were encountered:
…ter failure
In case node is down or failing for some reason, we can expect `Dial` to
fail. In case we actively try to replicate and `Dial` always takes 2
seconds, replication-related channels quickly become full. That affects
latency of all other write operations.
Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
If a connection to the node fails, we should wait some time before trying to connect again, at least in the replicator.
Originally caught at #1445:
grpc.Insecure
Another solution would be to have a dedicated goroutine for each client, but this requires some refactoring and is somewhat related to #1447 .
The text was updated successfully, but these errors were encountered: