pub struct Journal<E: Context, V: Codec> { /* private fields */ }Expand description
A contiguous journal with variable-size entries.
This journal manages blob assignment automatically, allowing callers to append items sequentially without manually tracking blob indexes.
§Repair
Like sqlite and rocksdb, the first invalid data read will be considered the new end of the journal (and the underlying blob will be truncated to the last valid item). Repair is performed during init. Incomplete trailing frames are repaired as torn writes; complete frames whose payloads fail to decode are treated as corruption.
§Invariants
§1. Data Blobs are the Source of Truth
The data blobs are always the source of truth. The offsets journal is an index that may temporarily diverge during crashes. Divergences are automatically aligned during init():
- If offsets are behind data after the recovery watermark: rebuild missing offsets by replaying data from the recovery anchor.
- If offsets are ahead of the retained data prefix but the data still reaches the recovery watermark: rewind offsets to match the data-backed size. Retained data ending before the watermark is corruption because acknowledged data is missing.
- If offsets.bounds().start < the oldest data blob’s start: prune offsets to match (this can happen if we crash after pruning the data blobs but before pruning the offsets journal).
Offsets may start after the data’s blob-aligned start when both are in the same blob, as in a
mid-blob init_at_size. Offsets starting in a later blob imply corruption because we
always prune the data blobs before the offsets journal.
§2. Offsets Recovery Watermark
The offsets journal’s recovery watermark records a durable lower bound on the journal size and a preferred point for replaying data to rebuild offset entries after a crash. Fixed-journal recovery rejects watermarks beyond the recovered offsets size as corruption. A watermark below the recovered offsets start is stale after a prune, so init falls back to the offsets start. If retained data exists but ends before the watermark, init returns corruption because acknowledged data is missing. If no retained data exists, init reconciles both sides to an empty journal. Replay after a valid anchor stops at the first short data blob and truncates newer blobs so the recovered journal remains a contiguous prefix.
Implementations§
Source§impl<E: Context, V: CodecShared> Journal<E, V>
impl<E: Context, V: CodecShared> Journal<E, V>
Sourcepub async fn init(context: E, cfg: Config<V::Cfg>) -> Result<Self, Error>
pub async fn init(context: E, cfg: Config<V::Cfg>) -> Result<Self, Error>
Initialize a contiguous variable journal.
§Crash Recovery
The data blobs are the source of truth. If the offsets journal is inconsistent it will be updated to match the data blobs.
Sourcepub async fn init_at_size(
context: E,
cfg: Config<V::Cfg>,
size: u64,
) -> Result<Self, Error>
pub async fn init_at_size( context: E, cfg: Config<V::Cfg>, size: u64, ) -> Result<Self, Error>
Initialize an empty Journal at the given logical size.
This discards any existing data and offsets. The offsets reset intent is staged before the data partition is cleared so recovery can complete the requested reset if a crash interrupts the operation.
Returns a journal with journal.bounds() == Range{start: size, end: size}
and next append at position size.
Sourcepub async fn rewind(&mut self, size: u64) -> Result<(), Error>
pub async fn rewind(&mut self, size: u64) -> Result<(), Error>
Rewind the journal to the given size, discarding items from the end.
After rewinding to size N, the journal will contain exactly N items, and the next append will receive position N.
§Errors
Returns Error::InvalidRewind if size is larger than current size.
Returns Error::ItemPruned if size is smaller than the pruning boundary.
§Warning
- This operation is not guaranteed to survive restarts until
commitorsyncis called. - Readers returned by
snapshotmay observe unspecified contents if this rewind truncates into their range.
Sourcepub async fn append(&mut self, item: &V) -> Result<u64, Error>
pub async fn append(&mut self, item: &V) -> Result<u64, Error>
Append a new item to the journal, returning its position.
The position returned is a stable, consecutively increasing value starting from 0. This position remains constant after pruning.
§Errors
Returns an error if the underlying storage operation fails or if the item cannot be encoded.
Sourcepub async fn append_many<'a>(
&'a mut self,
items: Many<'a, V>,
) -> Result<u64, Error>
pub async fn append_many<'a>( &'a mut self, items: Many<'a, V>, ) -> Result<u64, Error>
Append items to the journal, returning the position of the last item appended.
Returns Error::EmptyAppend if items is empty.
Sourcepub fn prepare_append(
&self,
items: Many<'_, V>,
) -> Result<PreparedAppend<V>, Error>
pub fn prepare_append( &self, items: Many<'_, V>, ) -> Result<PreparedAppend<V>, Error>
Encode items into a buffer that can be appended later with Self::append_prepared.
This lets callers serialize borrowed items synchronously, release those borrows, and perform the append without holding unrelated locks across journal I/O.
Sourcepub async fn append_prepared(
&mut self,
prepared: PreparedAppend<V>,
) -> Result<u64, Error>
pub async fn append_prepared( &mut self, prepared: PreparedAppend<V>, ) -> Result<u64, Error>
Append items encoded by Self::prepare_append, returning the position of the last item
appended.
Returns Error::EmptyAppend if prepared contains no items.
Returns Error::InvalidConfiguration if prepared was encoded with different compression
settings than this journal uses.
Sourcepub async fn snapshot(&mut self) -> Result<Reader<'static, E, V>, Error>
pub async fn snapshot(&mut self) -> Result<Reader<'static, E, V>, Error>
Capture an owned snapshot (Reader) over the current journal. Bounds are frozen at
creation, and the snapshot stays readable across concurrent appends and prunes.
If the journal later rewinds into the returned reader’s range, subsequent reads from that range may observe unspecified contents.
Sourcepub const fn size(&self) -> u64
pub const fn size(&self) -> u64
Return the total number of items in the journal, irrespective of pruning. The next value appended to the journal will be at this position.
Sourcepub async fn prune(&mut self, min_position: u64) -> Result<bool, Error>
pub async fn prune(&mut self, min_position: u64) -> Result<bool, Error>
Prune items at positions strictly less than min_position.
Returns true if any data was pruned, false otherwise.
§Errors
Returns an error if the underlying storage operation fails.
Sourcepub async fn commit(&mut self) -> Result<(), Error>
pub async fn commit(&mut self) -> Result<(), Error>
Persist dirty data blobs so committed data survives a crash.
Does not advance the recovery watermark, so reopen may need to replay entries beyond
the previous sync().
Sourcepub async fn sync(&mut self) -> Result<(), Error>
pub async fn sync(&mut self) -> Result<(), Error>
Persist dirty data blobs and all metadata for both the data and offsets journals.
Sourcepub async fn destroy(self) -> Result<(), Error>
pub async fn destroy(self) -> Result<(), Error>
Remove any underlying blobs created by the journal.
This destroys both the data blobs and the offsets journal.
§Crash Safety
This operation is intended for final teardown and is not crash-safe. If interrupted, reopening the same partitions may observe partially removed state. Use Self::init_at_size for a recoverable reset.
Trait Implementations§
Source§impl<E: Context, V: CodecShared> Contiguous for Journal<E, V>
impl<E: Context, V: CodecShared> Contiguous for Journal<E, V>
Source§fn bounds(&self) -> Range<u64>
fn bounds(&self) -> Range<u64>
Source§async fn read(&self, position: u64) -> Result<V, Error>
async fn read(&self, position: u64) -> Result<V, Error>
Source§async fn read_many(&self, positions: &[u64]) -> Result<Vec<V>, Error>
async fn read_many(&self, positions: &[u64]) -> Result<Vec<V>, Error>
Source§fn try_read_sync(&self, position: u64) -> Option<V>
fn try_read_sync(&self, position: u64) -> Option<V>
None
otherwise. Decode failures surface as None and the async read path reports the error.Source§fn try_read_many_sync(&self, positions: &[u64]) -> Vec<Option<V>>
fn try_read_many_sync(&self, positions: &[u64]) -> Vec<Option<V>>
bounds() decline to None. The
async read paths are the sole error authority for declined positions.Source§impl<E: Context, V: CodecShared> Inner<E> for Journal<E, V>
Available on neither commonware_stability_BETA nor commonware_stability_DELTA nor commonware_stability_EPSILON nor commonware_stability_GAMMA nor commonware_stability_RESERVED.
impl<E: Context, V: CodecShared> Inner<E> for Journal<E, V>
commonware_stability_BETA nor commonware_stability_DELTA nor commonware_stability_EPSILON nor commonware_stability_GAMMA nor commonware_stability_RESERVED.Source§impl<E: Context, V: CodecShared> Mutable for Journal<E, V>
impl<E: Context, V: CodecShared> Mutable for Journal<E, V>
Source§async fn append(&mut self, item: &Self::Item) -> Result<u64, Error>
async fn append(&mut self, item: &Self::Item) -> Result<u64, Error>
Source§async fn append_many<'a>(
&'a mut self,
items: Many<'a, Self::Item>,
) -> Result<u64, Error>
async fn append_many<'a>( &'a mut self, items: Many<'a, Self::Item>, ) -> Result<u64, Error>
Source§async fn prune(&mut self, min_position: u64) -> Result<bool, Error>
async fn prune(&mut self, min_position: u64) -> Result<bool, Error>
min_position. Read moreSource§async fn rewind(&mut self, size: u64) -> Result<(), Error>
async fn rewind(&mut self, size: u64) -> Result<(), Error>
Source§async fn commit(&mut self) -> Result<(), Error>
async fn commit(&mut self) -> Result<(), Error>
Source§async fn sync(&mut self) -> Result<(), Error>
async fn sync(&mut self) -> Result<(), Error>
Source§async fn destroy(self) -> Result<(), Error>
async fn destroy(self) -> Result<(), Error>
Auto Trait Implementations§
impl<E, V> !Freeze for Journal<E, V>
impl<E, V> !RefUnwindSafe for Journal<E, V>
impl<E, V> !UnwindSafe for Journal<E, V>
impl<E, V> Send for Journal<E, V>
impl<E, V> Sync for Journal<E, V>
impl<E, V> Unpin for Journal<E, V>
impl<E, V> UnsafeUnpin for Journal<E, V>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> FutureExt for T
impl<T> FutureExt for T
Source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
Source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
impl<A, B, T> HttpServerConnExec<A, B> for Twhere
B: Body,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more