Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 43e9bab

Browse files
committed
Rename Online Backup to Continuous Archiving.
1 parent bf8337b commit 43e9bab

File tree

4 files changed

+17
-16
lines changed

4 files changed

+17
-16
lines changed

doc/src/sgml/backup.sgml

+11-10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$PostgreSQL: pgsql/doc/src/sgml/backup.sgml,v 2.77 2006/02/24 14:03:01 momjian Exp $
2+
$PostgreSQL: pgsql/doc/src/sgml/backup.sgml,v 2.78 2006/03/03 22:02:07 momjian Exp $
33
-->
44
<chapter id="backup">
55
<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
1919
<itemizedlist>
2020
<listitem><para><acronym>SQL</> dump</para></listitem>
2121
<listitem><para>File system level backup</para></listitem>
22-
<listitem><para>On-line backup</para></listitem>
22+
<listitem><para>Continuous Archiving</para></listitem>
2323
</itemizedlist>
2424
Each has its own strengths and weaknesses.
2525
</para>
@@ -372,11 +372,11 @@ tar -cf backup.tar /usr/local/pgsql/data
372372
</para>
373373
</sect1>
374374

375-
<sect1 id="backup-online">
376-
<title>On-line backup and point-in-time recovery (PITR)</title>
375+
<sect1 id="continuous-archiving">
376+
<title>Continuous Archiving and Point-In-Time Recovery (PITR)</title>
377377

378378
<indexterm zone="backup">
379-
<primary>on-line backup</primary>
379+
<primary>continuous archiving</primary>
380380
</indexterm>
381381

382382
<indexterm zone="backup">
@@ -452,7 +452,8 @@ tar -cf backup.tar /usr/local/pgsql/data
452452
</para>
453453

454454
<para>
455-
To recover successfully using an on-line backup, you need a continuous
455+
To recover successfully using continuous archiving (also called "online
456+
backup" by many database vendors), you need a continuous
456457
sequence of archived WAL files that extends back at least as far as the
457458
start time of your backup. So to get started, you should set up and test
458459
your procedure for archiving WAL files <emphasis>before</> you take your
@@ -783,12 +784,12 @@ SELECT pg_stop_backup();
783784
<function>pg_start_backup</> or <function>pg_stop_backup</>, and
784785
you will therefore be left to your own devices to keep track of which
785786
backup dump is which and how far back the associated WAL files go.
786-
It is generally better to follow the on-line backup procedure above.
787+
It is generally better to follow the continuous archiving procedure above.
787788
</para>
788789
</sect2>
789790

790791
<sect2 id="backup-pitr-recovery">
791-
<title>Recovering with an On-line Backup</title>
792+
<title>Recovering using a Continuous Archive Backup</title>
792793

793794
<para>
794795
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
11201121
</para>
11211122
</sect2>
11221123

1123-
<sect2 id="backup-online-caveats">
1124+
<sect2 id="continuous-archiving-caveats">
11241125
<title>Caveats</title>
11251126

11261127
<para>
1127-
At this writing, there are several limitations of the on-line backup
1128+
At this writing, there are several limitations of the continuous archiving
11281129
technique. These will probably be fixed in future releases:
11291130

11301131
<itemizedlist>

doc/src/sgml/config.sgml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.47 2006/02/05 18:19:14 momjian Exp $
2+
$PostgreSQL: pgsql/doc/src/sgml/config.sgml,v 1.48 2006/03/03 22:02:07 momjian Exp $
33
-->
44
<chapter Id="runtime-config">
55
<title>Server Configuration</title>
@@ -1387,7 +1387,7 @@ SET ENABLE_SEQSCAN TO OFF;
13871387
<para>
13881388
Turning off this parameter does not affect use of
13891389
WAL archiving for point-in-time recovery (PITR)
1390-
(see <xref linkend="backup-online">).
1390+
(see <xref linkend="continuous-archiving">).
13911391
</para>
13921392

13931393
<para>

doc/src/sgml/func.sgml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
$PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.307 2006/02/18 16:15:21 petere Exp $
2+
$PostgreSQL: pgsql/doc/src/sgml/func.sgml,v 1.308 2006/03/03 22:02:07 momjian Exp $
33
PostgreSQL documentation
44
-->
55

@@ -9808,7 +9808,7 @@ SELECT set_config('log_statement_stats', 'off', false);
98089808

98099809
<para>
98109810
For details about proper usage of these functions, see
9811-
<xref linkend="backup-online">.
9811+
<xref linkend="continuous-archiving">.
98129812
</para>
98139813

98149814
<para>

doc/src/sgml/wal.sgml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- $PostgreSQL: pgsql/doc/src/sgml/wal.sgml,v 1.38 2005/11/04 23:14:02 petere Exp $ -->
1+
<!-- $PostgreSQL: pgsql/doc/src/sgml/wal.sgml,v 1.39 2006/03/03 22:02:08 momjian Exp $ -->
22

33
<chapter id="wal">
44
<title>Reliability and the Write-Ahead Log</title>
@@ -136,7 +136,7 @@
136136
<para>
137137
<acronym>WAL</acronym> also makes it possible to support on-line
138138
backup and point-in-time recovery, as described in <xref
139-
linkend="backup-online">. By archiving the WAL data we can support
139+
linkend="continuous-archiving">. By archiving the WAL data we can support
140140
reverting to any time instant covered by the available WAL data:
141141
we simply install a prior physical backup of the database, and
142142
replay the WAL log just as far as the desired time. What's more,

0 commit comments

Comments
 (0)