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
43e9bab9
Commit
43e9bab9
authored
Mar 03, 2006
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename Online Backup to Continuous Archiving.
parent
bf8337b8
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
16 deletions
+17
-16
doc/src/sgml/backup.sgml
doc/src/sgml/backup.sgml
+11
-10
doc/src/sgml/config.sgml
doc/src/sgml/config.sgml
+2
-2
doc/src/sgml/func.sgml
doc/src/sgml/func.sgml
+2
-2
doc/src/sgml/wal.sgml
doc/src/sgml/wal.sgml
+2
-2
No files found.
doc/src/sgml/backup.sgml
View file @
43e9bab9
<!--
$PostgreSQL: pgsql/doc/src/sgml/backup.sgml,v 2.7
7 2006/02/24 14:03:01
momjian Exp $
$PostgreSQL: pgsql/doc/src/sgml/backup.sgml,v 2.7
8 2006/03/03 22:02:07
momjian Exp $
-->
<chapter id="backup">
<title>Backup and Restore</title>
...
...
@@ -19,7 +19,7 @@ $PostgreSQL: pgsql/doc/src/sgml/backup.sgml,v 2.77 2006/02/24 14:03:01 momjian E
<itemizedlist>
<listitem><para><acronym>SQL</> dump</para></listitem>
<listitem><para>File system level backup</para></listitem>
<listitem><para>
On-line backup
</para></listitem>
<listitem><para>
Continuous Archiving
</para></listitem>
</itemizedlist>
Each has its own strengths and weaknesses.
</para>
...
...
@@ -372,11 +372,11 @@ tar -cf backup.tar /usr/local/pgsql/data
</para>
</sect1>
<sect1 id="
backup-online
">
<title>
On-line backup and point-in-time r
ecovery (PITR)</title>
<sect1 id="
continuous-archiving
">
<title>
Continuous Archiving and Point-In-Time R
ecovery (PITR)</title>
<indexterm zone="backup">
<primary>
on-line backup
</primary>
<primary>
continuous archiving
</primary>
</indexterm>
<indexterm zone="backup">
...
...
@@ -452,7 +452,8 @@ tar -cf backup.tar /usr/local/pgsql/data
</para>
<para>
To recover successfully using an on-line backup, you need a continuous
To recover successfully using continuous archiving (also called "online
backup" by many database vendors), you need a continuous
sequence of archived WAL files that extends back at least as far as the
start time of your backup. So to get started, you should set up and test
your procedure for archiving WAL files <emphasis>before</> you take your
...
...
@@ -783,12 +784,12 @@ SELECT pg_stop_backup();
<function>pg_start_backup</> or <function>pg_stop_backup</>, and
you will therefore be left to your own devices to keep track of which
backup dump is which and how far back the associated WAL files go.
It is generally better to follow the
on-line backup
procedure above.
It is generally better to follow the
continuous archiving
procedure above.
</para>
</sect2>
<sect2 id="backup-pitr-recovery">
<title>Recovering
with an On-lin
e Backup</title>
<title>Recovering
using a Continuous Archiv
e Backup</title>
<para>
Okay, the worst has happened and you need to recover from your backup.
...
...
@@ -1120,11 +1121,11 @@ restore_command = 'copy /mnt/server/archivedir/%f "%p"' # Windows
</para>
</sect2>
<sect2 id="
backup-online
-caveats">
<sect2 id="
continuous-archiving
-caveats">
<title>Caveats</title>
<para>
At this writing, there are several limitations of the
on-line backup
At this writing, there are several limitations of the
continuous archiving
technique. These will probably be fixed in future releases:
<itemizedlist>
...
...
doc/src/sgml/config.sgml
View file @
43e9bab9
<!--
$PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.4
7 2006/02/05 18:19:14
momjian Exp $
$PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.4
8 2006/03/03 22:02:07
momjian Exp $
-->
<chapter Id="runtime-config">
<title>Server Configuration</title>
...
...
@@ -1387,7 +1387,7 @@ SET ENABLE_SEQSCAN TO OFF;
<para>
Turning off this parameter does not affect use of
WAL archiving for point-in-time recovery (PITR)
(see <xref linkend="
backup-online
">).
(see <xref linkend="
continuous-archiving
">).
</para>
<para>
...
...
doc/src/sgml/func.sgml
View file @
43e9bab9
<!--
$PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.30
7 2006/02/18 16:15:21 petere
Exp $
$PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.30
8 2006/03/03 22:02:07 momjian
Exp $
PostgreSQL documentation
-->
...
...
@@ -9808,7 +9808,7 @@ SELECT set_config('log_statement_stats', 'off', false);
<para>
For details about proper usage of these functions, see
<xref linkend="
backup-online
">.
<xref linkend="
continuous-archiving
">.
</para>
<para>
...
...
doc/src/sgml/wal.sgml
View file @
43e9bab9
<!-- $PostgreSQL: pgsql/doc/src/sgml/wal.sgml,v 1.3
8 2005/11/04 23:14:02 petere
Exp $ -->
<!-- $PostgreSQL: pgsql/doc/src/sgml/wal.sgml,v 1.3
9 2006/03/03 22:02:08 momjian
Exp $ -->
<chapter id="wal">
<title>Reliability and the Write-Ahead Log</title>
...
...
@@ -136,7 +136,7 @@
<para>
<acronym>WAL</acronym> also makes it possible to support on-line
backup and point-in-time recovery, as described in <xref
linkend="
backup-online
">. By archiving the WAL data we can support
linkend="
continuous-archiving
">. By archiving the WAL data we can support
reverting to any time instant covered by the available WAL data:
we simply install a prior physical backup of the database, and
replay the WAL log just as far as the desired time. What's more,
...
...
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