Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
8515efa1
Commit
8515efa1
authored
Aug 04, 2004
by
Tom Lane
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add some notes about unimplemented aspects of PITR backup/recovery.
parent
576856b6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
1 deletion
+30
-1
doc/src/sgml/backup.sgml
doc/src/sgml/backup.sgml
+30
-1
No files found.
doc/src/sgml/backup.sgml
View file @
8515efa1
<!--
$PostgreSQL: pgsql/doc/src/sgml/backup.sgml,v 2.4
1 2004/08/03 23:42:5
9 tgl Exp $
$PostgreSQL: pgsql/doc/src/sgml/backup.sgml,v 2.4
2 2004/08/04 17:37:0
9 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">
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment