pub struct StorageConfig {
pub sts: TierConfig,
pub mts: TierConfig,
pub lts: TierConfig,
pub max_open_writers_total: Option<usize>,
}Expand description
3-tier storage configuration.
Fields§
§sts: TierConfig§mts: TierConfig§lts: TierConfig§max_open_writers_total: Option<usize>Process-wide cap on open BufWriter file handles, shared
across STS / MTS / LTS. When Some, every tier’s
PlainPbStoragePlugin draws from the SAME [FdBudget] —
total open writers across all 3 tiers stays at-or-below
this number, so the process cannot summed-overflow its
ulimit -n even when each tier is busy. When None, each
tier keeps its own per-tier cap (legacy behavior).
Trait Implementations§
Source§impl Clone for StorageConfig
impl Clone for StorageConfig
Source§fn clone(&self) -> StorageConfig
fn clone(&self) -> StorageConfig
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 StorageConfig
impl Debug for StorageConfig
Source§impl<'de> Deserialize<'de> for StorageConfig
impl<'de> Deserialize<'de> for StorageConfig
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
Auto Trait Implementations§
impl Freeze for StorageConfig
impl RefUnwindSafe for StorageConfig
impl Send for StorageConfig
impl Sync for StorageConfig
impl Unpin for StorageConfig
impl UnsafeUnpin for StorageConfig
impl UnwindSafe for StorageConfig
Blanket Implementations§
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