You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When Nomad restore state it may replay individual Raft logs into memdb or restore a full snapshot. These code paths are different, with the first one being usually handled by a method StateStore.Upsert*() and the second with StateRestore.*Restore().
To make sure state is consistent we should ensure data canonicalized on both paths (and that doing so doesn't break anything).
The text was updated successfully, but these errors were encountered:
When Nomad restore state it may replay individual Raft logs into memdb or restore a full snapshot. These code paths are different, with the first one being usually handled by a method
StateStore.Upsert*()
and the second withStateRestore.*Restore()
.To make sure state is consistent we should ensure data canonicalized on both paths (and that doing so doesn't break anything).
The text was updated successfully, but these errors were encountered: