improve internal item counter mechanisms and implement bucket quotas #326

Merged
lx merged 23 commits from counters into main 2022-06-15 18:20:31 +00:00
2 changed files with 2 additions and 3 deletions
Showing only changes of commit e6ce8702d4 - Show all commits

View file

@ -442,6 +442,7 @@ pub struct OfflineRepairOpt {
#[derive(Serialize, Deserialize, StructOpt, Debug, Eq, PartialEq, Clone)]
pub enum OfflineRepairWhat {
/// Repair K2V item counters
#[cfg(feature = "k2v")]
#[structopt(name = "k2v_item_counters")]
K2VItemCounters,
/// Repair object counters

View file

@ -29,14 +29,12 @@ pub async fn offline_repair(config_file: PathBuf, opt: OfflineRepairOpt) -> Resu
info!("Launching repair operation...");
match opt.what {
#[cfg(feature = "k2v")]
OfflineRepairWhat::K2VItemCounters => {
#[cfg(feature = "k2v")]
garage
.k2v
.counter_table
.offline_recount_all(&garage.k2v.item_table)?;
#[cfg(not(feature = "k2v"))]
error!("K2V not enabled in this build.");
}
OfflineRepairWhat::ObjectCounters => {
garage