2022-03-25 23:15:41 +00:00
|
|
|
Enhancement: Improve `copy` performance by parallelizing IO
|
2021-12-14 09:33:24 +00:00
|
|
|
|
|
|
|
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).
|
2022-03-25 23:15:41 +00:00
|
|
|
|
2021-12-14 09:33:24 +00:00
|
|
|
Copying will now use 8 parallel threads to increase the throughput of the copy
|
|
|
|
operation.
|
|
|
|
|
|
|
|
https://github.com/restic/restic/pull/3593
|