[raft/memstore] Add Checkpoint/Restore - #1539
Merged
Merged
Conversation
This was referenced Jun 18, 2026
the-glu
force-pushed
the
memstore_rid_clone
branch
from
June 18, 2026 08:30
97c5178 to
73de5df
Compare
This was referenced Jun 18, 2026
the-glu
force-pushed
the
memstore_rid_clone
branch
from
June 19, 2026 13:28
73de5df to
9f869ba
Compare
This was referenced Jun 19, 2026
the-glu
force-pushed
the
memstore_rid_clone
branch
2 times, most recently
from
June 29, 2026 07:04
03b7690 to
6a77da6
Compare
the-glu
force-pushed
the
memstore_rid_clone
branch
4 times, most recently
from
July 1, 2026 09:23
d6be655 to
8a60b20
Compare
the-glu
force-pushed
the
memstore_rid_clone
branch
from
July 13, 2026 08:58
8a60b20 to
9a4f64d
Compare
mickmis
requested changes
Jul 29, 2026
the-glu
force-pushed
the
memstore_rid_clone
branch
5 times, most recently
from
July 30, 2026 14:57
ba3f611 to
9ef98af
Compare
the-glu
force-pushed
the
memstore_rid_clone
branch
from
July 30, 2026 15:49
9ef98af to
76897c3
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR is part of a new chain, implementing memstore.
#1525 (Generic raftstore) -> #1527 (Base memstore) -> #1529 (Aux memstore) -> #1530 (Snapshots) -> #1534 (Rid memstore) -> #1535 (Correct use of now) -> #1539 (Checkpoint) -> #1542 (Scd memstore) -> #1528 (First PR with raft using memstore)
It adds a Checkpoint/Restore to every memstore, to be used by raft in
Transact()operations, allowing it to quickly restore the memstore back to the start of a transaction should an error occur, without the need for complex revert operations.