Index: doc/src/sgml/backup.sgml =================================================================== RCS file: /home/sriggs/pg/REPOSITORY/pgsql/doc/src/sgml/backup.sgml,v retrieving revision 2.107 diff -c -r2.107 backup.sgml *** doc/src/sgml/backup.sgml 16 Oct 2007 19:44:18 -0000 2.107 --- doc/src/sgml/backup.sgml 28 Nov 2007 12:58:27 -0000 *************** *** 641,650 **** Also, you can force a segment switch manually with pg_switch_xlog, if you want to ensure that a ! just-finished transaction is archived immediately. Other utility functions related to WAL management are listed in . --- 641,660 ---- Also, you can force a segment switch manually with pg_switch_xlog, if you want to ensure that a ! just-finished transaction is archived as soon as possible. Other utility functions related to WAL management are listed in . + + + When archive_mode is off certain SQL operations are optimized + to avoid writing WAL, as described in . If + archiving were enabled during execution of one of these statements then it + would be possible to write data that would not then be part of any + concurrent backup because the WAL for those changes had been optimized away. + So it is possible to alter archive_command with a reload, but + archive_mode cannot be changed except at server start. + *************** *** 973,986 **** Normally, recovery will proceed through all available WAL segments, thereby restoring the database to the current point in time (or as ! close as we can get given the available WAL segments). But if you want ! to recover to some previous point in time (say, right before the junior ! DBA dropped your main transaction table), just specify the required ! stopping point in recovery.conf. You can specify the stop ! point, known as the recovery target, either by date/time or ! by completion of a specific transaction ID. As of this writing only ! the date/time option is very usable, since there are no tools to help ! you identify with any accuracy which transaction ID to use. --- 983,1006 ---- Normally, recovery will proceed through all available WAL segments, thereby restoring the database to the current point in time (or as ! close as we can get given the available WAL segments). So a normal ! recovery will end with a "file not found" message, the exact text ! of the error message depending upon your choice of ! restore_command. You may also see an error message ! at the start of recovery for a file named something like ! 00000001.history. This is also normal and does not ! indicate a problem in simple recovery situations. See ! for discussion. ! ! ! ! If you want to recover to some previous point in time (say, right before ! the junior DBA dropped your main transaction table), just specify the ! required stopping point in recovery.conf. You can specify ! the stop point, known as the recovery target, either by ! date/time or by completion of a specific transaction ID. As of this ! writing only the date/time option is very usable, since there are no tools ! to help you identify with any accuracy which transaction ID to use. *************** *** 1214,1219 **** --- 1234,1324 ---- + + Tips and Examples + + + Some examples of configuring Continuous Archiving are given here. + + + + Recovery Settings + + + It is possible to use the existing backup facilities to produce + standalone hot backups. These are backups that cannot be used for + Point in Time Recovery, yet are much faster to backup and restore + than pg_dump. + + + + To configure standalone backups you should use a switch file. If the + file exists then archives are made, otherwise archiving is ignored. + + archive_command = 'test -f /var/lib/pgsql/backup_in_progress && cp -i %p /var/lib/pgsql/archive/%f </dev/null' + + Backup can then be taken using a script like the following: + + touch /var/lib/pgsql/backup_in_progress + psql -c "select pg_start_backup('hot_backup');" + tar -cvf /var/lib/pgsql/backup.tar /var/lib/pgsql/data/ + psql -c "select pg_stop_backup();" + sleep 20 + rm /var/lib/pgsql/backup_in_progress + tar -rvf /var/lib/pgsql/backup.tar /var/lib/pgsql/archive/ + + The switch file /var/lib/pgsql/backup_in_progress is created + first, allowing archiving to start prior to the backup. After the + backup the switch file is removed. Archived WAL files are then added + into the archive so that both Base Backup and all required WAL files + are part of the same tar file. + + + + + <varname>archive_command</varname> scripts + + + Many people choose to use scripts to define their + archive_command, so that their + postgresql.conf looks very simple: + + archive_command = 'local_backup_script.sh' + + This allows all complexity to be managed within the script, which could + be written in a popular scripting language such as bash or perl etc.. + Statements echoed to stderr will appear in the database server log, + allowing complex configurations to be easily diagnosed if they should fail. + + + Example of how scripts might be used include + + + + Copying data to a secure off-site data storage provider. + + + + + Batching WAL files so they are transferred every 3 hours, rather than + one at a time as they fill. + + + + + Interfaces with other Backup and Recovery software. + + + + + Interfaces with monitoring software to report errors directly. + + + + + + + Caveats *************** *** 1435,1441 **** Pseudocode for a suitable restore_command is: triggered = false; ! while (!NextWALFileReady() && !triggered) { sleep(100000L); /* wait for ~0.1 sec */ if (CheckForExternalTrigger()) --- 1540,1546 ---- Pseudocode for a suitable restore_command is: triggered = false; ! while (!NextWALFileReady() && !triggered) { sleep(100000L); /* wait for ~0.1 sec */ if (CheckForExternalTrigger())