2022-06-15 18:20:28 +00:00
|
|
|
use core::ops::Bound;
|
2022-12-14 10:58:06 +00:00
|
|
|
use std::collections::{BTreeMap, HashMap};
|
2022-05-10 11:16:57 +00:00
|
|
|
use std::marker::PhantomData;
|
|
|
|
use std::sync::Arc;
|
|
|
|
|
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
|
2022-06-08 08:01:44 +00:00
|
|
|
use garage_db as db;
|
|
|
|
|
2022-05-10 11:16:57 +00:00
|
|
|
use garage_rpc::ring::Ring;
|
|
|
|
use garage_rpc::system::System;
|
2022-12-14 11:51:16 +00:00
|
|
|
use garage_util::background::BackgroundRunner;
|
2022-05-10 11:16:57 +00:00
|
|
|
use garage_util::data::*;
|
|
|
|
use garage_util::error::*;
|
2023-01-03 13:44:47 +00:00
|
|
|
use garage_util::migrate::Migrate;
|
2022-06-15 18:20:28 +00:00
|
|
|
use garage_util::time::*;
|
2022-05-10 11:16:57 +00:00
|
|
|
|
|
|
|
use garage_table::crdt::*;
|
2022-06-15 18:20:28 +00:00
|
|
|
use garage_table::replication::*;
|
2022-05-10 11:16:57 +00:00
|
|
|
use garage_table::*;
|
|
|
|
|
2022-06-15 18:20:28 +00:00
|
|
|
pub trait CountedItem: Clone + PartialEq + Send + Sync + 'static {
|
|
|
|
const COUNTER_TABLE_NAME: &'static str;
|
|
|
|
|
|
|
|
type CP: PartitionKey + Clone + PartialEq + Serialize + for<'de> Deserialize<'de> + Send + Sync;
|
|
|
|
type CS: SortKey + Clone + PartialEq + Serialize + for<'de> Deserialize<'de> + Send + Sync;
|
|
|
|
|
|
|
|
fn counter_partition_key(&self) -> &Self::CP;
|
|
|
|
fn counter_sort_key(&self) -> &Self::CS;
|
|
|
|
fn counts(&self) -> Vec<(&'static str, i64)>;
|
2022-05-10 11:16:57 +00:00
|
|
|
}
|
|
|
|
|
2023-01-03 13:44:47 +00:00
|
|
|
mod v08 {
|
2023-01-03 14:08:37 +00:00
|
|
|
use super::CountedItem;
|
|
|
|
use garage_util::data::Uuid;
|
|
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
use std::collections::BTreeMap;
|
|
|
|
|
|
|
|
// ---- Global part (the table everyone queries) ----
|
2023-01-03 13:44:47 +00:00
|
|
|
|
|
|
|
/// A counter entry in the global table
|
|
|
|
#[derive(Clone, PartialEq, Debug, Serialize, Deserialize)]
|
|
|
|
pub struct CounterEntry<T: CountedItem> {
|
|
|
|
pub pk: T::CP,
|
|
|
|
pub sk: T::CS,
|
|
|
|
pub values: BTreeMap<String, CounterValue>,
|
|
|
|
}
|
|
|
|
|
|
|
|
/// A counter entry in the global table
|
|
|
|
#[derive(PartialEq, Eq, Clone, Debug, Serialize, Deserialize)]
|
|
|
|
pub struct CounterValue {
|
|
|
|
pub node_values: BTreeMap<Uuid, (u64, i64)>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: CountedItem> garage_util::migrate::InitialFormat for CounterEntry<T> {}
|
2023-01-03 14:08:37 +00:00
|
|
|
|
|
|
|
// ---- Local part (the counter we maintain transactionnaly on each node) ----
|
|
|
|
|
|
|
|
#[derive(PartialEq, Clone, Debug, Serialize, Deserialize)]
|
|
|
|
pub(super) struct LocalCounterEntry<T: CountedItem> {
|
|
|
|
pub(super) pk: T::CP,
|
|
|
|
pub(super) sk: T::CS,
|
|
|
|
pub(super) values: BTreeMap<String, (u64, i64)>,
|
|
|
|
}
|
|
|
|
|
|
|
|
impl<T: CountedItem> garage_util::migrate::InitialFormat for LocalCounterEntry<T> {}
|
2022-05-10 11:16:57 +00:00
|
|
|
}
|
|
|
|
|
2023-01-03 13:44:47 +00:00
|
|
|
pub use v08::*;
|
|
|
|
|
2022-06-15 18:20:28 +00:00
|
|
|
impl<T: CountedItem> Entry<T::CP, T::CS> for CounterEntry<T> {
|
|
|
|
fn partition_key(&self) -> &T::CP {
|
2022-05-10 11:16:57 +00:00
|
|
|
&self.pk
|
|
|
|
}
|
2022-06-15 18:20:28 +00:00
|
|
|
fn sort_key(&self) -> &T::CS {
|
2022-05-10 11:16:57 +00:00
|
|
|
&self.sk
|
|
|
|
}
|
|
|
|
fn is_tombstone(&self) -> bool {
|
|
|
|
self.values
|
|
|
|
.iter()
|
|
|
|
.all(|(_, v)| v.node_values.iter().all(|(_, (_, v))| *v == 0))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-15 18:20:28 +00:00
|
|
|
impl<T: CountedItem> CounterEntry<T> {
|
2022-05-10 11:16:57 +00:00
|
|
|
pub fn filtered_values(&self, ring: &Ring) -> HashMap<String, i64> {
|
|
|
|
let nodes = &ring.layout.node_id_vec[..];
|
|
|
|
self.filtered_values_with_nodes(nodes)
|
|
|
|
}
|
|
|
|
|
|
|
|
pub fn filtered_values_with_nodes(&self, nodes: &[Uuid]) -> HashMap<String, i64> {
|
|
|
|
let mut ret = HashMap::new();
|
|
|
|
for (name, vals) in self.values.iter() {
|
|
|
|
let new_vals = vals
|
|
|
|
.node_values
|
|
|
|
.iter()
|
|
|
|
.filter(|(n, _)| nodes.contains(n))
|
|
|
|
.map(|(_, (_, v))| *v)
|
|
|
|
.collect::<Vec<_>>();
|
|
|
|
if !new_vals.is_empty() {
|
|
|
|
ret.insert(
|
|
|
|
name.clone(),
|
|
|
|
new_vals.iter().fold(i64::MIN, |a, b| std::cmp::max(a, *b)),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
ret
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-15 18:20:28 +00:00
|
|
|
impl<T: CountedItem> Crdt for CounterEntry<T> {
|
2022-05-10 11:16:57 +00:00
|
|
|
fn merge(&mut self, other: &Self) {
|
|
|
|
for (name, e2) in other.values.iter() {
|
|
|
|
if let Some(e) = self.values.get_mut(name) {
|
|
|
|
e.merge(e2);
|
|
|
|
} else {
|
|
|
|
self.values.insert(name.clone(), e2.clone());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Crdt for CounterValue {
|
|
|
|
fn merge(&mut self, other: &Self) {
|
|
|
|
for (node, (t2, e2)) in other.node_values.iter() {
|
|
|
|
if let Some((t, e)) = self.node_values.get_mut(node) {
|
|
|
|
if t2 > t {
|
|
|
|
*e = *e2;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
self.node_values.insert(*node, (*t2, *e2));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-06-15 18:20:28 +00:00
|
|
|
pub struct CounterTable<T: CountedItem> {
|
2022-05-10 11:16:57 +00:00
|
|
|
_phantom_t: PhantomData<T>,
|
|
|
|
}
|
|
|
|
|
2022-06-15 18:20:28 +00:00
|
|
|
impl<T: CountedItem> TableSchema for CounterTable<T> {
|
|
|
|
const TABLE_NAME: &'static str = T::COUNTER_TABLE_NAME;
|
2022-05-10 11:16:57 +00:00
|
|
|
|
2022-06-15 18:20:28 +00:00
|
|
|
type P = T::CP;
|
|
|
|
type S = T::CS;
|
2022-05-10 11:16:57 +00:00
|
|
|
type E = CounterEntry<T>;
|
|
|
|
type Filter = (DeletedFilter, Vec<Uuid>);
|
|
|
|
|
|
|
|
fn matches_filter(entry: &Self::E, filter: &Self::Filter) -> bool {
|
|
|
|
if filter.0 == DeletedFilter::Any {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
let is_tombstone = entry
|
|
|
|
.filtered_values_with_nodes(&filter.1[..])
|
|
|
|
.iter()
|
|
|
|
.all(|(_, v)| *v == 0);
|
|
|
|
filter.0.apply(is_tombstone)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// ----
|
|
|
|
|
2022-06-15 18:20:28 +00:00
|
|
|
pub struct IndexCounter<T: CountedItem> {
|
2022-05-10 11:16:57 +00:00
|
|
|
this_node: Uuid,
|
2022-06-08 08:01:44 +00:00
|
|
|
local_counter: db::Tree,
|
2022-05-10 11:16:57 +00:00
|
|
|
pub table: Arc<Table<CounterTable<T>, TableShardedReplication>>,
|
|
|
|
}
|
|
|
|
|
2022-06-15 18:20:28 +00:00
|
|
|
impl<T: CountedItem> IndexCounter<T> {
|
2022-05-10 11:16:57 +00:00
|
|
|
pub fn new(
|
|
|
|
system: Arc<System>,
|
|
|
|
replication: TableShardedReplication,
|
2022-06-08 08:01:44 +00:00
|
|
|
db: &db::Db,
|
2022-05-10 11:16:57 +00:00
|
|
|
) -> Arc<Self> {
|
2022-12-14 10:58:06 +00:00
|
|
|
Arc::new(Self {
|
2022-05-10 11:16:57 +00:00
|
|
|
this_node: system.id,
|
|
|
|
local_counter: db
|
2022-06-15 18:20:28 +00:00
|
|
|
.open_tree(format!("local_counter_v2:{}", T::COUNTER_TABLE_NAME))
|
2022-05-10 11:16:57 +00:00
|
|
|
.expect("Unable to open local counter tree"),
|
|
|
|
table: Table::new(
|
|
|
|
CounterTable {
|
|
|
|
_phantom_t: Default::default(),
|
|
|
|
},
|
|
|
|
replication,
|
|
|
|
system,
|
|
|
|
db,
|
|
|
|
),
|
2022-12-14 10:58:06 +00:00
|
|
|
})
|
2022-05-10 11:16:57 +00:00
|
|
|
}
|
|
|
|
|
2022-12-14 11:51:16 +00:00
|
|
|
pub fn spawn_workers(&self, bg: &BackgroundRunner) {
|
|
|
|
self.table.spawn_workers(bg);
|
2022-12-14 11:28:07 +00:00
|
|
|
}
|
|
|
|
|
2022-06-08 08:01:44 +00:00
|
|
|
pub fn count(
|
|
|
|
&self,
|
|
|
|
tx: &mut db::Transaction,
|
2022-06-15 18:20:28 +00:00
|
|
|
old: Option<&T>,
|
|
|
|
new: Option<&T>,
|
2022-06-08 08:01:44 +00:00
|
|
|
) -> db::TxResult<(), Error> {
|
2022-06-15 18:20:28 +00:00
|
|
|
let pk = old
|
|
|
|
.map(|e| e.counter_partition_key())
|
|
|
|
.unwrap_or_else(|| new.unwrap().counter_partition_key());
|
|
|
|
let sk = old
|
|
|
|
.map(|e| e.counter_sort_key())
|
|
|
|
.unwrap_or_else(|| new.unwrap().counter_sort_key());
|
|
|
|
|
|
|
|
// calculate counter differences
|
|
|
|
let mut counts = HashMap::new();
|
|
|
|
for (k, v) in old.map(|x| x.counts()).unwrap_or_default() {
|
|
|
|
*counts.entry(k).or_insert(0) -= v;
|
|
|
|
}
|
|
|
|
for (k, v) in new.map(|x| x.counts()).unwrap_or_default() {
|
|
|
|
*counts.entry(k).or_insert(0) += v;
|
|
|
|
}
|
|
|
|
|
|
|
|
// update local counter table
|
2022-05-10 11:16:57 +00:00
|
|
|
let tree_key = self.table.data.tree_key(pk, sk);
|
|
|
|
|
2022-06-08 08:01:44 +00:00
|
|
|
let mut entry = match tx.get(&self.local_counter, &tree_key[..])? {
|
2023-01-03 13:44:47 +00:00
|
|
|
Some(old_bytes) => LocalCounterEntry::<T>::decode(&old_bytes)
|
|
|
|
.ok_or_message("Cannot decode local counter entry")
|
|
|
|
.map_err(db::TxError::Abort)?,
|
2022-06-08 08:01:44 +00:00
|
|
|
None => LocalCounterEntry {
|
2022-06-15 18:20:28 +00:00
|
|
|
pk: pk.clone(),
|
|
|
|
sk: sk.clone(),
|
2022-06-08 08:01:44 +00:00
|
|
|
values: BTreeMap::new(),
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2022-06-15 18:20:28 +00:00
|
|
|
let now = now_msec();
|
2022-06-08 08:01:44 +00:00
|
|
|
for (s, inc) in counts.iter() {
|
|
|
|
let mut ent = entry.values.entry(s.to_string()).or_insert((0, 0));
|
2022-06-15 18:20:28 +00:00
|
|
|
ent.0 = std::cmp::max(ent.0 + 1, now);
|
2022-06-08 08:01:44 +00:00
|
|
|
ent.1 += *inc;
|
|
|
|
}
|
2022-05-10 11:16:57 +00:00
|
|
|
|
2023-01-03 13:44:47 +00:00
|
|
|
let new_entry_bytes = entry
|
|
|
|
.encode()
|
2022-06-08 08:01:44 +00:00
|
|
|
.map_err(Error::RmpEncode)
|
|
|
|
.map_err(db::TxError::Abort)?;
|
|
|
|
tx.insert(&self.local_counter, &tree_key[..], new_entry_bytes)?;
|
2022-05-10 11:16:57 +00:00
|
|
|
|
2022-12-14 10:58:06 +00:00
|
|
|
let dist_entry = entry.into_counter_entry(self.this_node);
|
|
|
|
self.table.queue_insert(tx, &dist_entry)?;
|
2022-05-10 11:16:57 +00:00
|
|
|
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2022-06-15 18:20:28 +00:00
|
|
|
pub fn offline_recount_all<TS, TR>(
|
|
|
|
&self,
|
|
|
|
counted_table: &Arc<Table<TS, TR>>,
|
|
|
|
) -> Result<(), Error>
|
|
|
|
where
|
|
|
|
TS: TableSchema<E = T>,
|
|
|
|
TR: TableReplication,
|
|
|
|
{
|
|
|
|
// 1. Set all old local counters to zero
|
|
|
|
let now = now_msec();
|
|
|
|
let mut next_start: Option<Vec<u8>> = None;
|
|
|
|
loop {
|
|
|
|
let low_bound = match next_start.take() {
|
|
|
|
Some(v) => Bound::Excluded(v),
|
|
|
|
None => Bound::Unbounded,
|
|
|
|
};
|
|
|
|
let mut batch = vec![];
|
|
|
|
for item in self.local_counter.range((low_bound, Bound::Unbounded))? {
|
|
|
|
batch.push(item?);
|
|
|
|
if batch.len() > 1000 {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if batch.is_empty() {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
info!("zeroing old counters... ({})", hex::encode(&batch[0].0));
|
|
|
|
for (local_counter_k, local_counter) in batch {
|
2023-01-03 14:27:36 +00:00
|
|
|
let mut local_counter = LocalCounterEntry::<T>::decode(&local_counter)
|
|
|
|
.ok_or_message("Cannot decode local counter entry")?;
|
2022-06-15 18:20:28 +00:00
|
|
|
|
|
|
|
for (_, tv) in local_counter.values.iter_mut() {
|
|
|
|
tv.0 = std::cmp::max(tv.0 + 1, now);
|
|
|
|
tv.1 = 0;
|
|
|
|
}
|
|
|
|
|
2023-01-03 13:44:47 +00:00
|
|
|
let local_counter_bytes = local_counter.encode()?;
|
2022-06-15 18:20:28 +00:00
|
|
|
self.local_counter
|
|
|
|
.insert(&local_counter_k, &local_counter_bytes)?;
|
|
|
|
|
|
|
|
let counter_entry = local_counter.into_counter_entry(self.this_node);
|
2022-12-14 10:58:06 +00:00
|
|
|
self.local_counter
|
|
|
|
.db()
|
2023-09-21 13:32:25 +00:00
|
|
|
.transaction(|tx| self.table.queue_insert(tx, &counter_entry))?;
|
2022-06-15 18:20:28 +00:00
|
|
|
|
|
|
|
next_start = Some(local_counter_k);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 2. Recount all table entries
|
|
|
|
let now = now_msec();
|
|
|
|
let mut next_start: Option<Vec<u8>> = None;
|
|
|
|
loop {
|
|
|
|
let low_bound = match next_start.take() {
|
|
|
|
Some(v) => Bound::Excluded(v),
|
|
|
|
None => Bound::Unbounded,
|
|
|
|
};
|
|
|
|
let mut batch = vec![];
|
|
|
|
for item in counted_table
|
|
|
|
.data
|
|
|
|
.store
|
|
|
|
.range((low_bound, Bound::Unbounded))?
|
|
|
|
{
|
|
|
|
batch.push(item?);
|
|
|
|
if batch.len() > 1000 {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if batch.is_empty() {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
info!("counting entries... ({})", hex::encode(&batch[0].0));
|
|
|
|
for (counted_entry_k, counted_entry) in batch {
|
|
|
|
let counted_entry = counted_table.data.decode_entry(&counted_entry)?;
|
|
|
|
|
|
|
|
let pk = counted_entry.counter_partition_key();
|
|
|
|
let sk = counted_entry.counter_sort_key();
|
|
|
|
let counts = counted_entry.counts();
|
|
|
|
|
|
|
|
let local_counter_key = self.table.data.tree_key(pk, sk);
|
|
|
|
let mut local_counter = match self.local_counter.get(&local_counter_key)? {
|
|
|
|
Some(old_bytes) => {
|
2023-01-03 14:27:36 +00:00
|
|
|
let ent = LocalCounterEntry::<T>::decode(&old_bytes)
|
|
|
|
.ok_or_message("Cannot decode local counter entry")?;
|
2022-06-15 18:20:28 +00:00
|
|
|
assert!(ent.pk == *pk);
|
|
|
|
assert!(ent.sk == *sk);
|
|
|
|
ent
|
|
|
|
}
|
|
|
|
None => LocalCounterEntry {
|
|
|
|
pk: pk.clone(),
|
|
|
|
sk: sk.clone(),
|
|
|
|
values: BTreeMap::new(),
|
|
|
|
},
|
|
|
|
};
|
|
|
|
for (s, v) in counts.iter() {
|
|
|
|
let mut tv = local_counter.values.entry(s.to_string()).or_insert((0, 0));
|
|
|
|
tv.0 = std::cmp::max(tv.0 + 1, now);
|
|
|
|
tv.1 += v;
|
|
|
|
}
|
|
|
|
|
2023-01-03 13:44:47 +00:00
|
|
|
let local_counter_bytes = local_counter.encode()?;
|
2022-06-15 18:20:28 +00:00
|
|
|
self.local_counter
|
|
|
|
.insert(&local_counter_key, local_counter_bytes)?;
|
|
|
|
|
|
|
|
let counter_entry = local_counter.into_counter_entry(self.this_node);
|
2022-12-14 10:58:06 +00:00
|
|
|
self.local_counter
|
|
|
|
.db()
|
2023-09-21 13:32:25 +00:00
|
|
|
.transaction(|tx| self.table.queue_insert(tx, &counter_entry))?;
|
2022-06-15 18:20:28 +00:00
|
|
|
|
|
|
|
next_start = Some(counted_entry_k);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Done
|
|
|
|
Ok(())
|
|
|
|
}
|
2022-05-10 11:16:57 +00:00
|
|
|
}
|
|
|
|
|
2022-12-14 10:58:06 +00:00
|
|
|
// ----
|
2022-07-08 11:30:26 +00:00
|
|
|
|
2022-06-15 18:20:28 +00:00
|
|
|
impl<T: CountedItem> LocalCounterEntry<T> {
|
|
|
|
fn into_counter_entry(self, this_node: Uuid) -> CounterEntry<T> {
|
2022-05-10 11:16:57 +00:00
|
|
|
CounterEntry {
|
2022-06-15 18:20:28 +00:00
|
|
|
pk: self.pk,
|
|
|
|
sk: self.sk,
|
2022-05-10 11:16:57 +00:00
|
|
|
values: self
|
|
|
|
.values
|
|
|
|
.into_iter()
|
|
|
|
.map(|(name, (ts, v))| {
|
|
|
|
let mut node_values = BTreeMap::new();
|
|
|
|
node_values.insert(this_node, (ts, v));
|
|
|
|
(name, CounterValue { node_values })
|
|
|
|
})
|
|
|
|
.collect(),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|