pub struct PointInTimeRestore {
pub target_timestamp: u64,
pub wal_dir: PathBuf,
}Expand description
Driver for point-in-time recovery.
Usage:
ⓘ
let pit = PointInTimeRestore::new(target_ts, wal_dir);
let base = pit.find_base_checkpoint()?;
let entries = pit.replay_wal_to_timestamp(base.as_ref())?;
// Apply entries to the index...Fields§
§target_timestamp: u64Target Unix-epoch timestamp in seconds.
wal_dir: PathBufDirectory that contains the WAL files.
Implementations§
Source§impl PointInTimeRestore
impl PointInTimeRestore
Sourcepub fn new(target_timestamp_secs: u64, wal_dir: PathBuf) -> Self
pub fn new(target_timestamp_secs: u64, wal_dir: PathBuf) -> Self
Create a new driver.
target_timestamp_secs is seconds since Unix epoch; callers that have a
std::time::SystemTime should convert with
system_time.duration_since(UNIX_EPOCH).unwrap_or_default().as_secs().
Sourcepub fn find_base_checkpoint(&self) -> Result<Option<CheckpointRef>>
pub fn find_base_checkpoint(&self) -> Result<Option<CheckpointRef>>
Find the latest CheckpointRef whose timestamp is ≤ target_timestamp.
Returns None when no checkpoint precedes the target (the caller should
treat that as “start from an empty base”).
Sourcepub fn replay_wal_to_timestamp(
&self,
base: Option<&CheckpointRef>,
) -> Result<Vec<WalEntry>>
pub fn replay_wal_to_timestamp( &self, base: Option<&CheckpointRef>, ) -> Result<Vec<WalEntry>>
Replay WAL entries that fall between base.sequence_number (exclusive)
and target_timestamp (inclusive).
When base is None (no prior checkpoint) all entries up to
target_timestamp are returned.
Auto Trait Implementations§
impl Freeze for PointInTimeRestore
impl RefUnwindSafe for PointInTimeRestore
impl Send for PointInTimeRestore
impl Sync for PointInTimeRestore
impl Unpin for PointInTimeRestore
impl UnsafeUnpin for PointInTimeRestore
impl UnwindSafe for PointInTimeRestore
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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
Mutably borrows from an owned value. Read more
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
impl<T> ErasedDestructor for Twhere
T: 'static,
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>
Converts
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>
Converts
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 moreSource§impl<T> Pointable for T
impl<T> Pointable for T
Source§impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> PolicyExt for Twhere
T: ?Sized,
impl<T> Read<Exclusive, BecauseExclusive> for Twhere
T: ?Sized,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
Checks if
self is actually part of its subset T (and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
Use with care! Same as
self.to_subset but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.