From 0bfda1a908edd1ca4990a330ba2dcec7260ccd02 Mon Sep 17 00:00:00 2001 From: David Steele Date: Mon, 11 Dec 2017 07:48:30 -0500 Subject: [PATCH] Document the relationship between the archive-copy and archive-check options. Suggested by Markus Nullmeier. --- doc/xml/reference.xml | 8 ++++++-- doc/xml/release.xml | 13 +++++++++++++ 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/doc/xml/reference.xml b/doc/xml/reference.xml index 7ada2b555..cb34bacd2 100644 --- a/doc/xml/reference.xml +++ b/doc/xml/reference.xml @@ -397,7 +397,9 @@ Check that WAL segments are present in the archive before backup completes. - Checks that all WAL segments required to make the backup consistent are present in the WAL archive. It's a good idea to leave this as the default unless you are using another method for archiving. + Checks that all WAL segments required to make the backup consistent are present in the WAL archive. It's a good idea to leave this as the default unless you are using another method for archiving. + + This option must be enabled if archive-copy is enabled. n @@ -408,7 +410,9 @@ This slightly paranoid option protects against corruption in the WAL segment archive by storing the WAL segments required for consistency directly in the backup. WAL segments are still stored in the archive so this option will use additional space. - On restore, the WAL segments will be present in pg_xlog/pg_wal and will use them in preference to calling the restore_command. + On restore, the WAL segments will be present in pg_xlog/pg_wal and will use them in preference to calling the restore_command. + + The archive-check option must be enabled if archive-copy is enabled. y diff --git a/doc/xml/release.xml b/doc/xml/release.xml index 1f90eded4..cf90aa3bd 100644 --- a/doc/xml/release.xml +++ b/doc/xml/release.xml @@ -79,6 +79,14 @@ + + + + + +

Document the relationship between the archive-copy and archive-check options.

+
+

Improve archive-copy reference documentation.

@@ -3842,6 +3850,11 @@ jmccormick2001 + + Markus Nullmeier + mnullmei + + Jason O'Donnell Dwaligon