diff options
author | Fujii Masao | 2018-06-26 15:45:21 +0000 |
---|---|---|
committer | Fujii Masao | 2018-06-26 15:45:21 +0000 |
commit | bbbbc2f8f3f7d628c74317959a2cfe71fea05575 (patch) | |
tree | d346d5166cb8d74d1992e506db7b43c5c3edbdbb | |
parent | 7d872c91a3f9d49b56117557cdbb0c3d4c620687 (diff) |
Fix documentation bug related to backup history file.
The backup history file has been no longer necessary for recovery
since the version 9.0. It's now basically just for informational purpose.
But previously the documentations still described that a recovery
requests the backup history file to proceed. The commit fixes this
documentation bug.
Back-patch to all supported versions.
Author: Yugo Nagata
Reviewed-by: Kyotaro Horiguchi
Discussion: https://postgr.es/m/[email protected]
-rw-r--r-- | doc/src/sgml/backup.sgml | 2 | ||||
-rw-r--r-- | doc/src/sgml/high-availability.sgml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/backup.sgml b/doc/src/sgml/backup.sgml index 982776ca0a..3fa5efdd78 100644 --- a/doc/src/sgml/backup.sgml +++ b/doc/src/sgml/backup.sgml @@ -1288,7 +1288,7 @@ restore_command = 'cp /mnt/server/archivedir/%f %p' <para> Not all of the requested files will be WAL segment files; you should also expect requests for files with a suffix of - <literal>.backup</literal> or <literal>.history</literal>. Also be aware that + <literal>.history</literal>. Also be aware that the base name of the <literal>%p</literal> path will be different from <literal>%f</literal>; do not expect them to be interchangeable. </para> diff --git a/doc/src/sgml/high-availability.sgml b/doc/src/sgml/high-availability.sgml index 46bf198a2a..934eb9052d 100644 --- a/doc/src/sgml/high-availability.sgml +++ b/doc/src/sgml/high-availability.sgml @@ -1524,7 +1524,7 @@ synchronous_standby_names = 'ANY 2 (s1, s2, s3)' processing would request a file from the WAL archive, reporting failure if the file was unavailable. For standby processing it is normal for the next WAL file to be unavailable, so the standby must wait for - it to appear. For files ending in <literal>.backup</literal> or + it to appear. For files ending in <literal>.history</literal> there is no need to wait, and a non-zero return code must be returned. A waiting <varname>restore_command</varname> can be written as a custom script that loops after polling for the existence of |