From: Bruce Momjian Date: Mon, 26 Nov 2012 22:36:21 +0000 (-0500) Subject: Remove inaccurate "Incrementally Updated Backups" documentation section; X-Git-Tag: REL8_3_22~12 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8b812177752f01fa2a1fdf59e438e82d832750e1;p=postgresql Remove inaccurate "Incrementally Updated Backups" documentation section; already removed from 9.0+. Applied to 8.3 and 8.4. --- diff --git a/doc/src/sgml/backup.sgml b/doc/src/sgml/backup.sgml index 1bcbf6e0ae..bedfe3a903 100644 --- a/doc/src/sgml/backup.sgml +++ b/doc/src/sgml/backup.sgml @@ -1803,46 +1803,6 @@ if (!triggered) - - Incrementally Updated Backups - - - incrementally updated backups - - - - change accumulation - - - - In a warm standby configuration, it is possible to offload the expense of - taking periodic base backups from the primary server; instead base backups - can be made by backing - up a standby server's files. This concept is generally known as - incrementally updated backups, log change accumulation, or more simply, - change accumulation. - - - - If we take a backup of the standby server's data directory while it is processing - logs shipped from the primary, we will be able to reload that data and - restart the standby's recovery process from the last restart point. - We no longer need to keep WAL files from before the restart point. - If we need to recover, it will be faster to recover from the incrementally - updated backup than from the original base backup. - - - - Since the standby server is not live, it is not possible to - use pg_start_backup() and pg_stop_backup() - to manage the backup process; it will be up to you to determine how - far back you need to keep WAL segment files to have a recoverable - backup. You can do this by running pg_controldata - on the standby server to inspect the control file and determine the - current checkpoint WAL location, or by using the - log_restartpoints option to print values to the server log. - -