diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-08-04 17:37:09 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-08-04 17:37:09 +0000 |
commit | 8515efa128ccc415ebbf9144082ee2ce836733d9 (patch) | |
tree | 2b9bed9de98492ea5308150cb7b04b53f8bef5e6 | |
parent | 576856b698c2c5b920592c1663b148a38ce09361 (diff) | |
download | postgresql-8515efa128ccc415ebbf9144082ee2ce836733d9.tar.gz postgresql-8515efa128ccc415ebbf9144082ee2ce836733d9.zip |
Add some notes about unimplemented aspects of PITR backup/recovery.
-rw-r--r-- | doc/src/sgml/backup.sgml | 31 |
1 files changed, 30 insertions, 1 deletions
diff --git a/doc/src/sgml/backup.sgml b/doc/src/sgml/backup.sgml index 3b45ec17def..49b3afa4f73 100644 --- a/doc/src/sgml/backup.sgml +++ b/doc/src/sgml/backup.sgml @@ -1,5 +1,5 @@ <!-- -$PostgreSQL: pgsql/doc/src/sgml/backup.sgml,v 2.41 2004/08/03 23:42:59 tgl Exp $ +$PostgreSQL: pgsql/doc/src/sgml/backup.sgml,v 2.42 2004/08/04 17:37:09 tgl Exp $ --> <chapter id="backup"> <title>Backup and Restore</title> @@ -891,6 +891,35 @@ restore_command = 'cp /mnt/server/archivedir/%f %p' timelines that branched off earlier than the base backup. </para> </sect2> + + <sect2 id="backup-online-caveats"> + <title>Caveats</title> + + <para> + At this writing, there are several limitations of the on-line backup + technique. These will probably be fixed in future releases. + + <itemizedlist> + <listitem> + <para> + The effects of <command>CREATE DATABASE</>, <command>DROP DATABASE</>, + <command>CREATE TABLESPACE</>, and <command>DROP TABLESPACE</> are + not fully reflected in the WAL log. It is recommended that you take + a new base backup after performing one of these operations. + </para> + </listitem> + <listitem> + <para> + Operations on non-btree indexes (hash, R-tree, and GiST indexes) are + not presently WAL-logged, so replay will not update these index types. + The recommended workaround, if you use any non-btree indexes, is to + manually <command>REINDEX</> each such index after completing a + recovery operation. + </para> + </listitem> + </itemizedlist> + </para> + </sect2> </sect1> <sect1 id="migration"> |