aboutsummaryrefslogtreecommitdiff
path: root/src/table/replication/parameters.rs
blob: ace82bd92c9eb4af24ae364c6d8fe1cdafbb4c1d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
use garage_rpc::ring::Ring;

use garage_util::data::*;

pub trait TableReplication: Send + Sync {
	// See examples in table_sharded.rs and table_fullcopy.rs
	// To understand various replication methods

	// Partition number of data item (for Merkle tree)
	fn partition_of(&self, hash: &Hash) -> u16;

	// Which nodes to send reads from
	fn read_nodes(&self, hash: &Hash) -> Vec<UUID>;
	fn read_quorum(&self) -> usize;

	// Which nodes to send writes to
	fn write_nodes(&self, hash: &Hash) -> Vec<UUID>;
	fn write_quorum(&self) -> usize;
	fn max_write_errors(&self) -> usize;

	// Get partition boundaries
	fn split_points(&self, ring: &Ring) -> Vec<Hash>;
}