Skip to main content

ShardingStrategy

Enum ShardingStrategy 

Source
pub enum ShardingStrategy {
    Hash,
    Range,
    Date,
    Enum {
        mapping: HashMap<String, String>,
        default: Option<String>,
    },
    List {
        keys: HashSet<String>,
        target: String,
        default: Option<String>,
    },
    Directory {
        table: HashMap<String, String>,
    },
    Composite {
        primary: Box<ShardingStrategy>,
        primary_shards: Vec<String>,
        secondary: Box<ShardingStrategy>,
        secondary_shards: Vec<String>,
    },
}
Expand description

Sharding strategy.

Note: from v0.3.0 this is extended to a non-Copy enum (with new Enum/List/Directory/Composite variants that carry data). The routing behavior of the three original variants Hash/Range/Date remains backward compatible.

Variants§

§

Hash

Hash sharding: hash the key and select a shard by modulo.

§

Range

Range sharding: select a shard by the byte-value range of the key.

§

Date

Date sharding: select a shard by the date information (YYYY-MM-DD) in the key.

§

Enum

Enum sharding: explicit key → shard mapping; unmatched keys go to the default shard.

Fields

§mapping: HashMap<String, String>

Explicit mapping table.

§default: Option<String>

Default shard when no match.

§

List

List sharding: route to target if the key is in the predefined set, otherwise default.

Fields

§keys: HashSet<String>

Predefined key set.

§target: String

Target shard on hit.

§default: Option<String>

Default shard on miss.

§

Directory

Directory sharding: dynamically query a routing table (key → shard).

Fields

§table: HashMap<String, String>

Dynamic routing table.

§

Composite

Composite sharding: first route by primary to obtain a group, then route “group:key” with secondary for the second-level routing.

Fields

§primary: Box<ShardingStrategy>

Primary strategy (decides the group).

§primary_shards: Vec<String>

Shard list used by the primary strategy (i.e. the set of group labels).

§secondary: Box<ShardingStrategy>

Secondary strategy (routes within the group).

§secondary_shards: Vec<String>

Shard list used by the secondary strategy (final shard).

Trait Implementations§

Source§

impl Clone for ShardingStrategy

Source§

fn clone(&self) -> ShardingStrategy

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 ShardingStrategy

Source§

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

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

impl<'de> Deserialize<'de> for ShardingStrategy

Source§

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 Eq for ShardingStrategy

Source§

impl PartialEq for ShardingStrategy

Source§

fn eq(&self, other: &ShardingStrategy) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl Serialize for ShardingStrategy

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for ShardingStrategy

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> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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> 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 = !

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

fn try_from(value: U) -> Result<T, !>

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.