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
8515efa1
Commit
8515efa1
authored
20 years ago
by
Tom Lane
Browse files
Options
Downloads
Patches
Plain Diff
Add some notes about unimplemented aspects of PITR backup/recovery.
parent
576856b6
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/src/sgml/backup.sgml
+30
-1
30 additions, 1 deletion
doc/src/sgml/backup.sgml
with
30 additions
and
1 deletion
doc/src/sgml/backup.sgml
+
30
−
1
View file @
8515efa1
<!--
$PostgreSQL: pgsql/doc/src/sgml/backup.sgml,v 2.4
1
2004/08/0
3 23:42:5
9 tgl Exp $
$PostgreSQL: pgsql/doc/src/sgml/backup.sgml,v 2.4
2
2004/08/0
4 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">
...
...
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