Implement garage stats to get info on node contents

This commit is contained in:
Alex Auvolat
2021-03-12 15:40:54 +01:00
parent cbe7e1a66a
commit a1442f072a
7 changed files with 126 additions and 4 deletions
+1 -1
View File
@@ -17,7 +17,7 @@ pub struct TableData<F: TableSchema> {
pub instance: F,
pub store: sled::Tree,
pub(crate) merkle_updater: Arc<MerkleUpdater>,
pub merkle_updater: Arc<MerkleUpdater>,
}
impl<F> TableData<F>
+2 -2
View File
@@ -32,7 +32,7 @@ pub fn hash_of_merkle_partition_opt(p: Option<MerklePartition>) -> Hash {
// 16 bits (two bytes) of item's partition keys' hashes.
// It builds one Merkle tree for each of these 2**16 partitions.
pub(crate) struct MerkleUpdater {
pub struct MerkleUpdater {
table_name: String,
background: Arc<BackgroundRunner>,
@@ -40,7 +40,7 @@ pub(crate) struct MerkleUpdater {
// - key = the key of an item in the main table, ie hash(partition_key)+sort_key
// - value = the hash of the full serialized item, if present,
// or an empty vec if item is absent (deleted)
pub(crate) todo: sled::Tree,
pub todo: sled::Tree,
pub(crate) todo_notify: Notify,
// Content of the merkle tree: items where