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
a9f72b40
Commit
a9f72b40
authored
14 years ago
by
Robert Haas
Browse files
Options
Downloads
Patches
Plain Diff
Improve recovery.conf.sample comments.
Jehan-Guillaume de Rorthais, with some additional wordsmithing by me.
parent
a755ea33
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/backend/access/transam/recovery.conf.sample
+17
-11
17 additions, 11 deletions
src/backend/access/transam/recovery.conf.sample
with
17 additions
and
11 deletions
src/backend/access/transam/recovery.conf.sample
+
17
−
11
View file @
a9f72b40
...
...
@@ -3,8 +3,8 @@
# -------------------------------
#
# Edit this file to provide the parameters that PostgreSQL needs to
# perform an archive recovery of a database, or to act as a
log-streaming
#
replication
standby.
# perform an archive recovery of a database, or to act as a
replication
# standby.
#
# If "recovery.conf" is present in the PostgreSQL data directory, it is
# read on postmaster startup. After successful recovery, it is renamed
...
...
@@ -88,21 +88,27 @@
# STANDBY SERVER PARAMETERS
#---------------------------------------------------------------------------
#
# When standby_mode is enabled, the PostgreSQL server will work as
# a standby. It tries to connect to the primary according to the
# connection settings primary_conninfo, and receives XLOG records
# continuously.
# standby_mode
#
# When standby_mode is enabled, the PostgreSQL server will work as a
# standby. It will continuously wait for the additional XLOG records, using
# restore_command and/or primary_conninfo.
#
#standby_mode = off
#
# primary_conninfo
#
# If set, the PostgreSQL server will try to connect to the primary using this
# connection string and receive XLOG records continuously.
#
#primary_conninfo = '' # e.g. 'host=localhost port=5432'
#
#
# By default, a standby server keeps
stream
ing XLOG records from the
# primary indefinitely. If you want to stop
streaming and
finish recovery
,
# open
ing up
the system in read/write mode, specify path to a trigger file.
#
S
erver will poll the trigger file path periodically and st
op streaming
# when it's found.
# By default, a standby server keeps
restor
ing XLOG records from the
# primary indefinitely. If you want to stop
the standby mode,
finish recovery
#
and
open the system in read/write mode, specify path to a trigger file.
#
The s
erver will poll the trigger file path periodically and st
art as a
#
primary server
when it's found.
#
#trigger_file = ''
#
...
...
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