pub struct Config<V: Variant, P: PublicKey, Z: Coordinator<PublicKey = P>, B: Block> {Show 20 fields
pub public_key: P,
pub identity: V::Public,
pub coordinator: Z,
pub partition_prefix: String,
pub mailbox_size: usize,
pub backfill_quota: Quota,
pub view_retention_timeout: u64,
pub namespace: Vec<u8>,
pub prunable_items_per_section: NonZeroU64,
pub immutable_items_per_section: NonZeroU64,
pub freezer_table_initial_size: u32,
pub freezer_table_resize_frequency: u8,
pub freezer_table_resize_chunk_size: u32,
pub freezer_journal_target_size: u64,
pub freezer_journal_compression: Option<u8>,
pub freezer_journal_buffer_pool: PoolRef,
pub replay_buffer: NonZeroUsize,
pub write_buffer: NonZeroUsize,
pub codec_config: B::Cfg,
pub max_repair: u64,
}
Expand description
Marshal configuration.
Fields§
§public_key: P
The public key of the validator.
identity: V::Public
The identity of the network.
coordinator: Z
The coordinator for the resolvers.
partition_prefix: String
The prefix to use for all partitions.
mailbox_size: usize
Size of backfill request/response mailbox.
backfill_quota: Quota
Backfill rate limit.
view_retention_timeout: u64
Minimum number of views to retain temporary data after the application processes a block.
Useful for keeping around information that peers may desire to have.
namespace: Vec<u8>
Namespace for proofs.
prunable_items_per_section: NonZeroU64
Prunable archive partition prefix.
immutable_items_per_section: NonZeroU64
The number of items to store per section in immutable archives.
freezer_table_initial_size: u32
The initial size of the freezer table.
freezer_table_resize_frequency: u8
The frequency (in number of resizes) at which to check if the freezer table should be resized.
freezer_table_resize_chunk_size: u32
The number of items to add to the freezer table when resizing.
freezer_journal_target_size: u64
The target size of the freezer journal.
freezer_journal_compression: Option<u8>
The compression level to use for the freezer journal.
freezer_journal_buffer_pool: PoolRef
The buffer pool to use for the freezer journal.
replay_buffer: NonZeroUsize
The size of the replay buffer for storage archives.
write_buffer: NonZeroUsize
The size of the write buffer for storage archives.
codec_config: B::Cfg
Codec configuration for block type.
max_repair: u64
Maximum number of blocks to repair at once
Auto Trait Implementations§
impl<V, P, Z, B> Freeze for Config<V, P, Z, B>
impl<V, P, Z, B> !RefUnwindSafe for Config<V, P, Z, B>
impl<V, P, Z, B> Send for Config<V, P, Z, B>
impl<V, P, Z, B> Sync for Config<V, P, Z, B>
impl<V, P, Z, B> Unpin for Config<V, P, Z, B>
impl<V, P, Z, B> !UnwindSafe for Config<V, P, Z, B>
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
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> 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>
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>
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