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
A new server who is not added into cluster yet, will constantly send RequestVote RPC with new term number to others, and this will cause new raft election.
But the new server couldn't receive any AppendEntry RPC, so it will timeout and redo the same process, then cause a new election process again and again.
Certainly, this will result in very poor availability.
The text was updated successfully, but these errors were encountered:
@CatKang you are right, since this is a early version of membership change.
I have consider these problems before, another trouble problem also cause poor availability is that the new server need a long time of recovery period, during this time, the cluster is also in poor availability situation.
I will fix these issues in the future or you can fix is yourself.
A new server who is not added into cluster yet, will constantly send RequestVote RPC with new term number to others, and this will cause new raft election.
But the new server couldn't receive any AppendEntry RPC, so it will timeout and redo the same process, then cause a new election process again and again.
Certainly, this will result in very poor availability.
The text was updated successfully, but these errors were encountered: