1
0
mirror of https://github.com/pgbackrest/pgbackrest.git synced 2025-01-30 05:39:12 +02:00

Docs for checksum option being removed.

This commit is contained in:
David Steele 2015-03-01 16:43:54 -05:00
parent 76391dde90
commit 83658a4778
2 changed files with 4 additions and 9 deletions

View File

@ -220,11 +220,11 @@ The backup set to be restored. `latest` will restore the latest backup, otherwi
##### delta
By default the database base and tablespace directories are expected to be present but empty. This option performs a delta restore using checksums if available and timestamp/size when checksums are not available.
By default the database base and tablespace directories are expected to be present but empty. This option performs a delta restore using checksums.
##### force
By itself this option forces the database base and tablespace paths to be completely overwritten. In combination with `--delta` a timestamp/size delta will be performed even if checksums are available.
By itself this option forces the database base and tablespace paths to be completely overwritten. In combination with `--delta` a timestamp/size delta will be performed instead of using checksums.
#### recovery options
@ -379,13 +379,6 @@ Enable gzip compression. Files stored in the backup are compatible with command
default: y
example: compress=n
```
##### checksum
Enable SHA-1 checksums. Backup checksums are stored in backup.manifest while archive checksums are stored in the filename.
```
default: y
example: checksum=n
```
##### start-fast
Forces an immediate checkpoint (by passing true to the fast parameter of pg_start_backup()) so the backup begins immediately.

View File

@ -39,6 +39,8 @@ Primary PgBackRest features:
* Link (called latest) always points to the last backup. This has been added for convenience and to make restore simpler.
* De/compression is now performed without threads and checksum/size are calculated in stream. That means file checksums are not longer optional.
* Checksum for backup.manifest to detect corrupted/modified manifest.
### v0.30: core restructuring and unit tests