remove description of Applying in RegionLocalState (#263)

This commit is contained in:
Yxa0x0 2021-06-21 06:13:38 -05:00 committed by GitHub
parent 2f43d2901c
commit 7c8bc00a00
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -104,7 +104,7 @@ Peer storage is what you interact with through the `Storage` interface in part A
- RaftLocalState: Used to store HardState of the current Raft and the last Log Index.
- RaftApplyState: Used to store the last Log index that Raft applies and some truncated Log information.
- RegionLocalState: Used to store Region information and the corresponding Peer state on this Store. Normal indicates that this Peer is normal, Applying means this Peer hasnt finished the apply snapshot operation and Tombstone shows that this Peer has been removed from Region and cannot join in Raft Group.
- RegionLocalState: Used to store Region information and the corresponding Peer state on this Store. Normal indicates that this Peer is normal and Tombstone shows that this Peer has been removed from Region and cannot join in Raft Group.
These states are stored in two badger instances: raftdb and kvdb: