mirror of
https://github.com/borgbackup/borg.git
synced 2025-02-24 07:01:59 +00:00
better document borg check --max-duration, fixes #4473
This commit is contained in:
parent
85b010af5d
commit
8b6184f1b3
1 changed files with 11 additions and 0 deletions
|
@ -2701,6 +2701,7 @@ def define_archive_filters_group(subparser, *, sort_by=True, first_last=True):
|
|||
- If you use a remote repo server via ssh:, the repo check is executed on the
|
||||
repo server without causing significant network traffic.
|
||||
- The repository check can be skipped using the ``--archives-only`` option.
|
||||
- A repository check can be time consuming. Partial checks are possible with the ``--max-duration`` option.
|
||||
|
||||
Second, the consistency and correctness of the archive metadata is verified:
|
||||
|
||||
|
@ -2724,6 +2725,16 @@ def define_archive_filters_group(subparser, *, sort_by=True, first_last=True):
|
|||
- The archive checks can be time consuming, they can be skipped using the
|
||||
``--repository-only`` option.
|
||||
|
||||
The ``--max-duration`` option can be used to split a long-running repository check into multiple partial checks.
|
||||
After the given number of seconds the check is interrupted. The next partial check will continue where the
|
||||
previous one stopped, until the complete repository has been checked. Example: Assuming a full check took 7
|
||||
hours, then running a daily check with --max-duration=3600 (1 hour) would result in one full check per week.
|
||||
|
||||
Attention: Partial checks can only do way less checks than a full check (only the CRC32 checks on segment file
|
||||
entries are done) and cannot be combined with ``--repair``. Partial checks may therefore be useful only with very
|
||||
large repositories where a full check would take too long. Doing a full repository check aborts a partial check;
|
||||
the next partial check will start from the beginning.
|
||||
|
||||
The ``--verify-data`` option will perform a full integrity verification (as opposed to
|
||||
checking the CRC32 of the segment) of data, which means reading the data from the
|
||||
repository, decrypting and decompressing it. This is a cryptographic verification,
|
||||
|
|
Loading…
Reference in a new issue