2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-01 00:20:48 +00:00
restic/changelog/0.14.0_2022-08-25/pull-3484

14 lines
566 B
Plaintext
Raw Normal View History

2022-08-23 23:21:01 +00:00
Enhancement: Stream data in `check` and `prune` commands
2022-04-23 09:43:45 +00:00
2022-08-23 23:21:01 +00:00
The commands `check --read-data` and `prune` previously downloaded data files
into temporary files which could end up being written to disk. This could cause
a large amount of data being written to disk.
The pack files are now instead streamed, which removes the need for temporary
files. Please note that *uploads* during `backup` and `prune` still require
temporary files.
2022-04-23 09:43:45 +00:00
https://github.com/restic/restic/pull/3484
https://github.com/restic/restic/issues/3710
https://github.com/restic/restic/pull/3717