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
In the method OnSendFail (see code in https://github.com/tikv/client-go/blob/master/internal/locate/region_cache.go#L842), client-go will try other peer when receive a rpc error from some store. But if user enables grpc-forward, client-go willl try forward this request to leader by other store. It means that if a TiKV node goes down, the client will keep trying to access the request on the dead node until the PD updates the region meta-information. But if the meta-informartion in PD does not update in time, the availability of TiKV cluster will decrease.
The text was updated successfully, but these errors were encountered:
In the method
OnSendFail
(see code in https://github.com/tikv/client-go/blob/master/internal/locate/region_cache.go#L842), client-go will try other peer when receive a rpc error from some store. But if user enablesgrpc-forward
, client-go willl try forward this request to leader by other store. It means that if a TiKV node goes down, the client will keep trying to access the request on the dead node until the PD updates the region meta-information. But if the meta-informartion in PD does not update in time, the availability of TiKV cluster will decrease.The text was updated successfully, but these errors were encountered: