Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | remove async_trait for traits declared in garage_net | Alex Auvolat | 9 days | 1 | -2/+0 |
| | |||||
* | build with rust 1.82.0 | Alex Auvolat | 12 days | 1 | -1/+2 |
| | |||||
* | nix, ci: build with Crane | Alex Auvolat | 12 days | 1 | -2/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This removes our dependency on cargo2nix, which was causing us some issues. Whereas cargo2nix creates one Nix derivation per crate, Crane uses only two derivations: 1. Build dependencies only 2. Build the final binary This means that during the second step, no caching can be done. For instance, if we do a change in garage_model, we need to recompile all of the Garage crates including those that do not depend on garage_model. On the upside, this allows all of the Garage crates to be built at once using cargo build logic, which is optimized for high parallelism and better pipelining between all of the steps of the build. All in all, this makes most builds faster than cargo2nix. A few other changes have been made to the build scripts and CI: - Unit tests are now run within a Nix derivation. In fact, we have different derivations to run the tests using LMDB and Sqlite as metadata db engines. - For debug builds, most CI steps now run in parallel (with the notable exception of the smoke test that runs after the build, which is inevitable). - We no longer pass the GIT_VERSION argument when building debug builds and running the tests. This means that dev binaries and test binaries don't know the exact version of Garage they are from. That shouldn't be an issue in most cases. - The not-dynamic.sh scripts has been fixed to fail if the file does not exist. | ||||
* | use cargo-shear to remove many unused dependencies between crates | Alex Auvolat | 2025-01-31 | 1 | -3/+0 |
| | |||||
* | api: better handling of helper errors to distinguish error codes | Alex Auvolat | 2025-01-29 | 1 | -6/+0 |
| | |||||
* | db-snapshot: allow to set directory where snapshots are stored | Baptiste Jonglez | 2025-01-27 | 1 | -2/+8 |
| | | | | Fix #926 | ||||
* | Fix all typos | Stefan Majer | 2025-01-16 | 7 | -15/+15 |
| | |||||
* | fix formatting to comply with latest rustfmt | Alex Auvolat | 2025-01-12 | 1 | -1/+2 |
| | |||||
* | feat: add use_local_tz configuration | Renjaya Raga Zenta | 2024-11-23 | 1 | -8/+18 |
| | | | | Used in lifecycle_worker to determine midnight time | ||||
* | fix bit/byte inversion in rpc secret error message | trinity-1686a | 2024-11-07 | 1 | -1/+1 |
| | |||||
* | Bump to version 1.0.1v1.0.1rel-v1.0.1 | Alex Auvolat | 2024-09-22 | 1 | -1/+1 |
| | |||||
* | Improve error message for malformed RPC secret keyimprove-secret-error-message | Maximilien R. | 2024-08-08 | 1 | -1/+1 |
| | |||||
* | [next-0.10] bump version number to 1.0v1.0.0-rc1 | Alex Auvolat | 2024-03-28 | 1 | -1/+1 |
| | |||||
* | Merge branch 'main' into next-0.10 | Alex Auvolat | 2024-03-28 | 1 | -1/+1 |
|\ | |||||
| * | [fix-buffering] implement `block_ram_buffer_max` to avoid excessive RAM usage | Alex Auvolat | 2024-03-27 | 1 | -1/+5 |
| | | |||||
* | | [next-0.10] fixes to k2v rpc + comment fixes | Alex Auvolat | 2024-03-27 | 2 | -10/+5 |
| | | |||||
* | | [s3-checksum] implement x-amz-checksum-* headers | Alex Auvolat | 2024-03-26 | 2 | -7/+55 |
| | | |||||
* | | Merge branch 'main' into next-0.10 | Alex Auvolat | 2024-03-19 | 1 | -0/+43 |
|\| | |||||
| * | [bucket-id-prefix] CLI: allow manipulating buckets by prefixes of their full IDsbucket-id-prefix | Alex Auvolat | 2024-03-19 | 1 | -0/+43 |
| | | |||||
* | | [block-ref-repair] Block refcount recalculation and repair | Alex Auvolat | 2024-03-19 | 2 | -0/+47 |
| | | | | | | | | | | | | | | | | | | | | - We always recalculate the reference count of a block before deleting it locally, to make sure that it is indeed zero. - If we had to fetch a remote block but we were not able to get it, check that refcount is indeed > 0. - Repair procedure that checks everything | ||||
* | | Merge branch 'main' into next-0.10 | Alex Auvolat | 2024-03-18 | 4 | -9/+157 |
|\| | |||||
| * | [db-snapshot] implement meta_auto_snapshot_interval | Alex Auvolat | 2024-03-15 | 4 | -1/+156 |
| | | |||||
| * | [disable-scrub] implement a `disable_scrub` configuration option | Alex Auvolat | 2024-03-14 | 1 | -8/+1 |
| | | |||||
* | | Merge pull request 'Remove Sled' (#767) from rm-sled into next-0.10 | Alex | 2024-03-12 | 3 | -14/+2 |
|\ \ | | | | | | | | | | Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/767 | ||||
| * | | [rm-sled] Remove counted_tree_hack | Alex Auvolat | 2024-03-08 | 1 | -7/+1 |
| | | | |||||
| * | | [rm-sled] Remove the Sled database engine | Alex Auvolat | 2024-03-08 | 2 | -7/+1 |
| | | | |||||
* | | | Merge pull request 'Remove migration path from Garage v0.5' (#766) from ↵ | Alex | 2024-03-08 | 8 | -338/+5 |
|\ \ \ | |/ / |/| | | | | | | | | | | | rm-migration into next-0.10 Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/766 | ||||
| * | | [rm-migration] Remove migration path from Garage v0.5rm-migration | Alex Auvolat | 2024-03-08 | 8 | -338/+5 |
| | | | |||||
* | | | Merge branch 'main' into next-0.10 | Alex Auvolat | 2024-03-08 | 1 | -93/+19 |
|\ \ \ | |/ / |/| / | |/ | |||||
| * | [factor-db-open] Combine logic for opening db enginesfactor-db-open | Alex Auvolat | 2024-03-08 | 1 | -93/+19 |
| | | |||||
* | | Merge pull request 'ReplicationMode -> ConsistencyMode+ReplicationFactor' ↵ | Alex | 2024-03-07 | 1 | -12/+11 |
|\ \ | | | | | | | | | | | | | | | | (#750) from yuka/garage:split-consistency-mode into next-0.10 Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/750 | ||||
| * | | ReplicationMode -> ConsistencyMode+ReplicationFactor | Yureka | 2024-03-07 | 1 | -12/+11 |
| | | | |||||
* | | | [sse-c] Remove special case for Content-Type headersse-c | Alex Auvolat | 2024-03-07 | 2 | -3/+18 |
| | | | |||||
* | | | [sse-c] Implement SSE-C encryption | Alex Auvolat | 2024-03-07 | 2 | -3/+162 |
|/ / | |||||
* | | refactor: remove max_write_errors and max_faults | Yureka | 2024-03-04 | 1 | -1/+0 |
| | | |||||
* | | Merge branch 'main' into next-0.10 | Alex Auvolat | 2024-03-04 | 1 | -0/+7 |
|\| | |||||
| * | Merge pull request 'add request context helper' (#751) from ↵ | Alex | 2024-03-04 | 1 | -0/+7 |
| |\ | | | | | | | | | | | | | | | | yuka/garage:req-ctx into main Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/751 | ||||
| | * | add request context helper | Yureka | 2024-03-04 | 1 | -0/+7 |
| | | | |||||
| * | | [rel-0.9.3] Bump version to 0.9.3v0.9.3 | Alex Auvolat | 2024-03-04 | 1 | -1/+1 |
| |/ | |||||
| * | [rel-0.9.2] Bump version to v0.9.2v0.9.2rel-0.9.2 | Alex Auvolat | 2024-03-01 | 1 | -1/+1 |
| | | |||||
* | | Merge branch 'main' into next-0.10 | Alex Auvolat | 2024-02-22 | 6 | -383/+426 |
|\| | |||||
| * | [lock-createbucket] Add node-global lock for bucket/key operations (fix #723)lock-createbucket | Alex Auvolat | 2024-02-22 | 6 | -383/+426 |
| | | |||||
* | | Merge branch 'main' into next-0.10 | Alex Auvolat | 2024-02-15 | 4 | -7/+6 |
|\| | |||||
| * | [import-netapp] import Netapp code into Garage codebase | Alex Auvolat | 2024-02-15 | 4 | -7/+6 |
| | | |||||
* | | Merge branch 'main' into next-0.10 | Alex Auvolat | 2024-02-13 | 3 | -29/+29 |
|\| | |||||
| * | [dep-upgrade-202402] remove useless mut | Alex Auvolat | 2024-02-08 | 2 | -9/+9 |
| | | |||||
| * | [dep-upgrade-202402] refactor dependencies: move all as workspace deps | Alex Auvolat | 2024-02-05 | 1 | -20/+20 |
| | | |||||
| * | Bump version to 0.9.1v0.9.1rel-v0.9.1 | Alex Auvolat | 2024-01-16 | 1 | -1/+1 |
| | | |||||
* | | bump crate versions to 0.10.0v0.10.0-beta1 | Alex Auvolat | 2024-01-11 | 1 | -1/+1 |
| | | |||||
* | | layout: add helper for cached/external values to centralize recomputation | Alex Auvolat | 2023-11-15 | 2 | -3/+3 |
| | |