Struct mz_rocksdb::config::ProtoRocksDbTuningParameters
source · pub struct ProtoRocksDbTuningParameters {Show 16 fields
pub compaction_style: Option<ProtoCompactionStyle>,
pub optimize_compaction_memtable_budget: u64,
pub level_compaction_dynamic_level_bytes: bool,
pub universal_compaction_target_ratio: i32,
pub parallelism: Option<i32>,
pub compression_type: Option<ProtoCompressionType>,
pub bottommost_compression_type: Option<ProtoCompressionType>,
pub batch_size: u64,
pub retry_max_duration: Option<ProtoDuration>,
pub stats_log_interval_seconds: u32,
pub stats_persist_interval_seconds: u32,
pub point_lookup_block_cache_size_mb: Option<u32>,
pub shrink_buffers_by_ratio: u64,
pub write_buffer_manager_memory_bytes: Option<u64>,
pub write_buffer_manager_memory_fraction: Option<f64>,
pub write_buffer_manager_allow_stall: bool,
}
Expand description
The lowercase b
is because prost lowercases it anyways
if its capitalized :(
Fields§
§compaction_style: Option<ProtoCompactionStyle>
§optimize_compaction_memtable_budget: u64
§level_compaction_dynamic_level_bytes: bool
§universal_compaction_target_ratio: i32
§parallelism: Option<i32>
§compression_type: Option<ProtoCompressionType>
§bottommost_compression_type: Option<ProtoCompressionType>
§batch_size: u64
§retry_max_duration: Option<ProtoDuration>
§stats_log_interval_seconds: u32
§stats_persist_interval_seconds: u32
§point_lookup_block_cache_size_mb: Option<u32>
§shrink_buffers_by_ratio: u64
§write_buffer_manager_memory_bytes: Option<u64>
§write_buffer_manager_memory_fraction: Option<f64>
§write_buffer_manager_allow_stall: bool
Implementations§
source§impl ProtoRocksDbTuningParameters
impl ProtoRocksDbTuningParameters
sourcepub fn parallelism(&self) -> i32
pub fn parallelism(&self) -> i32
Returns the value of parallelism
, or the default value if parallelism
is unset.
sourcepub fn point_lookup_block_cache_size_mb(&self) -> u32
pub fn point_lookup_block_cache_size_mb(&self) -> u32
Returns the value of point_lookup_block_cache_size_mb
, or the default value if point_lookup_block_cache_size_mb
is unset.
sourcepub fn write_buffer_manager_memory_bytes(&self) -> u64
pub fn write_buffer_manager_memory_bytes(&self) -> u64
Returns the value of write_buffer_manager_memory_bytes
, or the default value if write_buffer_manager_memory_bytes
is unset.
sourcepub fn write_buffer_manager_memory_fraction(&self) -> f64
pub fn write_buffer_manager_memory_fraction(&self) -> f64
Returns the value of write_buffer_manager_memory_fraction
, or the default value if write_buffer_manager_memory_fraction
is unset.
Trait Implementations§
source§impl Clone for ProtoRocksDbTuningParameters
impl Clone for ProtoRocksDbTuningParameters
source§fn clone(&self) -> ProtoRocksDbTuningParameters
fn clone(&self) -> ProtoRocksDbTuningParameters
Returns a copy of the value. Read more
1.0.0 · 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 ProtoRocksDbTuningParameters
impl Debug for ProtoRocksDbTuningParameters
source§impl Default for ProtoRocksDbTuningParameters
impl Default for ProtoRocksDbTuningParameters
source§fn default() -> ProtoRocksDbTuningParameters
fn default() -> ProtoRocksDbTuningParameters
Returns the “default value” for a type. Read more
source§impl Message for ProtoRocksDbTuningParameters
impl Message for ProtoRocksDbTuningParameters
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
Returns the encoded length of the message without a length delimiter.
source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message to a buffer. Read more
source§fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message to a newly allocated buffer.
source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
Encodes the message with a length-delimiter to a buffer. Read more
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8> ⓘwhere
Self: Sized,
Encodes the message with a length-delimiter to a newly allocated buffer.
source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes an instance of the message from a buffer. Read more
source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
Decodes a length-delimited instance of the message from the buffer.
source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes an instance of the message from a buffer, and merges it into
self
. Read moresource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
Decodes a length-delimited instance of the message from buffer, and
merges it into
self
.source§impl PartialEq for ProtoRocksDbTuningParameters
impl PartialEq for ProtoRocksDbTuningParameters
source§fn eq(&self, other: &ProtoRocksDbTuningParameters) -> bool
fn eq(&self, other: &ProtoRocksDbTuningParameters) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.source§impl RustType<ProtoRocksDbTuningParameters> for RocksDBTuningParameters
impl RustType<ProtoRocksDbTuningParameters> for RocksDBTuningParameters
source§fn into_proto(&self) -> ProtoRocksDbTuningParameters
fn into_proto(&self) -> ProtoRocksDbTuningParameters
Convert a
Self
into a Proto
value.source§fn from_proto(
proto: ProtoRocksDbTuningParameters,
) -> Result<RocksDBTuningParameters, TryFromProtoError>
fn from_proto( proto: ProtoRocksDbTuningParameters, ) -> Result<RocksDBTuningParameters, TryFromProtoError>
source§fn into_proto_owned(self) -> Proto
fn into_proto_owned(self) -> Proto
A zero clone version of
Self::into_proto
that types can
optionally implement, otherwise, the default implementation
delegates to Self::into_proto
.impl Copy for ProtoRocksDbTuningParameters
impl StructuralPartialEq for ProtoRocksDbTuningParameters
Auto Trait Implementations§
impl Freeze for ProtoRocksDbTuningParameters
impl RefUnwindSafe for ProtoRocksDbTuningParameters
impl Send for ProtoRocksDbTuningParameters
impl Sync for ProtoRocksDbTuningParameters
impl Unpin for ProtoRocksDbTuningParameters
impl UnwindSafe for ProtoRocksDbTuningParameters
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> CloneToUninit for Twhere
T: Copy,
impl<T> CloneToUninit for Twhere
T: Copy,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<T> FutureExt for T
impl<T> FutureExt for T
source§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
source§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
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> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
Wrap the input message
T
in a tonic::Request
source§impl<T> Pointable for T
impl<T> Pointable for T
source§impl<P, R> ProtoType<R> for Pwhere
R: RustType<P>,
impl<P, R> ProtoType<R> for Pwhere
R: RustType<P>,
source§fn into_rust(self) -> Result<R, TryFromProtoError>
fn into_rust(self) -> Result<R, TryFromProtoError>
See
RustType::from_proto
.source§fn from_rust(rust: &R) -> P
fn from_rust(rust: &R) -> P
See
RustType::into_proto
.