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
RaftActor doesn't track the progress of the event-sourcing feature. If CommitLogStore is not available for a long period (due to like journal failures), the Event Sourcing feature will halt, and it won't be recovered automatically. This halt seldom happens since CommitLogStore retries to save the committed event. Users can recover this halt by restarting each node (rolling update is possible) unless compaction deletes such events.
If compaction deletes committed entries (but they are not persisted to CommitLogStore), it is difficult to recover since RaftActor doesn't know which committed entry to persist to CommitLogStore.
RaftActor
doesn't track the progress of the event-sourcing feature. IfCommitLogStore
is not available for a long period (due to like journal failures), the Event Sourcing feature will halt, and it won't be recovered automatically. This halt seldom happens sinceCommitLogStore
retries to save the committed event. Users can recover this halt by restarting each node (rolling update is possible) unless compaction deletes such events.If compaction deletes committed entries (but they are not persisted to
CommitLogStore
), it is difficult to recover sinceRaftActor
doesn't know which committed entry to persist toCommitLogStore
.Related code
RaftActor
CommitLogStore
CommitLogStoreActor
The text was updated successfully, but these errors were encountered: