aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>2010-02-27 09:29:20 +0000
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>2010-02-27 09:29:20 +0000
commit7ab9305cc917181e04ed3f933003ee563872e212 (patch)
tree23642dc514fdb438dff741c4439665fe5bf0c4d0
parent4ec700a8ec2104b887747c26622b819f83557127 (diff)
downloadpostgresql-7ab9305cc917181e04ed3f933003ee563872e212.tar.gz
postgresql-7ab9305cc917181e04ed3f933003ee563872e212.zip
Document max_standby_delay=-1 option, now that it's allowed again.
-rw-r--r--doc/src/sgml/config.sgml7
-rw-r--r--doc/src/sgml/high-availability.sgml7
2 files changed, 8 insertions, 6 deletions
diff --git a/doc/src/sgml/config.sgml b/doc/src/sgml/config.sgml
index 5b78da305a9..d38f496cd7c 100644
--- a/doc/src/sgml/config.sgml
+++ b/doc/src/sgml/config.sgml
@@ -1,4 +1,4 @@
-<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.254 2010/02/25 19:20:38 momjian Exp $ -->
+<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.255 2010/02/27 09:29:20 heikki Exp $ -->
<chapter Id="runtime-config">
<title>Server Configuration</title>
@@ -1868,9 +1868,8 @@ archive_command = 'copy "%p" "C:\\server\\archivedir\\%f"' # Windows
described in <xref linkend="hot-standby-conflict">. Typically,
this parameter makes sense only during replication, so when
performing an archive recovery to recover from data loss a very high
- parameter setting is recommended. The default is 30 seconds.
- There is no wait-forever setting because of the potential for deadlock
- which that setting would introduce.
+ parameter setting or -1 which means wait forever is recommended.
+ The default is 30 seconds.
This parameter can only be set in the <filename>postgresql.conf</>
file or on the server command line.
</para>
diff --git a/doc/src/sgml/high-availability.sgml b/doc/src/sgml/high-availability.sgml
index a949ff348f6..dc42d22f3ab 100644
--- a/doc/src/sgml/high-availability.sgml
+++ b/doc/src/sgml/high-availability.sgml
@@ -1,4 +1,4 @@
-<!-- $PostgreSQL: pgsql/doc/src/sgml/high-availability.sgml,v 1.51 2010/02/25 09:16:42 heikki Exp $ -->
+<!-- $PostgreSQL: pgsql/doc/src/sgml/high-availability.sgml,v 1.52 2010/02/27 09:29:20 heikki Exp $ -->
<chapter id="high-availability">
<title>High Availability, Load Balancing, and Replication</title>
@@ -1521,7 +1521,10 @@ LOG: database system is ready to accept read only connections
<varname>max_standby_delay</> or even set it to zero, though that is a
very aggressive setting. If the standby server is tasked as an additional
server for decision support queries then it might be acceptable to set this
- to a value of many hours (in seconds).
+ to a value of many hours (in seconds). It is also possible to set
+ <varname>max_standby_delay</> to -1 which means wait forever for queries
+ to complete, if there are conflicts; this will be useful when performing
+ an archive recovery from a backup.
</para>
<para>