Merge pull request #3593 from DarkKirb/parallelize-restic-copy

Parallelize blob upload/download for restic copy
This commit is contained in:
MichaelEischer
2021-12-29 22:31:54 +01:00
committed by GitHub
2 changed files with 42 additions and 18 deletions

View File

@@ -0,0 +1,9 @@
Enhancement: Improve restic copy performance by parallelizing IO
Restic copy previously only used a single thread for copying blobs between
repositories, which resulted in limited performance when copying small blobs
to/from a high latency backend (i.e. any remote backend, especially b2).
Copying will now use 8 parallel threads to increase the throughput of the copy
operation.
https://github.com/restic/restic/pull/3593