buoyant_kernel 0.21.103

Buoyant Data distribution of delta-kernel
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Two-phase log replay for parallel execution of checkpoint processing.

#[cfg(feature = "internal-api")]
pub mod parallel_phase;
#[cfg(not(feature = "internal-api"))]
pub(crate) mod parallel_phase;

#[cfg(feature = "internal-api")]
pub mod sequential_phase;
#[cfg(not(feature = "internal-api"))]
pub(crate) mod sequential_phase;

pub(crate) mod parallel_scan_metadata;