diff options
author | Robert Haas <rhaas@postgresql.org> | 2024-04-18 09:52:19 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2024-04-18 09:52:19 -0400 |
commit | 2e2d4604d94318a304d350aee478bda91a521339 (patch) | |
tree | d0596ff7fc8b09324d3944cc58b7949ff29f167a /doc/src | |
parent | d9f686a72ee91f6773e5d2bc52994db8d7157a8e (diff) | |
download | postgresql-2e2d4604d94318a304d350aee478bda91a521339.tar.gz postgresql-2e2d4604d94318a304d350aee478bda91a521339.zip |
docs: Mention that pg_combinebackup does not verify backups.
We don't want users to think that pg_combinebackup is trying to check
the validity of individual backups, because it isn't. Adjust the wording
about sanity checks to make it clear that verification of individual
backups is the job of pg_verifybackup, and that the checks performed
by pg_combinebackup are around the relationships between the backups.
Per discussion with David Steele.
Discussion: http://postgr.es/m/e6f930c3-590c-47b9-b094-217bb2a3e22e@pgmasters.net
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/pg_combinebackup.sgml | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/doc/src/sgml/ref/pg_combinebackup.sgml b/doc/src/sgml/ref/pg_combinebackup.sgml index 658e9a759c8..c21160a195b 100644 --- a/doc/src/sgml/ref/pg_combinebackup.sgml +++ b/doc/src/sgml/ref/pg_combinebackup.sgml @@ -45,12 +45,16 @@ PostgreSQL documentation </para> <para> - Although <application>pg_combinebackup</application> will attempt to verify + <application>pg_combinebackup</application> will attempt to verify that the backups you specify form a legal backup chain from which a correct - full backup can be reconstructed, it is not designed to help you keep track - of which backups depend on which other backups. If you remove the one or - more of the previous backups upon which your incremental - backup relies, you will not be able to restore it. + full backup can be reconstructed. However, it is not designed to help you + keep track of which backups depend on which other backups. If you remove + the one or more of the previous backups upon which your incremental + backup relies, you will not be able to restore it. Moreover, + <application>pg_combinebackup</application> only attempts to verify that the + backups have the correct relationship to each other, not that each + individual backup is intact; for that, use + <xref linkend="app-pgverifybackup" />. </para> <para> |