2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-15 15:22:22 +00:00
restic/changelog/0.14.0_2022-08-25/issue-3114

13 lines
523 B
Plaintext
Raw Normal View History

Enhancement: Optimize handling of duplicate blobs in `prune`
Restic `prune` always used to repack all data files containing duplicate
blobs. This effectively removed all duplicates during prune. However, as a
consequence all these data files were repacked even if the unused repository
space threshold could be reached with less work.
2021-02-19 15:57:51 +00:00
2022-08-23 23:21:01 +00:00
This is now changed and `prune` works nice and fast even when there are lots
of duplicate blobs.
2021-02-19 15:57:51 +00:00
https://github.com/restic/restic/issues/3114
https://github.com/restic/restic/pull/3290