Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Bump to version 1.0.1v1.0.1rel-v1.0.1 | Alex Auvolat | 2024-09-22 | 1 | -1/+1 |
| | |||||
* | add rpc_public_addr_subnet config option | Florian Klink | 2024-06-05 | 1 | -0/+4 |
| | | | | | | | | | | In case `rpc_public_addr` is not set, but autodiscovery is used, this allows filtering the list of automatically discovered IPs to a specific subnet. For example, if nodes should pick *their* IP inside a specific subnet, but you don't want to explicitly write the IP down (as it's dynamic, or you want to share configs across nodes), you can use this option. | ||||
* | [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 | -0/+11 |
|\ | |||||
| * | [fix-buffering] implement `block_ram_buffer_max` to avoid excessive RAM usage | Alex Auvolat | 2024-03-27 | 1 | -0/+11 |
| | | |||||
* | | [s3-checksum] implement x-amz-checksum-* headers | Alex Auvolat | 2024-03-26 | 2 | -62/+0 |
| | | |||||
* | | [block-ref-repair] Block refcount recalculation and repair | Alex Auvolat | 2024-03-19 | 2 | -0/+38 |
| | | | | | | | | | | | | | | | | | | | | - 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 | 1 | -0/+8 |
|\| | |||||
| * | [db-snapshot] implement meta_auto_snapshot_interval | Alex Auvolat | 2024-03-15 | 1 | -0/+4 |
| | | |||||
| * | [disable-scrub] implement a `disable_scrub` configuration option | Alex Auvolat | 2024-03-14 | 1 | -0/+4 |
| | | |||||
| * | [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 |
| | | |||||
* | | [rm-sled] Remove the Sled database engine | Alex Auvolat | 2024-03-08 | 1 | -18/+1 |
| | | |||||
* | | ReplicationMode -> ConsistencyMode+ReplicationFactor | Yureka | 2024-03-07 | 1 | -7/+20 |
| | | |||||
* | | Merge branch 'main' into next-0.10 | Alex Auvolat | 2024-02-20 | 1 | -0/+3 |
|\| | |||||
| * | [networking-fixes] add option to bind outgoing RPC sockets (fix #638) | Alex Auvolat | 2024-02-19 | 1 | -0/+3 |
| | | | | | | | | Thanks to yuka for the original patch. | ||||
* | | Merge branch 'main' into next-0.10 | Alex Auvolat | 2024-02-15 | 3 | -9/+8 |
|\| | |||||
| * | [import-netapp] import Netapp code into Garage codebase | Alex Auvolat | 2024-02-15 | 3 | -9/+8 |
| | | |||||
* | | Merge branch 'main' into next-0.10 | Alex Auvolat | 2024-02-13 | 2 | -178/+47 |
|\| | |||||
| * | [fix-secrets-695] config: replace String by PathBuf for *_filefix-secrets-695 | Alex Auvolat | 2024-02-12 | 1 | -3/+3 |
| | | |||||
| * | [dep-upgrade-202402] refactor dependencies: move all as workspace deps | Alex Auvolat | 2024-02-05 | 1 | -32/+32 |
| | | |||||
| * | Bump version to 0.9.1v0.9.1rel-v0.9.1 | Alex Auvolat | 2024-01-16 | 1 | -1/+1 |
| | | |||||
| * | Merge tag 'v0.8.5' into sync-08-09 | Alex Auvolat | 2024-01-16 | 1 | -143/+12 |
| |\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Garage v0.8.5 This minor release includes the following improvements and fixes: New features: - Configuration: make LMDB's `map_size` configurable and make `block_size` and `sled_cache_capacity` expressable as strings (such as `10M`) (#628, #630) - Add support for binding to Unix sockets for the S3, K2V, Admin and Web API servers (#640) - Move the `convert_db` command into the main Garage binary (#645) - Add support for specifying RPC secret and admin tokens as environment variables (#643) - Add `allow_world_readable_secrets` option to config file (#663, #685) Bug fixes: - Use `statvfs` instead of mount list to determine free space in metadata/data directories (#611, #631) - Add missing casts to fix 32-bit build (#632) - Fix error when none of the HTTP servers (S3/K2V/Admin/Web) is started and fix shutdown hang (#613, #633) - Add missing CORS headers to PostObject response (#609, #656) - Monitoring: finer histogram boundaries in Prometheus exported metrics (#531, #686) Other: - Documentation improvements (#641) | ||||
| | * | Bump version to 0.8.5 | Alex Auvolat | 2024-01-16 | 1 | -1/+1 |
| | | | |||||
| | * | config: refactor secret sourcing | Alex Auvolat | 2024-01-15 | 1 | -213/+7 |
| | | | |||||
| | * | Add allow_world_readable_secrets option to config file | Félix Baylac Jacqué | 2023-10-26 | 1 | -5/+77 |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Sometimes, the secret files permissions checks gets in the way. It's by no mean complete, it doesn't take the Posix ACLs into account among other things. Correctly checking the ACLs would be too involving (see https://git.deuxfleurs.fr/Deuxfleurs/garage/issues/658#issuecomment-7102) and would likely still fail in some weird chmod settings. We're adding a new configuration file key allowing the user to disable this permission check altogether. The (already existing) env variable counterpart always take precedence to this config file option. That's useful in cases where the configuration file is static and cannot be easily altered. Fixes https://git.deuxfleurs.fr/Deuxfleurs/garage/issues/658 Co-authored-by: Florian Klink <flokli@flokli.de> | ||||
| | * | util: move reading secret file into seperate helper | networkException | 2023-10-19 | 1 | -16/+19 |
| | | | | | | | | | | | | | | | | | | this patch moves the logic to read a secret file (and check for correct permissions) from `secret_from_file` into a new `read_secret_file` helper. | ||||
* | | | bump crate versions to 0.10.0v0.10.0-beta1 | Alex Auvolat | 2024-01-11 | 1 | -1/+1 |
| | | | |||||
* | | | rpc: fix write set quorums | Alex Auvolat | 2023-11-15 | 1 | -3/+4 |
|/ / | |||||
* | | bump version to v0.9.0v0.9.0next | Alex Auvolat | 2023-10-10 | 1 | -1/+1 |
| | | |||||
* | | Merge branch 'main' into nextv0.9.0-rc1 | Alex Auvolat | 2023-10-03 | 3 | -4/+50 |
|\| | |||||
| * | config: allow using paths for unix domain sockets in various places | networkException | 2023-09-29 | 1 | -4/+5 |
| | | | | | | | | | | | | | | this patch updates the config format to also allow paths in bind addresses for unix domain sockets. this has been added to all apis except rpc. | ||||
| * | util: add helper sum type for unix and tcp socket addresses | networkException | 2023-09-29 | 2 | -0/+45 |
| | | | | | | | | | | this patch introduces a new sum type that can represent either a tcp socket address or a unix domain socket path. | ||||
* | | actually update rmp-serde to 1.1.2 for both garage and netapp dependency ↵v0.9.0-beta4 | Alex Auvolat | 2023-09-27 | 1 | -2/+2 |
| | | | | | | | | (fix #629) | ||||
* | | Merge branch 'main' into next | Alex Auvolat | 2023-09-11 | 2 | -6/+60 |
|\| | |||||
| * | config: make block_size and sled_cache_capacity expressable as strings | Alex Auvolat | 2023-09-11 | 2 | -8/+58 |
| | | |||||
| * | make lmdb's map_size configurable (fix #628) | Alex Auvolat | 2023-09-11 | 1 | -0/+4 |
| | | |||||
* | | Merge branch 'main' into next | Alex Auvolat | 2023-09-11 | 1 | -2/+2 |
|\| | |||||
| * | update version to 0.8.4v0.8.4hold-netapp-0.5.2 | Alex Auvolat | 2023-09-05 | 1 | -1/+1 |
| | | |||||
* | | block manager: skeleton for multi-hdd support | Alex Auvolat | 2023-09-06 | 1 | -1/+21 |
| | | |||||
* | | Merge branch 'main' into nextv0.9.0-beta1 | Alex Auvolat | 2023-08-29 | 2 | -3/+3 |
|\| | |||||
| * | bump version to 0.8.3v0.8.3-rc1 | Alex Auvolat | 2023-08-28 | 1 | -1/+1 |
| | | |||||
| * | src/util: fix typo | Florian Klink | 2023-07-14 | 1 | -1/+1 |
| | | |||||
* | | Merge branch 'main' into next | Alex Auvolat | 2023-06-13 | 4 | -37/+23 |
|\| | |||||
| * | set default for [consul-services] api | Roberto Hidalgo | 2023-05-22 | 1 | -0/+1 |
| | | |||||
| * | simplify code according to feedback | Roberto Hidalgo | 2023-05-22 | 1 | -10/+5 |
| | | |||||
| * | rename mode to consul_http_api | Roberto Hidalgo | 2023-05-22 | 1 | -8/+8 |
| | | |||||
| * | follow feedback, fold into existing feature | Roberto Hidalgo | 2023-05-22 | 1 | -20/+19 |
| | | |||||
| * | allow additional ServiceMeta, docs | Roberto Hidalgo | 2023-05-22 | 1 | -0/+3 |
| | | |||||
| * | register consul services against local agent instead of catalog api | Roberto Hidalgo | 2023-05-22 | 1 | -2/+23 |
| | |