mirror of
https://github.com/deuxfleurs-org/garage.git
synced 2026-09-02 10:18:11 +00:00
89 lines
2.6 KiB
Rust
89 lines
2.6 KiB
Rust
use garage_util::config::Config;
|
|
use garage_util::crdt::AutoCrdt;
|
|
use garage_util::error::*;
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Serialize, Deserialize)]
|
|
#[serde(transparent)]
|
|
pub struct ReplicationFactor(usize);
|
|
|
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Default, Serialize, Deserialize)]
|
|
#[serde(rename_all = "lowercase")]
|
|
pub enum ConsistencyMode {
|
|
/// Read- and Write-quorum are 1
|
|
Dangerous,
|
|
/// Read-quorum is 1
|
|
Degraded,
|
|
/// Read- and Write-quorum are determined for read-after-write-consistency
|
|
#[default]
|
|
Consistent,
|
|
}
|
|
|
|
impl ConsistencyMode {
|
|
pub fn parse(s: &str) -> Option<Self> {
|
|
serde_json::from_value(serde_json::Value::String(s.to_string())).ok()
|
|
}
|
|
}
|
|
|
|
impl AutoCrdt for ConsistencyMode {
|
|
const WARN_IF_DIFFERENT: bool = true;
|
|
}
|
|
|
|
impl ReplicationFactor {
|
|
pub fn new(replication_factor: usize) -> Option<Self> {
|
|
if replication_factor < 1 {
|
|
None
|
|
} else {
|
|
Some(Self(replication_factor))
|
|
}
|
|
}
|
|
|
|
pub fn read_quorum(&self, consistency_mode: ConsistencyMode) -> usize {
|
|
match consistency_mode {
|
|
ConsistencyMode::Dangerous | ConsistencyMode::Degraded => 1,
|
|
ConsistencyMode::Consistent => usize::from(*self).div_ceil(2),
|
|
}
|
|
}
|
|
|
|
pub fn write_quorum(&self, consistency_mode: ConsistencyMode) -> usize {
|
|
match consistency_mode {
|
|
ConsistencyMode::Dangerous => 1,
|
|
ConsistencyMode::Degraded | ConsistencyMode::Consistent => {
|
|
(usize::from(*self) + 1) - self.read_quorum(ConsistencyMode::Consistent)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
impl std::convert::From<ReplicationFactor> for usize {
|
|
fn from(replication_factor: ReplicationFactor) -> usize {
|
|
replication_factor.0
|
|
}
|
|
}
|
|
|
|
impl std::fmt::Display for ReplicationFactor {
|
|
fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
|
|
self.0.fmt(f)
|
|
}
|
|
}
|
|
|
|
pub fn parse_replication_mode(
|
|
config: &Config,
|
|
) -> Result<(ReplicationFactor, ConsistencyMode), Error> {
|
|
match (&config.replication_mode, config.replication_factor, config.consistency_mode.as_str()) {
|
|
(Some(_replication_mode), _, _) => {
|
|
Err(Error::Message("The legacy replication_mode is no longer supported. Use replication_factor and consistency_mode instead.".into()))
|
|
}
|
|
(None, Some(replication_factor), consistency_mode) => {
|
|
let replication_factor = ReplicationFactor::new(replication_factor)
|
|
.ok_or_message("Invalid replication_factor in config file.")?;
|
|
let consistency_mode = ConsistencyMode::parse(consistency_mode)
|
|
.ok_or_message("Invalid consistency_mode in config file.")?;
|
|
Ok((replication_factor, consistency_mode))
|
|
}
|
|
(None, None, _) => {
|
|
Err(Error::Message("The option replication_factor is required.".into()))
|
|
}
|
|
}
|
|
}
|