How to handle data transfer during node fail-over using BBoltDB #5
Unanswered
aarthikrao
asked this question in
Q&A
Replies: 1 comment 1 reply
-
Can give you more context on this problem? |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Problem
When a node is temporarily unavailable due to a temporary network partition, it will not contain the latest commited data. It will have to catch up to the leader vnode. How do we achieve this without compromising on service availability.
Quick solution
Append-only log file. This is supported by the LSM tree. Need to check for B-tree based BBoltDB
Beta Was this translation helpful? Give feedback.
All reactions