Struct kvdb_rocksdb::DatabaseConfig
source · [−]pub struct DatabaseConfig {
pub max_open_files: i32,
pub memory_budget: HashMap<u32, usize>,
pub compaction: CompactionProfile,
pub columns: u32,
pub keep_log_file_num: i32,
pub enable_statistics: bool,
pub secondary: Option<String>,
pub max_total_wal_size: Option<u64>,
}
Expand description
Database configuration
Fields
max_open_files: i32
Max number of open files.
memory_budget: HashMap<u32, usize>
Memory budget (in MiB) used for setting block cache size and
write buffer size for each column including the default one.
If the memory budget of a column is not specified,
DB_DEFAULT_COLUMN_MEMORY_BUDGET_MB
is used for that column.
compaction: CompactionProfile
Compaction profile.
columns: u32
keep_log_file_num: i32
Specify the maximum number of info/debug log files to be kept.
enable_statistics: bool
Enable native RocksDB statistics. Disabled by default.
It can have a negative performance impact up to 10% according to https://github.com/facebook/rocksdb/wiki/Statistics.
secondary: Option<String>
Open the database as a secondary instance.
Specify a path for the secondary instance of the database.
Secondary instances are read-only and kept updated by tailing the rocksdb MANIFEST.
It is up to the user to call catch_up_with_primary()
manually to update the secondary db.
Disabled by default.
max_open_files
is overridden to always equal -1
.
May have a negative performance impact on the secondary instance
if the secondary instance reads and applies state changes before the primary instance compacts them.
More info: https://github.com/facebook/rocksdb/wiki/Secondary-instance
max_total_wal_size: Option<u64>
Limit the size (in bytes) of write ahead logs More info: https://github.com/facebook/rocksdb/wiki/Write-Ahead-Log
Implementations
sourceimpl DatabaseConfig
impl DatabaseConfig
sourcepub fn with_columns(columns: u32) -> Self
pub fn with_columns(columns: u32) -> Self
Create new DatabaseConfig
with default parameters and specified set of columns.
Note that cache sizes must be explicitly set.
Safety
The number of columns
must not be zero.
sourcepub fn memory_budget(&self) -> usize
pub fn memory_budget(&self) -> usize
Returns the total memory budget in bytes.
Trait Implementations
sourceimpl Clone for DatabaseConfig
impl Clone for DatabaseConfig
sourcefn clone(&self) -> DatabaseConfig
fn clone(&self) -> DatabaseConfig
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Default for DatabaseConfig
impl Default for DatabaseConfig
sourcefn default() -> DatabaseConfig
fn default() -> DatabaseConfig
Returns the “default value” for a type. Read more
Auto Trait Implementations
impl RefUnwindSafe for DatabaseConfig
impl Send for DatabaseConfig
impl Sync for DatabaseConfig
impl Unpin for DatabaseConfig
impl UnwindSafe for DatabaseConfig
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more