diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2007-09-26 22:36:30 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2007-09-26 22:36:30 +0000 |
commit | f18dfc48356945d684fe74abaa7d5f5033b2af46 (patch) | |
tree | b99ea3cd099a7c1225be0433d9744ed20dcc3f6a /src/backend/utils/misc/postgresql.conf.sample | |
parent | 80963144ad67263222d2de8881e0f4fbf1b50e12 (diff) | |
download | postgresql-f18dfc48356945d684fe74abaa7d5f5033b2af46.tar.gz postgresql-f18dfc48356945d684fe74abaa7d5f5033b2af46.zip |
Minor improvements in backup and recovery:
- create a separate archive_mode GUC, on which archive_command is dependent
- %r option in recovery.conf sends last restartpoint to recovery command
- %r used in pg_standby, updated README
- minor other code cleanup in pg_standby
- doc on Warm Standby now mentions pg_standby and %r
- log_restartpoints recovery option emits LOG message at each restartpoint
- end of recovery now displays last transaction end time, as requested
by Warren Little; also shown at each restartpoint
- restart archiver if needed to carry away WAL files at shutdown
Simon Riggs
Diffstat (limited to 'src/backend/utils/misc/postgresql.conf.sample')
-rw-r--r-- | src/backend/utils/misc/postgresql.conf.sample | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/backend/utils/misc/postgresql.conf.sample b/src/backend/utils/misc/postgresql.conf.sample index 8463261e5bc..48023bc4ddf 100644 --- a/src/backend/utils/misc/postgresql.conf.sample +++ b/src/backend/utils/misc/postgresql.conf.sample @@ -174,6 +174,8 @@ # - Archiving - +#archive_mode = off # allows archiving to be done + # (change requires restart) #archive_command = '' # command to use to archive a logfile segment #archive_timeout = 0 # force a logfile segment switch after this # many seconds; 0 is off |