Re: pgsql: Allow time delayed standbys and recovery - Mailing list pgsql-committers

From Bernd Helmle
Subject Re: pgsql: Allow time delayed standbys and recovery
Date
Msg-id 0F09C6976302BC43D309B7AE@apophis.credativ.lan
Whole thread Raw
In response to pgsql: Allow time delayed standbys and recovery  (Simon Riggs <simon@2ndQuadrant.com>)
Responses Re: pgsql: Allow time delayed standbys and recovery  (Fujii Masao <masao.fujii@gmail.com>)
List pgsql-committers

--On 12. Dezember 2013 10:56:36 +0000 Simon Riggs <simon@2ndQuadrant.com>
wrote:

> Set min_recovery_apply_delay to force a delay in recovery apply for
> commit and restore point WAL records. Other records are replayed
> immediately. Delay is measured between WAL record time and local standby
> time.

There's a small typo in the first paragraph, "paramater" should be
"parameter":

diff --git a/doc/src/sgml/recovery-config.sgml
b/doc/src/sgml/recovery-config.sgml
new file mode 100644
index ee5dc86..550cdce
*** a/doc/src/sgml/recovery-config.sgml
--- b/doc/src/sgml/recovery-config.sgml
*************** restore_command = 'copy "C:\\server\\arc
*** 152,158 ****
          By default, a standby server keeps restoring WAL records from the
          primary as soon as possible. It may be useful to have a
time-delayed
          copy of the data, offering various options to correct data loss
errors.
!         This paramater allows you to delay recovery by a fixed period of
time,
          specified in milliseconds if no unit is specified.  For example,
if
          you set this parameter to <literal>5min</literal>, the standby
will
          replay each transaction commit only when the system time on the
standby
--- 152,158 ----
          By default, a standby server keeps restoring WAL records from the
          primary as soon as possible. It may be useful to have a
time-delayed
          copy of the data, offering various options to correct data loss
errors.
!         This parameter allows you to delay recovery by a fixed period of
time,
          specified in milliseconds if no unit is specified.  For example,
if
          you set this parameter to <literal>5min</literal>, the standby
will
          replay each transaction commit only when the system time on the
standby

--
Thanks

    Bernd


pgsql-committers by date:

Previous
From: Peter Eisentraut
Date:
Subject: pgsql: Upgrade to Autoconf 2.69
Next
From: Fujii Masao
Date:
Subject: pgsql: Fix typo in docs for min_recovery_apply_delay.