Skip to main content

PoolConfig

Struct PoolConfig 

Source
pub struct PoolConfig {
Show 20 fields pub name: String, pub dc: String, pub rack: String, pub data_store: DataStore, pub hash: HashType, pub distribution: Distribution, pub distribution_shadow: Option<Distribution>, pub read_consistency: ConsistencyLevel, pub write_consistency: ConsistencyLevel, pub timeout_ms: u64, pub server_retry_timeout_ms: u64, pub server_failure_limit: u32, pub auto_eject_hosts: bool, pub enable_gossip: bool, pub bucket_types: Vec<BucketType>, pub default_bucket_type: Option<String>, pub enable_hinted_handoff: bool, pub hint_ttl_seconds: u64, pub hint_store_max_bytes: u64, pub hint_drain_interval_ms: u64,
}
Expand description

Minimal projection of the YAML pool block consumed by the cluster runtime.

Mirrors the fields the reference engine copies from conf_pool into server_pool during server_pool_init.

Fields§

§name: String

Pool name.

§dc: String

Local datacenter name.

§rack: String

Local rack name.

§data_store: DataStore

Backing datastore protocol.

§hash: HashType

Hash function used for token ring lookups.

§distribution: Distribution

Distribution algorithm used to map a hashed key to a peer. Defaults to Distribution::Vnode.

§distribution_shadow: Option<Distribution>

Optional shadow distribution. When Some, the dispatcher computes both the live and shadow routes for every request and bumps a counter when they disagree. The actual route is the configured Self::distribution.

§read_consistency: ConsistencyLevel

Read consistency level.

§write_consistency: ConsistencyLevel

Write consistency level.

§timeout_ms: u64

Operation timeout in milliseconds.

§server_retry_timeout_ms: u64

Eject window (server_retry_timeout_ms).

§server_failure_limit: u32

Consecutive-failure threshold.

§auto_eject_hosts: bool

Honor auto_eject_hosts.

§enable_gossip: bool

Whether gossip is enabled (enable_gossip).

§bucket_types: Vec<BucketType>

Per-bucket routing-property bundles. Empty when the bucket_types: YAML stanza is unset.

§default_bucket_type: Option<String>

Name of the bucket type to apply when the request key has no slash. References an entry of bucket_types; None keeps the pool-level defaults.

§enable_hinted_handoff: bool

Hinted-handoff feature flag. When true, writes targeted at peers in crate::cluster::peer::PeerState::Down (or at peers whose outbound channel is closed / full) are stored as hints in the node-local crate::cluster::hints::HintStore and counted toward the request’s consistency threshold. The default false preserves the legacy behaviour where Down targets are silently skipped.

§hint_ttl_seconds: u64

Hint expiry, in seconds. Hints older than this are dropped during the periodic sweep so the in-memory store stays bounded.

§hint_store_max_bytes: u64

Upper bound on the in-memory hint store. Once the store holds this many bytes, further enqueues fail and the dispatcher falls back to its non-handoff error path.

§hint_drain_interval_ms: u64

Hint drainer cadence, in milliseconds. Setting this to zero is rejected by the configuration validator when enable_hinted_handoff is true.

Implementations§

Source§

impl PoolConfig

Source

pub fn lookup_bucket_type(&self, name: &[u8]) -> Option<&BucketType>

Look up a bucket type by name.

Returns the matching BucketType when one is configured. The dispatcher consults this on every request to swap in per-bucket consistency / fan-out settings.

Source

pub fn resolve_bucket_type(&self, bucket: Option<&[u8]>) -> Option<&BucketType>

Resolve the bucket type that applies to a request whose extracted bucket name is bucket. None falls back to default_bucket_type (also possibly None).

Source§

impl PoolConfig

Source

pub fn from_conf(name: &str, pool: &ConfPool) -> Self

Construct a PoolConfig from a ConfPool block. Fields missing from the YAML are filled with the same defaults the reference engine applies in conf_pool_each_transform (the caller is expected to have called crate::conf::Config::finalize before this point).

§Examples
use dynomite::cluster::pool::PoolConfig;
use dynomite::conf::Config;
let mut cfg = Config::parse_str(
    "p:\n  listen: 127.0.0.1:1\n  dyn_listen: 127.0.0.1:2\n  tokens: '1'\n  servers:\n  - 127.0.0.1:3:1\n  data_store: 0\n",
).unwrap();
cfg.finalize();
let pc = PoolConfig::from_conf("p", cfg.pool());
assert_eq!(pc.name, "p");

Trait Implementations§

Source§

impl Clone for PoolConfig

Source§

fn clone(&self) -> PoolConfig

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for PoolConfig

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for PoolConfig

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> FutureExt for T

Source§

fn with_context(self, otel_cx: Context) -> WithContext<Self>

Attaches the provided Context to this type, returning a WithContext wrapper. Read more
Source§

fn with_current_context(self) -> WithContext<Self>

Attaches the current Context to this type, returning a WithContext wrapper. Read more
Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

Source§

fn vzip(self) -> V

Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,