[][src]Struct rocksdb::backup::BackupEngine

pub struct BackupEngine { /* fields omitted */ }

Methods

impl BackupEngine[src]

pub fn open<P: AsRef<Path>>(
    opts: &BackupEngineOptions,
    path: P
) -> Result<BackupEngine, Error>
[src]

Open a backup engine with the specified options.

pub fn create_new_backup(&mut self, db: &DB) -> Result<(), Error>[src]

pub fn purge_old_backups(
    &mut self,
    num_backups_to_keep: usize
) -> Result<(), Error>
[src]

pub fn restore_from_latest_backup<D: AsRef<Path>, W: AsRef<Path>>(
    &mut self,
    db_dir: D,
    wal_dir: W,
    opts: &RestoreOptions
) -> Result<(), Error>
[src]

Restore from the latest backup

Arguments

  • db_dir - A path to the database directory
  • wal_dir - A path to the wal directory
  • opts - Restore options

Example

This example is not tested
use rocksdb::backup::{BackupEngine, BackupEngineOptions};
let backup_opts = BackupEngineOptions::default();
let mut backup_engine = BackupEngine::open(&backup_opts, &backup_path).unwrap();
let mut restore_option = rocksdb::backup::RestoreOptions::default();
restore_option.set_keep_log_files(true); /// true to keep log files
if let Err(e) = backup_engine.restore_from_latest_backup(&db_path, &wal_dir, &restore_option) {
    error!("Failed to restore from the backup. Error:{:?}", e);
    return Err(e.to_string());
 }

Trait Implementations

impl Drop for BackupEngine[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.