2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-01 16:40:50 +00:00
restic/changelog/0.14.0_2022-08-25/issue-2291

13 lines
490 B
Plaintext
Raw Permalink Normal View History

2022-07-02 21:45:13 +00:00
Enhancement: Allow pack size customization
2022-08-23 23:21:01 +00:00
Restic now uses a target pack size of 16 MiB by default. This can be customized
2022-07-02 21:52:02 +00:00
using the `--pack-size size` option. Supported pack sizes range between 4 and
2022-07-02 21:45:13 +00:00
128 MiB.
It is possible to migrate an existing repository to _larger_ pack files using
`prune --repack-small`. This will rewrite every pack file which is
significantly smaller than the target size.
https://github.com/restic/restic/issues/2291
https://github.com/restic/restic/pull/3731