Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Improved the statistics displayed in layout show | Mendes | 2022-10-11 | 1 | -24/+45 |
| | | | | corrected a few bugs | ||||
* | cargo fmt | Mendes | 2022-10-10 | 2 | -46/+55 |
| | |||||
* | Tests written in layout.rs | Mendes | 2022-10-10 | 1 | -2/+2 |
| | | | | | added staged_parameters to ClusterLayout removed the serde(default) -> will need a migration function | ||||
* | Corrected two bugs: | Mendes | 2022-10-06 | 1 | -1/+5 |
| | | | | | - self.node_id_vec was not properly updated when the previous ring was empty - ClusterLayout::merge was not considering changes in the layout parameters | ||||
* | Added a CLI command to update the parameters for the layout computation (for ↵ | Mendes | 2022-10-05 | 2 | -3/+46 |
| | | | | now, only the zone redundancy) | ||||
* | modifications in several files to : | Mendes | 2022-10-05 | 1 | -14/+21 |
| | | | | | | - have consistent error return types - store the zone redundancy in a Lww - print the error and message in the CLI (TODO: for the server Api, should msg be returned in the body response?) | ||||
* | Shutdown properly on SIGTERM/SIGHUP and on Windows signalshandle-sigterm | Alex Auvolat | 2022-09-28 | 1 | -1/+42 |
| | |||||
* | Initialize metrics exporter earlier (fix #389)fix-metrics | Alex Auvolat | 2022-09-20 | 1 | -1/+8 |
| | |||||
* | Properly return HTTP 204 when deleting non-existent object (fix #227)deleteobject-204 | Alex Auvolat | 2022-09-14 | 1 | -0/+9 |
| | |||||
* | Allow for hostnames in bootstrap_peers and rpc_public_addr (fix #353)resolve-peer-names | Alex Auvolat | 2022-09-14 | 1 | -1/+7 |
| | |||||
* | Use netapp 0.5 published from crates.io | Alex Auvolat | 2022-09-13 | 1 | -2/+1 |
| | |||||
* | Merge branch 'lx-perf-improvements' into netapp-stream-body | Alex Auvolat | 2022-09-08 | 6 | -121/+220 |
|\ | |||||
| * | Merge branch 'main' into lx-perf-improvements | Alex Auvolat | 2022-09-08 | 6 | -121/+220 |
| |\ | |||||
| | * | Move version back into utilimprove-deps | Alex Auvolat | 2022-09-07 | 3 | -6/+6 |
| | | | |||||
| | * | Inject GIT_VERSION even later | Alex Auvolat | 2022-09-07 | 1 | -2/+7 |
| | | | |||||
| | * | Fix merge | Alex Auvolat | 2022-09-07 | 1 | -4/+4 |
| | | | |||||
| | * | Merge branch 'main' into improve-deps | Alex Auvolat | 2022-09-07 | 2 | -2/+49 |
| | |\ | |||||
| | * | | Fix build error | Alex Auvolat | 2022-09-07 | 1 | -1/+1 |
| | | | | |||||
| | * | | Add warnings when features are not included in build | Alex Auvolat | 2022-09-07 | 1 | -0/+5 |
| | | | | |||||
| | * | | Error messages when system-libs XOR bundled-libs != 1 | Alex Auvolat | 2022-09-07 | 1 | -0/+6 |
| | | | | |||||
| | * | | Make all HTTP services optionnal | Alex Auvolat | 2022-09-07 | 1 | -45/+67 |
| | | | | |||||
| | * | | Report build features in garage --help | Alex Auvolat | 2022-09-07 | 2 | -4/+37 |
| | | | | |||||
| | * | | Move GIT_VERSION injection later in build chain to reduce build times | Alex Auvolat | 2022-09-07 | 3 | -55/+55 |
| | | | | |||||
| | * | | Disable k2v tests when feature is disabled | Alex Auvolat | 2022-09-06 | 1 | -0/+1 |
| | | | | |||||
| | * | | Remove opentelemetry-otlp dep in api/ | Alex Auvolat | 2022-09-06 | 1 | -1/+1 |
| | | | | |||||
| | * | | Make all DB engines optional build features | Alex Auvolat | 2022-09-06 | 1 | -2/+10 |
| | | | | |||||
| | * | | Bump versions to 0.8.0 (compatibility is broken already) | Alex Auvolat | 2022-09-06 | 1 | -8/+8 |
| | | | | |||||
| | * | | Fix clippy | Alex Auvolat | 2022-09-06 | 1 | -2/+2 |
| | | | | |||||
| | * | | Allow building without Prometheus exporter (/metrics endpoint) | Jakub Jirutka | 2022-09-06 | 1 | -3/+5 |
| | | | | | | | | | | | | | | | | | | | | | | | | prometheus and opentelemetry-prometheus add 7 extra dependencies in total and increases the size of the garage binary by ~7 % (with fat LTO). | ||||
| | * | | Make OTLP exporter optional via feature "telemetry-otlp" | Jakub Jirutka | 2022-09-06 | 3 | -2/+11 |
| | | | | | | | | | | | | | | | | | | | | opentelemetry-otlp add 48 (!) extra dependencies and increases the size of the garage binary by ~11 % (with fat LTO). | ||||
| | * | | Allow linking against system-provided libsqlite | Jakub Jirutka | 2022-09-03 | 1 | -0/+8 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Unfortunately, rusqlite uses the opposite logic for enabling/disabling bundled libraries to others (libsodium-sys, zstd-sys). Cargo features are very limited and doesn't allow to enable feature A in a dependency iff feature B is disabled. Note, lmdb-rkv-sys doesn't need any special treatment because it automatically links against system liblmdb if found via pkgconf. Linux distros should build garage with `--no-default-features --features system-libs` to disable bundled-libs and enable system-libs. | ||||
| | * | | Add feature "system-libs" to enable linking against system libraries | Jakub Jirutka | 2022-09-03 | 1 | -0/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | If this feature is enabled, libsodium-sys and zstd-sys will link dynamically against system-provided libraries instead of building and linking statically the bundled (possibly outdated and vulnerable) copies of them. This feature is intended mainly for linux package maintainers. | ||||
* | | | | Merge branch 'lx-perf-improvements' into netapp-stream-body | Alex Auvolat | 2022-09-06 | 2 | -2/+49 |
|\| | | | |||||
| * | | | Merge branch 'main' into lx-perf-improvements | Alex Auvolat | 2022-09-05 | 2 | -2/+49 |
| |\ \ \ | | | |/ | | |/| | |||||
| | * | | Ability to have up to 4 concurrently working resync workers | Alex Auvolat | 2022-09-02 | 2 | -1/+12 |
| | | | | |||||
| | * | | block manager: refactor: split resync into separate file | Alex Auvolat | 2022-09-02 | 1 | -3/+4 |
| | | | | |||||
| | * | | Ability to dynamically set resync tranquility | Alex Auvolat | 2022-09-02 | 2 | -0/+35 |
| | |/ | |||||
* | | | Merge branch 'lx-perf-improvements' into netapp-stream-body | Alex Auvolat | 2022-08-31 | 2 | -2/+5 |
|\| | | |||||
| * | | Add env filter to tracing subscriber | Alex Auvolat | 2022-08-31 | 2 | -1/+2 |
| | | | |||||
| * | | Tracing-subscriber: write to stderr | Alex Auvolat | 2022-08-31 | 1 | -1/+3 |
| | | | |||||
| * | | Replace logging crate pretty_env_logger by tracing_subscriber::fmt | Alex Auvolat | 2022-08-31 | 2 | -2/+2 |
| | | | |||||
* | | | Merge branch 'lx-perf-improvements' into netapp-stream-body | Alex Auvolat | 2022-08-29 | 2 | -51/+53 |
|\| | | |||||
| * | | Merge branch 'main' into lx-perf-improvements | Alex Auvolat | 2022-08-29 | 2 | -51/+53 |
| |\| | |||||
| | * | Configure structopt to report the right versionv0.7.2_ci-test-2bug/reported-version | Quentin Dufour | 2022-08-11 | 2 | -51/+53 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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. | ||||
* | | | update netapp to 0.5 | Alex Auvolat | 2022-07-29 | 1 | -1/+1 |
| | | | |||||
* | | | First adaptation to WIP netapp with streaming body | Alex Auvolat | 2022-07-29 | 4 | -11/+10 |
|/ / | |||||
* | | cargo fmt | Alex Auvolat | 2022-07-29 | 1 | -1/+1 |
| | | |||||
* | | Fix tests | Alex Auvolat | 2022-07-29 | 2 | -1/+4 |
| | | |||||
* | | Compute hashes on dedicated threads | Alex Auvolat | 2022-07-29 | 1 | -1/+1 |
|/ | |||||
* | Background task manager (#332) | Alex | 2022-07-08 | 6 | -98/+276 |
| | | | | | | | | | | | | | | | | | | | | | - [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> |