diff --git a/doc/src/sgml/backup.sgml b/doc/src/sgml/backup.sgml new file mode 100644 index bd7e42d..0180df5 *** a/doc/src/sgml/backup.sgml --- b/doc/src/sgml/backup.sgml *************** tar -rf /var/lib/pgsql/backup.tar /var/l *** 1246,1251 **** --- 1246,1262 ---- Please remember to add error handling to your backup scripts. + + If archive storage size is a concern, you can use + gzip to compress the archive files: + + archive_command = 'gzip < %p > /var/lib/pgsql/archive/%f' + + You will then need to use gunzip during recovery: + + restore_command = 'gunzip < /mnt/server/archivedir/%f > %p' + +