Merge pull request #2970 from labkode/fopenskip

Skip fopen for file change check to avoid network penalty
This commit is contained in:
MichaelEischer
2020-10-09 11:43:54 +02:00
committed by GitHub
2 changed files with 33 additions and 24 deletions

View File

@@ -0,0 +1,9 @@
Enhancement: Optimize check for unchanged files during backup
During a backup restic skips processing files which have not changed since the last backup run.
Previously this required opening each file once which can be slow on network filesystems. The
backup command now checks for file changes before opening a file. This considerably reduces
the time to create a backup on network filesystems.
https://github.com/restic/restic/issues/2969
https://github.com/restic/restic/pull/2970