]> granicus.if.org Git - postgresql/commitdiff
Add pause_at_recovery_target to recovery.conf.sample; improve docs.
authorRobert Haas <rhaas@postgresql.org>
Thu, 17 Mar 2011 18:02:41 +0000 (14:02 -0400)
committerRobert Haas <rhaas@postgresql.org>
Thu, 17 Mar 2011 18:04:11 +0000 (14:04 -0400)
Fujii Masao, but with the proposed behavior change reverted, and the
rest adjusted accordingly.

doc/src/sgml/recovery-config.sgml
src/backend/access/transam/recovery.conf.sample

index e9e95acb8dc62ce821350459d28251ee3ba23d3e..7f515dc0117189d26c3ad857b2d4e71e7b21dbd5 100644 (file)
@@ -261,7 +261,7 @@ restore_command = 'copy "C:\\server\\archivedir\\%f" "%p"'  # Windows
       <listitem>
        <para>
         Specifies whether recovery should pause when the recovery target
-        is reached. The default is true, if a recovery target is set.
+        is reached. The default is true.
         This is intended to allow queries to be executed against the
         database to check if this recovery target is the most desirable
         point for recovery. The paused state can be resumed by using
@@ -272,6 +272,10 @@ restore_command = 'copy "C:\\server\\archivedir\\%f" "%p"'  # Windows
         recovery target settings to a later target and restart to
         continue recovery.
        </para>
+       <para>
+        This setting has no effect if <xref linkend="guc-hot-standby"> is not
+        enabled, or if no recovery target is set.
+       </para>
       </listitem>
      </varlistentry>
 
index 0243b51fdf973be12e707a214968bf8f4bf41e61..229c749f17708ff20c5fdc1348b51fe9e28ecd1b 100644 (file)
 #
 #recovery_target_timeline = 'latest'
 #
+#
+# If pause_at_recovery_target is enabled, recovery will pause when
+# the recovery target is reached. The pause state will continue until
+# pg_xlog_replay_resume() is called. This setting has no effect if
+# hot standby is not enabled, or if no recovery target is set.
+#
+#pause_at_recovery_target = true
+#
 #---------------------------------------------------------------------------
 # STANDBY SERVER PARAMETERS
 #---------------------------------------------------------------------------