diff options
author | Bruce Momjian <bruce@momjian.us> | 2008-04-09 02:52:04 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2008-04-09 02:52:04 +0000 |
commit | d44523638a08a9c5aa049a836dda25e350e80b06 (patch) | |
tree | 70b14ae0dfc200a0d51476ceda340c1d26da0e58 | |
parent | 2662e03b64f5740b5aa4e02ed5bb30ebfc03c397 (diff) | |
download | postgresql-d44523638a08a9c5aa049a836dda25e350e80b06.tar.gz postgresql-d44523638a08a9c5aa049a836dda25e350e80b06.zip |
Document that continuous archiving backup can be used for cases where
you can't get a simultaneous snapshot.
-rw-r--r-- | doc/src/sgml/backup.sgml | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/doc/src/sgml/backup.sgml b/doc/src/sgml/backup.sgml index 2697edf86e3..29642fe81d9 100644 --- a/doc/src/sgml/backup.sgml +++ b/doc/src/sgml/backup.sgml @@ -1,4 +1,4 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/backup.sgml,v 2.117 2008/04/05 01:34:05 momjian Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/backup.sgml,v 2.118 2008/04/09 02:52:04 momjian Exp $ --> <chapter id="backup"> <title>Backup and Restore</title> @@ -386,9 +386,17 @@ tar -cf backup.tar /usr/local/pgsql/data not be possible to use snapshot backup because the snapshots <emphasis>must</> be simultaneous. Read your file system documentation very carefully before trusting - to the consistent-snapshot technique in such situations. The safest - approach is to shut down the database server for long enough to - establish all the frozen snapshots. + to the consistent-snapshot technique in such situations. + </para> + + <para> + If simultaneous snapshots are not possible, one option is to shut down + the database server long enough to establish all the frozen snapshots. + Another option is perform a continuous archiving base backup (<xref + linkend="backup-base-backup">) because such backups are immune to file + system changes during the backup. This requires enabling continuous + archiving just during the backup process; restore is done using + continuous archive recovery (<xref linkend="backup-pitr-recovery">). </para> <para> |