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
BaseByteArrayJournalDao does not check to see if any of the streams it uses failed/completed/terminated, causing the journal to fail with no way of recovering, the only way to recover is to restart the node.
Chain of event:
The text was updated successfully, but these errors were encountered:
An exception/failure/timeout happened inside the SelectAsync() stage while a write was happening, stopping the stream (first figure).
The exception did not get propagated, causing an NRE to happen when it is being propagated up the stream (second figure).
The journal was not aware that the stream has stopped and failed to restart either itself or the stream, poisoning the persistence system (third figure).
BaseByteArrayJournalDao
does not check to see if any of the streams it uses failed/completed/terminated, causing the journal to fail with no way of recovering, the only way to recover is to restart the node.Chain of event:
The text was updated successfully, but these errors were encountered: