From d6b3859e48984d9e7bfa9dba4597a559f2ff05c2 Mon Sep 17 00:00:00 2001 From: Alexander Weiss Date: Sun, 6 Dec 2020 05:28:15 +0100 Subject: [PATCH] Add changelog --- changelog/unreleased/pull-3130 | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 changelog/unreleased/pull-3130 diff --git a/changelog/unreleased/pull-3130 b/changelog/unreleased/pull-3130 new file mode 100644 index 000000000..9a71133a9 --- /dev/null +++ b/changelog/unreleased/pull-3130 @@ -0,0 +1,9 @@ +Enhancement: Parallelize reading of snapshots + +Restic used to read snapshots sequentially. For repositories containing +many snapshots this slowed down commands which have to read all snapshots. +Now the reading of snapshots is parallelized. This speeds up for example +`prune`, `backup` and other commands that search for snapshots with certain +properties or which have to find the `latest` snapshot. + +https://github.com/restic/restic/pull/3130