Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
postgres-lambda-diff
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jakob Huber
postgres-lambda-diff
Commits
7ab9305c
Commit
7ab9305c
authored
15 years ago
by
Heikki Linnakangas
Browse files
Options
Downloads
Patches
Plain Diff
Document max_standby_delay=-1 option, now that it's allowed again.
parent
4ec700a8
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
doc/src/sgml/config.sgml
+3
-4
3 additions, 4 deletions
doc/src/sgml/config.sgml
doc/src/sgml/high-availability.sgml
+5
-2
5 additions, 2 deletions
doc/src/sgml/high-availability.sgml
with
8 additions
and
6 deletions
doc/src/sgml/config.sgml
+
3
−
4
View file @
7ab9305c
<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.25
4
2010/02/2
5 19:20:38 momjian
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.25
5
2010/02/2
7 09:29:20 heikki
Exp $ -->
<chapter Id="runtime-config">
<chapter Id="runtime-config">
<title>Server Configuration</title>
<title>Server Configuration</title>
...
@@ -1868,9 +1868,8 @@ archive_command = 'copy "%p" "C:\\server\\archivedir\\%f"' # Windows
...
@@ -1868,9 +1868,8 @@ archive_command = 'copy "%p" "C:\\server\\archivedir\\%f"' # Windows
described in <xref linkend="hot-standby-conflict">. Typically,
described in <xref linkend="hot-standby-conflict">. Typically,
this parameter makes sense only during replication, so when
this parameter makes sense only during replication, so when
performing an archive recovery to recover from data loss a very high
performing an archive recovery to recover from data loss a very high
parameter setting is recommended. The default is 30 seconds.
parameter setting or -1 which means wait forever is recommended.
There is no wait-forever setting because of the potential for deadlock
The default is 30 seconds.
which that setting would introduce.
This parameter can only be set in the <filename>postgresql.conf</>
This parameter can only be set in the <filename>postgresql.conf</>
file or on the server command line.
file or on the server command line.
</para>
</para>
...
...
This diff is collapsed.
Click to expand it.
doc/src/sgml/high-availability.sgml
+
5
−
2
View file @
7ab9305c
<!-- $PostgreSQL: pgsql/doc/src/sgml/high-availability.sgml,v 1.5
1
2010/02/2
5
09:
16:42
heikki Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/high-availability.sgml,v 1.5
2
2010/02/2
7
09:
29:20
heikki Exp $ -->
<chapter id="high-availability">
<chapter id="high-availability">
<title>High Availability, Load Balancing, and Replication</title>
<title>High Availability, Load Balancing, and Replication</title>
...
@@ -1521,7 +1521,10 @@ LOG: database system is ready to accept read only connections
...
@@ -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
<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
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
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>
<para>
<para>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment