2
2
mirror of https://github.com/octoleo/restic.git synced 2024-06-01 16:40:50 +00:00
restic/changelog/0.14.0_2022-08-25/pull-3475

10 lines
501 B
Plaintext
Raw Normal View History

2022-08-23 23:21:01 +00:00
Enhancement: Allow limiting IO concurrency for local and SFTP backend
2022-08-23 23:21:01 +00:00
Restic did not support limiting the IO concurrency / number of connections for
accessing repositories stored using the local or SFTP backends. The number of
connections is now limited as for other backends, and can be configured via the
2023-10-27 16:56:00 +00:00
`-o local.connections=2` and `-o sftp.connections=5` options. This ensures that
restic does not overwhelm the backend with concurrent IO operations.
https://github.com/restic/restic/pull/3475