Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Make repository into a Nix flake | Alex Auvolat | 2022-11-16 | 1 | -4/+4 |
| | |||||
* | Cleanup nix scripts | Alex Auvolat | 2022-10-18 | 1 | -4/+3 |
| | |||||
* | Fix i386 build with custom toolchain (armv6 unknown state) | Alex Auvolat | 2022-10-14 | 1 | -1/+4 |
| | |||||
* | cargo2nix unstable (patched), rust 1.63.0, nixpkgs 22.05 (32-bit builds are ↵ | Alex Auvolat | 2022-10-14 | 1 | -5/+32 |
| | | | | broken) | ||||
* | Configure structopt to report the right versionv0.7.2_ci-test-2bug/reported-version | Quentin Dufour | 2022-08-11 | 1 | -4/+4 |
| | | | | | | | | | | 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. | ||||
* | Run clippy in nix, leveraging nix caching ability | Quentin Dufour | 2022-07-26 | 1 | -8/+9 |
| | |||||
* | Refactor default.nix to follow Nix Flakes patterns | Quentin Dufour | 2022-07-26 | 1 | -139/+22 |
| | |||||
* | Fix: compile aarch64+armv6 as static binaries | Quentin Dufour | 2022-07-26 | 1 | -27/+29 |
| | |||||
* | Fix garage_version() now that GIT_VERSION is read in crate garage_rpcv0.7.2.1 | Alex Auvolat | 2022-06-02 | 1 | -1/+1 |
| | |||||
* | Compile kuberetes-discovery only when release=truev0.7.0-rc1 | Quentin Dufour | 2022-03-24 | 1 | -0/+22 |
| | |||||
* | Force static builds for all platformsci/static | Quentin Dufour | 2022-02-24 | 1 | -28/+58 |
| | |||||
* | Add integration tests to Drone | Quentin Dufour | 2022-02-10 | 1 | -19/+28 |
| | |||||
* | tests: Fix garage integration test | Jill | 2022-02-10 | 1 | -1/+1 |
| | |||||
* | Support STREAMING-AWS4-HMAC-SHA256-PAYLOAD (#64) (#156) | Jill | 2022-01-17 | 1 | -1/+1 |
| | | | | | | | | Closes #64. Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/156 Co-authored-by: Jill <kokakiwi@deuxfleurs.fr> Co-committed-by: Jill <kokakiwi@deuxfleurs.fr> | ||||
* | Implement ListMultipartUploads (#171) | Quentin | 2022-01-12 | 1 | -0/+20 |
| | | | | | | | | | | | | | | | | | | | | | | | Implement ListMultipartUploads, also refactor ListObjects and ListObjectsV2. It took me some times as I wanted to propose the following things: - Using an iterator instead of the loop+goto pattern. I find it easier to read and it should enable some optimizations. For example, when consuming keys of a common prefix, we do many [redundant checks](https://git.deuxfleurs.fr/Deuxfleurs/garage/src/branch/main/src/api/s3_list.rs#L125-L156) while the only thing to do is to [check if the following key is still part of the common prefix](https://git.deuxfleurs.fr/Deuxfleurs/garage/src/branch/feature/s3-multipart-compat/src/api/s3_list.rs#L476). - Try to name things (see ExtractionResult and RangeBegin enums) and to separate concerns (see ListQuery and Accumulator) - An IO closure to make unit tests possibles. - Unit tests, to track regressions and document how to interact with the code - Integration tests with `s3api`. In the future, I would like to move them in Rust with the aws rust SDK. Merging of the logic of ListMultipartUploads and ListObjects was not a goal but a consequence of the previous modifications. Some points that we might want to discuss: - ListObjectsV1, when using pagination and delimiters, has a weird behavior (it lists multiple times the same prefix) with `aws s3api` due to the fact that it can not use our optimization to skip the whole prefix. It is independant from my refactor and can be tested with the commented `s3api` tests in `test-smoke.sh`. It probably has the same weird behavior on the official AWS S3 implementation. - Considering ListMultipartUploads, I had to "abuse" upload id marker to support prefix skipping. I send an `upload-id-marker` with the hardcoded value `include` to emulate your "including" token. - Some ways to test ListMultipartUploads with existing software (my tests are limited to s3api for now). Co-authored-by: Quentin Dufour <quentin@deuxfleurs.fr> Reviewed-on: https://git.deuxfleurs.fr/Deuxfleurs/garage/pulls/171 Co-authored-by: Quentin <quentin@dufour.io> Co-committed-by: Quentin <quentin@dufour.io> | ||||
* | Hopefully fix Nix build | Alex Auvolat | 2022-01-04 | 1 | -1/+1 |
| | |||||
* | Use Rust binaries from Nix instead of rustup | Quentin Dufour | 2021-10-29 | 1 | -11/+2 |
| | |||||
* | Improve CLI, adapt tests, update documentation | Alex Auvolat | 2021-10-25 | 1 | -1/+1 |
| | |||||
* | Build Garage with Nixfeature/static | Quentin Dufour | 2021-10-19 | 1 | -0/+75 |