garage/src/model/s3/block_ref_table.rs

75 lines
1.8 KiB
Rust
Raw Normal View History

2020-04-10 21:11:52 +00:00
use serde::{Deserialize, Serialize};
use std::sync::Arc;
2020-04-24 10:10:01 +00:00
use garage_util::data::*;
2020-04-23 17:05:46 +00:00
2021-05-02 21:13:08 +00:00
use garage_table::crdt::Crdt;
2020-04-24 10:10:01 +00:00
use garage_table::*;
2020-04-10 21:11:52 +00:00
2022-03-15 11:04:12 +00:00
use garage_block::manager::*;
2020-04-10 21:11:52 +00:00
#[derive(PartialEq, Clone, Debug, Serialize, Deserialize)]
pub struct BlockRef {
2021-04-08 13:13:02 +00:00
/// Hash (blake2 sum) of the block, used as partition key
2020-04-10 21:11:52 +00:00
pub block: Hash,
2021-04-06 03:25:28 +00:00
/// Id of the Version for the object containing this block, used as sorting key
2021-05-02 21:13:08 +00:00
pub version: Uuid,
2020-04-10 21:11:52 +00:00
// Keep track of deleted status
2021-04-06 03:25:28 +00:00
/// Is the Version that contains this block deleted
pub deleted: crdt::Bool,
2020-04-10 21:11:52 +00:00
}
2021-05-02 21:13:08 +00:00
impl Entry<Hash, Uuid> for BlockRef {
2020-04-10 21:11:52 +00:00
fn partition_key(&self) -> &Hash {
&self.block
}
2021-05-02 21:13:08 +00:00
fn sort_key(&self) -> &Uuid {
2020-04-10 21:11:52 +00:00
&self.version
}
fn is_tombstone(&self) -> bool {
self.deleted.get()
}
}
2020-04-10 21:11:52 +00:00
2021-05-02 21:13:08 +00:00
impl Crdt for BlockRef {
2020-04-10 21:11:52 +00:00
fn merge(&mut self, other: &Self) {
self.deleted.merge(&other.deleted);
2020-04-10 21:11:52 +00:00
}
}
pub struct BlockRefTable {
2020-04-12 11:03:55 +00:00
pub block_manager: Arc<BlockManager>,
2020-04-10 21:11:52 +00:00
}
2020-04-12 20:24:53 +00:00
impl TableSchema for BlockRefTable {
2021-12-14 11:34:01 +00:00
const TABLE_NAME: &'static str = "block_ref";
2020-04-10 21:11:52 +00:00
type P = Hash;
2021-05-02 21:13:08 +00:00
type S = Uuid;
2020-04-10 21:11:52 +00:00
type E = BlockRef;
type Filter = DeletedFilter;
2020-04-10 21:11:52 +00:00
First implementation of K2V (#293) **Specification:** View spec at [this URL](https://git.deuxfleurs.fr/Deuxfleurs/garage/src/branch/k2v/doc/drafts/k2v-spec.md) - [x] Specify the structure of K2V triples - [x] Specify the DVVS format used for causality detection - [x] Specify the K2V index (just a counter of number of values per partition key) - [x] Specify single-item endpoints: ReadItem, InsertItem, DeleteItem - [x] Specify index endpoint: ReadIndex - [x] Specify multi-item endpoints: InsertBatch, ReadBatch, DeleteBatch - [x] Move to JSON objects instead of tuples - [x] Specify endpoints for polling for updates on single values (PollItem) **Implementation:** - [x] Table for K2V items, causal contexts - [x] Indexing mechanism and table for K2V index - [x] Make API handlers a bit more generic - [x] K2V API endpoint - [x] K2V API router - [x] ReadItem - [x] InsertItem - [x] DeleteItem - [x] PollItem - [x] ReadIndex - [x] InsertBatch - [x] ReadBatch - [x] DeleteBatch **Testing:** - [x] Just a simple Python script that does some requests to check visually that things are going right (does not contain parsing of results or assertions on returned values) - [x] Actual tests: - [x] Adapt testing framework - [x] Simple test with InsertItem + ReadItem - [x] Test with several Insert/Read/DeleteItem + ReadIndex - [x] Test all combinations of return formats for ReadItem - [x] Test with ReadBatch, InsertBatch, DeleteBatch - [x] Test with PollItem - [x] Test error codes - [ ] Fix most broken stuff - [x] test PollItem broken randomly - [x] when invalid causality tokens are given, errors should be 4xx not 5xx **Improvements:** - [x] Descending range queries - [x] Specify - [x] Implement - [x] Add test - [x] Batch updates to index counter - [x] Put K2V behind `k2v` feature flag Co-authored-by: Alex Auvolat <alex@adnab.me> Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/293 Co-authored-by: Alex <alex@adnab.me> Co-committed-by: Alex <alex@adnab.me>
2022-05-10 11:16:57 +00:00
fn updated(&self, old: Option<&Self::E>, new: Option<&Self::E>) {
2022-03-15 15:06:50 +00:00
#[allow(clippy::or_fun_call)]
First implementation of K2V (#293) **Specification:** View spec at [this URL](https://git.deuxfleurs.fr/Deuxfleurs/garage/src/branch/k2v/doc/drafts/k2v-spec.md) - [x] Specify the structure of K2V triples - [x] Specify the DVVS format used for causality detection - [x] Specify the K2V index (just a counter of number of values per partition key) - [x] Specify single-item endpoints: ReadItem, InsertItem, DeleteItem - [x] Specify index endpoint: ReadIndex - [x] Specify multi-item endpoints: InsertBatch, ReadBatch, DeleteBatch - [x] Move to JSON objects instead of tuples - [x] Specify endpoints for polling for updates on single values (PollItem) **Implementation:** - [x] Table for K2V items, causal contexts - [x] Indexing mechanism and table for K2V index - [x] Make API handlers a bit more generic - [x] K2V API endpoint - [x] K2V API router - [x] ReadItem - [x] InsertItem - [x] DeleteItem - [x] PollItem - [x] ReadIndex - [x] InsertBatch - [x] ReadBatch - [x] DeleteBatch **Testing:** - [x] Just a simple Python script that does some requests to check visually that things are going right (does not contain parsing of results or assertions on returned values) - [x] Actual tests: - [x] Adapt testing framework - [x] Simple test with InsertItem + ReadItem - [x] Test with several Insert/Read/DeleteItem + ReadIndex - [x] Test all combinations of return formats for ReadItem - [x] Test with ReadBatch, InsertBatch, DeleteBatch - [x] Test with PollItem - [x] Test error codes - [ ] Fix most broken stuff - [x] test PollItem broken randomly - [x] when invalid causality tokens are given, errors should be 4xx not 5xx **Improvements:** - [x] Descending range queries - [x] Specify - [x] Implement - [x] Add test - [x] Batch updates to index counter - [x] Put K2V behind `k2v` feature flag Co-authored-by: Alex Auvolat <alex@adnab.me> Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/293 Co-authored-by: Alex <alex@adnab.me> Co-committed-by: Alex <alex@adnab.me>
2022-05-10 11:16:57 +00:00
let block = &old.or(new).unwrap().block;
let was_before = old.map(|x| !x.deleted.get()).unwrap_or(false);
let is_after = new.map(|x| !x.deleted.get()).unwrap_or(false);
2020-04-11 21:00:26 +00:00
if is_after && !was_before {
if let Err(e) = self.block_manager.block_incref(block) {
warn!("block_incref failed for block {:?}: {}", block, e);
}
2020-04-11 21:00:26 +00:00
}
if was_before && !is_after {
if let Err(e) = self.block_manager.block_decref(block) {
warn!("block_decref failed for block {:?}: {}", block, e);
}
2020-04-11 21:00:26 +00:00
}
2020-04-10 21:11:52 +00:00
}
fn matches_filter(entry: &Self::E, filter: &Self::Filter) -> bool {
filter.apply(entry.deleted.get())
}
2020-04-10 21:11:52 +00:00
}