borg check --verify-data
performance suggestions?
#8658
-
I'd like to verify my backups with It appears that In this case, I'm primarily concerned about the data integrity of the most recent archive and of the repository. Would adding the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
borg check does 2 things (see docs for more details):
The low-level check will always take the same time. The high-level metadata check depends on the archives count checked, because each archive is checked separately. The high-level "--verify-data" content data check does not depend on the amount of archives, because it uses |
Beta Was this translation helpful? Give feedback.
borg check does 2 things (see docs for more details):
The low-level check will always take the same time.
The high-level metadata check depends on the archives count checked, because each archive is checked separately.
The high-level "--verify-data" content data check does not depend on the amount of archives, because it uses
Repository.scan()
to look at each chunk only once, in the order as the chunks are found in the segm…