Infinite dead loop caused by a network failure #531
-
Beta Was this translation helpful? Give feedback.
Answered by
BusyJay
Nov 21, 2023
Replies: 1 comment 3 replies
-
If a log is committed, then leader must have the exact same log. But in your case leader thinks the term of 1808 is 1, and follower thinks the term is 6, there is obvious a inconsistency. It can be caused by either incorrect implementation of storage trait (especially the |
Beta Was this translation helpful? Give feedback.
3 replies
Answer selected by
jopemachine
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If a log is committed, then leader must have the exact same log. But in your case leader thinks the term of 1808 is 1, and follower thinks the term is 6, there is obvious a inconsistency. It can be caused by either incorrect implementation of storage trait (especially the
term
method) or data loss.