mirror of
https://github.com/etcd-io/etcd.git
synced 2024-09-27 06:25:44 +00:00
raft: clarify conditions in unstable.stableTo
No change in behavior, but clarify interaction with unstable snapshot. Signed-off-by: Nathan VanBenschoten <nvanbenschoten@gmail.com>
This commit is contained in:
parent
0bff3ade4d
commit
c18d79df37
@ -75,16 +75,20 @@ func (u *unstable) maybeTerm(i uint64) (uint64, bool) {
|
|||||||
func (u *unstable) stableTo(i, t uint64) {
|
func (u *unstable) stableTo(i, t uint64) {
|
||||||
gt, ok := u.maybeTerm(i)
|
gt, ok := u.maybeTerm(i)
|
||||||
if !ok {
|
if !ok {
|
||||||
|
// Unstable entry missing. Ignore.
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
// if i < offset, term is matched with the snapshot
|
if i < u.offset {
|
||||||
// only update the unstable entries if term is matched with
|
// Index matched unstable snapshot, not unstable entry. Ignore.
|
||||||
// an unstable entry.
|
return
|
||||||
if gt == t && i >= u.offset {
|
|
||||||
u.entries = u.entries[i+1-u.offset:]
|
|
||||||
u.offset = i + 1
|
|
||||||
u.shrinkEntriesArray()
|
|
||||||
}
|
}
|
||||||
|
if gt != t {
|
||||||
|
// Term mismatch between unstable entry and specified entry. Ignore.
|
||||||
|
return
|
||||||
|
}
|
||||||
|
u.entries = u.entries[i+1-u.offset:]
|
||||||
|
u.offset = i + 1
|
||||||
|
u.shrinkEntriesArray()
|
||||||
}
|
}
|
||||||
|
|
||||||
// shrinkEntriesArray discards the underlying array used by the entries slice
|
// shrinkEntriesArray discards the underlying array used by the entries slice
|
||||||
|
Loading…
x
Reference in New Issue
Block a user