pub struct AdvisoryThresholds {
pub wal_flush_threshold: u64,
pub orphan_gc_threshold: u64,
pub fragmentation_compact_threshold: f64,
pub sstable_merge_threshold: u64,
pub cold_tier_evict_ratio: f64,
}Expand description
Configurable thresholds that drive the advisory logic.
Fields§
§wal_flush_threshold: u64Flush the WAL when pending operations exceed this value (default: 1 000).
orphan_gc_threshold: u64Run orphan GC when orphan block count exceeds this value (default: 100).
fragmentation_compact_threshold: f64Compact when fragmentation ratio exceeds this value (default: 0.3).
sstable_merge_threshold: u64Merge SSTables when the file count exceeds this value (default: 10).
cold_tier_evict_ratio: f64Evict cold data when the usage ratio exceeds this value (default: 0.8).
Trait Implementations§
Source§impl Clone for AdvisoryThresholds
impl Clone for AdvisoryThresholds
Source§fn clone(&self) -> AdvisoryThresholds
fn clone(&self) -> AdvisoryThresholds
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for AdvisoryThresholds
impl Debug for AdvisoryThresholds
Source§impl Default for AdvisoryThresholds
impl Default for AdvisoryThresholds
Source§impl<'de> Deserialize<'de> for AdvisoryThresholds
impl<'de> Deserialize<'de> for AdvisoryThresholds
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for AdvisoryThresholds
impl PartialEq for AdvisoryThresholds
Source§fn eq(&self, other: &AdvisoryThresholds) -> bool
fn eq(&self, other: &AdvisoryThresholds) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for AdvisoryThresholds
impl Serialize for AdvisoryThresholds
impl StructuralPartialEq for AdvisoryThresholds
Auto Trait Implementations§
impl Freeze for AdvisoryThresholds
impl RefUnwindSafe for AdvisoryThresholds
impl Send for AdvisoryThresholds
impl Sync for AdvisoryThresholds
impl Unpin for AdvisoryThresholds
impl UnsafeUnpin for AdvisoryThresholds
impl UnwindSafe for AdvisoryThresholds
Blanket Implementations§
impl<T> Allocation for T
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
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 more