Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | help, comments: make clear that full-length node ID = public key | Alex Auvolat | 2024-01-16 | 1 | -3/+5 |
| | | | | Generally, avoid using the "public key" terminology | ||||
* | Merge branch 'main' into next | Alex Auvolat | 2023-10-10 | 1 | -0/+6 |
|\ | |||||
| * | Move convert_db command into main garage binaryconvert-db-main-binary | Alex Auvolat | 2023-10-10 | 1 | -0/+6 |
| | | |||||
* | | cli: more precise doc comment | Alex Auvolat | 2023-10-04 | 1 | -2/+2 |
| | | |||||
* | | new layout: make zone_redundancy optionnal (if not set, is maximum) | Alex Auvolat | 2023-09-18 | 1 | -2/+2 |
| | | |||||
* | | block manager: add rebalance operation to rebalance multi-hdd setups | Alex Auvolat | 2023-09-07 | 1 | -0/+3 |
| | | |||||
* | | Merge branch 'main' into nextv0.9.0-beta1 | Alex Auvolat | 2023-08-29 | 1 | -1/+1 |
|\| | |||||
| * | src/garage/cli: fix typo | Florian Klink | 2023-07-14 | 1 | -1/+1 |
| | | |||||
* | | admin and cli: hide secret keys unless asked | Alex Auvolat | 2023-06-14 | 1 | -2/+5 |
| | | |||||
* | | garage key import: add checks and `--yes` CLI flag (fix #278) | Alex Auvolat | 2023-06-13 | 1 | -0/+4 |
| | | |||||
* | | fix mpu counter (add missing workers) and report info at appropriate places | Alex Auvolat | 2023-06-09 | 1 | -6/+6 |
| | | |||||
* | | Add multipart upload repair | Alex Auvolat | 2023-06-09 | 1 | -0/+3 |
| | | |||||
* | | Merge branch 'main' into next | Alex Auvolat | 2023-04-25 | 1 | -15/+21 |
|\| | |||||
| * | Disk space report | Alex Auvolat | 2023-01-26 | 1 | -0/+5 |
| | | | | | | | | Report available disk space on nodes and calculate cluster-wide available space in `garage stats` (fix #479) | ||||
| * | bg var operation on all nodes at onceworker-get | Alex Auvolat | 2023-01-04 | 1 | -2/+16 |
| | | |||||
| * | Uniform framework for bg variable management | Alex Auvolat | 2023-01-04 | 1 | -17/+4 |
| | | |||||
* | | Changed all instances of assignation to assignment. | Jonathan Davies | 2023-01-05 | 1 | -1/+1 |
| | | |||||
* | | Merge pull request 'Changed all instances of 'key new' to 'key create' to ↵ | Alex | 2023-01-04 | 1 | -3/+3 |
|\ \ | | | | | | | | | | | | | | | | make it the same as the bucket commands.' (#459) from jpds/garage:key-create-standardize into next Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/459 | ||||
| * | | Changed all instances of 'key new' to 'key create' to make it consistent as ↵ | Jonathan Davies | 2023-01-03 | 1 | -3/+3 |
| |/ | | | | | | | bucket commands issued normally around the same time. | ||||
* | | Merge branch 'main' into next | Alex Auvolat | 2023-01-04 | 1 | -10/+43 |
|\| | |||||
| * | Implement `block retry-now` and `block purge` | Alex Auvolat | 2022-12-13 | 1 | -0/+1 |
| | | |||||
| * | Implement `block list-errors` and `block info` | Alex Auvolat | 2022-12-13 | 1 | -8/+37 |
| | | |||||
| * | cli: new worker info command | Alex Auvolat | 2022-12-13 | 1 | -0/+3 |
| | | |||||
| * | cli: rename resync-n-workers into resync-worker-count | Alex Auvolat | 2022-12-13 | 1 | -2/+2 |
| | | |||||
* | | Use bytes as capacity units | Alex Auvolat | 2022-11-07 | 1 | -2/+2 |
| | | |||||
* | | Merge branch 'main' into optimal-layout | Alex Auvolat | 2022-11-07 | 1 | -0/+15 |
|\| | |||||
| * | Add garage bucket cleanup-incomplete-uploads commandcleanup-uploads-command | Alex Auvolat | 2022-11-04 | 1 | -0/+15 |
| | | |||||
* | | cargo fmt | Mendes | 2022-10-10 | 1 | -4/+3 |
| | | |||||
* | | Added a CLI command to update the parameters for the layout computation (for ↵ | Mendes | 2022-10-05 | 1 | -1/+13 |
|/ | | | | now, only the zone redundancy) | ||||
* | Move version back into utilimprove-deps | Alex Auvolat | 2022-09-07 | 1 | -1/+1 |
| | |||||
* | Fix merge | Alex Auvolat | 2022-09-07 | 1 | -4/+4 |
| | |||||
* | Merge branch 'main' into improve-deps | Alex Auvolat | 2022-09-07 | 1 | -0/+19 |
|\ | |||||
| * | Ability to have up to 4 concurrently working resync workers | Alex Auvolat | 2022-09-02 | 1 | -1/+4 |
| | | |||||
| * | Ability to dynamically set resync tranquility | Alex Auvolat | 2022-09-02 | 1 | -0/+16 |
| | | |||||
* | | Move GIT_VERSION injection later in build chain to reduce build times | Alex Auvolat | 2022-09-07 | 1 | -52/+52 |
|/ | |||||
* | Configure structopt to report the right versionv0.7.2_ci-test-2bug/reported-version | Quentin Dufour | 2022-08-11 | 1 | -50/+51 |
| | | | | | | | | | | By default, structopt reports the value provided by the env var CARGO_PKG_VERSION, feeded by Cargo when reading Cargo.toml. However for Garage we use a versioning based on git, so we often report a version that is behind the real version. In this commit, we create garage_util::version::garage() that reports the right version and configure all structopt subcommands to call this function instead of using the env var. | ||||
* | Background task manager (#332) | Alex | 2022-07-08 | 1 | -2/+53 |
| | | | | | | | | | | | | | | | | | | | | | - [x] New background worker trait - [x] Adapt all current workers to use new API - [x] Command to list currently running workers, and whether they are active, idle, or dead - [x] Error reporting - Optimizations - [x] Merkle updater: several items per iteration - [ ] Use `tokio::task::spawn_blocking` where appropriate so that CPU-intensive tasks don't block other things going on - scrub: - [x] have only one worker with a channel to start/pause/cancel - [x] automatic scrub - [x] ability to view and change tranquility from CLI - [x] persistence of a few info - [ ] Testing Co-authored-by: Alex Auvolat <alex@adnab.me> Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/332 Co-authored-by: Alex <alex@adnab.me> Co-committed-by: Alex <alex@adnab.me> | ||||
* | improve internal item counter mechanisms and implement bucket quotas (#326) | Alex | 2022-06-15 | 1 | -1/+46 |
| | | | | | | | | | | | | | | | | - [x] Refactoring of internal counting API - [x] Repair procedure for counters (it's an offline procedure!!!) - [x] New counter for objects in buckets - [x] Add quotas to buckets struct - [x] Add CLI to manage bucket quotas - [x] Add admin API to manage bucket quotas - [x] Apply quotas by adding checks on put operations - [x] Proof-read Co-authored-by: Alex Auvolat <alex@adnab.me> Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/326 Co-authored-by: Alex <alex@adnab.me> Co-committed-by: Alex <alex@adnab.me> | ||||
* | Allow `garage layout assign` to assign to several nodes at once | Alex Auvolat | 2022-03-24 | 1 | -2/+3 |
| | |||||
* | Allow setting index document and error document on the CLI | Alex Auvolat | 2022-01-13 | 1 | -0/+8 |
| | |||||
* | Implement key allow|deny --create-bucket | Alex Auvolat | 2022-01-05 | 1 | -0/+18 |
| | |||||
* | New buckets for 0.6.0: migration code and build files | Alex Auvolat | 2022-01-04 | 1 | -0/+22 |
| | |||||
* | Model changes | Alex Auvolat | 2022-01-04 | 1 | -0/+5 |
| | |||||
* | Implement bucket alias and bucket unalias | Alex Auvolat | 2022-01-04 | 1 | -0/+31 |
| | |||||
* | Improve how node roles are assigned in Garagev0.5-beta1 | Alex Auvolat | 2021-11-16 | 1 | -24/+54 |
| | | | | | | | | | | | | | | | | | - change the terminology: the network configuration becomes the role table, the configuration of a nodes becomes a node's role - the modification of the role table takes place in two steps: first, changes are staged in a CRDT data structure. Then, once the user is happy with the changes, they can commit them all at once (or revert them). - update documentation - fix tests - implement smarter partition assignation algorithm This patch breaks the format of the network configuration: when migrating, the cluster will be in a state where no roles are assigned. All roles must be re-assigned and commited at once. This migration should not pose an issue. | ||||
* | Safety: never voluntarily delete block in 10min interval after RC reaches zero | Alex Auvolat | 2021-11-08 | 1 | -2/+1 |
| | |||||
* | Add tranquilizer mechanism to improve on token bucket mechanismtranquility | Alex Auvolat | 2021-11-04 | 1 | -3/+3 |
| | |||||
* | Refactoring on repair commandscli-verify-integrity | Alex Auvolat | 2021-10-27 | 1 | -3/+3 |
| | |||||
* | add cli parameter to verify local bloc integrity | Trinity Pointard | 2021-10-27 | 1 | -0/+7 |
| | | | | | reuse code for listing local blocks add disk i/o speed limit on integrity check | ||||
* | Improve CLI, adapt tests, update documentation | Alex Auvolat | 2021-10-25 | 1 | -0/+296 |