diff options
author | Alex Auvolat <alex@adnab.me> | 2024-03-15 10:56:57 +0100 |
---|---|---|
committer | Alex Auvolat <alex@adnab.me> | 2024-03-15 13:51:31 +0100 |
commit | a68c37555d15bb19a10f74c7ee85485a5228ab66 (patch) | |
tree | d91773c903c8c423b3643ce0bb0391b574bd6e9d /src/garage/cli/structs.rs | |
parent | 1e42808a59c35aae297d9dfd1c166c09f0b99347 (diff) | |
download | garage-a68c37555d15bb19a10f74c7ee85485a5228ab66.tar.gz garage-a68c37555d15bb19a10f74c7ee85485a5228ab66.zip |
[db-snapshot] add garage meta snapshot cli operation
Diffstat (limited to 'src/garage/cli/structs.rs')
-rw-r--r-- | src/garage/cli/structs.rs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/garage/cli/structs.rs b/src/garage/cli/structs.rs index be4d5bd6..51d2bed3 100644 --- a/src/garage/cli/structs.rs +++ b/src/garage/cli/structs.rs @@ -57,6 +57,10 @@ pub enum Command { #[structopt(name = "block", version = garage_version())] Block(BlockOperation), + /// Operations on the metadata db + #[structopt(name = "meta", version = garage_version())] + Meta(MetaOperation), + /// Convert metadata db between database engine formats #[structopt(name = "convert-db", version = garage_version())] ConvertDb(convert_db::ConvertDbOpt), @@ -617,3 +621,14 @@ pub enum BlockOperation { blocks: Vec<String>, }, } + +#[derive(Serialize, Deserialize, StructOpt, Debug, Eq, PartialEq, Clone, Copy)] +pub enum MetaOperation { + /// Save a snapshot of the metadata db file + #[structopt(name = "snapshot", version = garage_version())] + Snapshot { + /// Run on all nodes instead of only local node + #[structopt(long = "all")] + all: bool, + }, +} |