Add rocksdb WAL flush api (#541)

master
Duarte Nunes 3 years ago committed by GitHub
parent ee816043b2
commit cd7fe07a13
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      src/db.rs
  2. 20
      src/db_options.rs

@ -589,6 +589,15 @@ impl<T: ThreadMode> DBWithThreadMode<T> {
&self.path.as_path()
}
/// Flushes the WAL buffer. If `sync` is set to `true`, also syncs
/// the data to disk.
pub fn flush_wal(&self, sync: bool) -> Result<(), Error> {
unsafe {
ffi_try!(ffi::rocksdb_flush_wal(self.inner, sync as u8));
}
Ok(())
}
/// Flushes database memtables to SST files on the disk.
pub fn flush_opt(&self, flushopts: &FlushOptions) -> Result<(), Error> {
unsafe {

@ -2650,6 +2650,26 @@ impl Options {
}
}
/// If enabled, WAL is not flushed automatically after each write. Instead it
/// relies on manual invocation of `DB::flush_wal()` to write the WAL buffer
/// to its file.
///
/// Default: false
///
/// # Examples
///
/// ```
/// use rocksdb::Options;
///
/// let mut options = Options::default();
/// options.set_manual_wal_flush(true);
/// ```
pub fn set_manual_wal_flush(&mut self, is_enabled: bool) {
unsafe {
ffi::rocksdb_options_set_manual_wal_flush(self.inner, is_enabled as c_uchar);
}
}
/// Guarantee that all column families are flushed together atomically.
/// This option applies to both manual flushes (`db.flush()`) and automatic
/// background flushes caused when memtables are filled.

Loading…
Cancel
Save