From: Bruce Momjian Date: Mon, 9 Apr 2012 18:12:04 +0000 (-0400) Subject: Remove documentation mention of pglesslog, which was added in 2009 X-Git-Tag: REL9_2_BETA1~159 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8213624fc95574c9bdd60cadd10ccd180df95217;p=postgresql Remove documentation mention of pglesslog, which was added in 2009 because there was only a beta for 9.0 and it does not compile on 9.1. --- diff --git a/doc/src/sgml/backup.sgml b/doc/src/sgml/backup.sgml index 4227b666f4..bd7e42d0bb 100644 --- a/doc/src/sgml/backup.sgml +++ b/doc/src/sgml/backup.sgml @@ -1246,22 +1246,6 @@ tar -rf /var/lib/pgsql/backup.tar /var/lib/pgsql/archive/ Please remember to add error handling to your backup scripts. - - If archive storage size is a concern, use pg_compresslog, - , to - remove unnecessary and trailing - space from the WAL files. You can then use - gzip to further compress the output of - pg_compresslog: - -archive_command = 'pg_compresslog %p - | gzip > /var/lib/pgsql/archive/%f' - - You will then need to use gunzip and - pg_decompresslog during recovery: - -restore_command = 'gunzip < /mnt/server/archivedir/%f | pg_decompresslog - %p' - -