Add section about file read concurrency

This commit is contained in:
Alexander Neumann 2018-04-28 22:39:56 +02:00
parent 56e394ac33
commit 6d4c40f8d0
1 changed files with 4 additions and 0 deletions

View File

@ -25,6 +25,10 @@ once (which prints a bit more detail what restic is doing) or twice (which
prints a line for each file/directory restic encountered, together with some
statistics).
Another issue that was resolved is the new code only reads two files at most.
The old code would read way too many files in parallel, thereby slowing down
the backup process on spinning discs a lot.
https://github.com/restic/restic/issues/549
https://github.com/restic/restic/issues/1286
https://github.com/restic/restic/issues/446