diff options
author | Bruce Momjian <bruce@momjian.us> | 2012-04-09 14:12:04 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2012-04-09 14:12:38 -0400 |
commit | 8213624fc95574c9bdd60cadd10ccd180df95217 (patch) | |
tree | 50ca1584ae3c07efa8f0826a4fbe1d61cfa0377d /doc/src | |
parent | 65fd91333e45114c5d9a07d3d4f6a4786df48768 (diff) | |
download | postgresql-8213624fc95574c9bdd60cadd10ccd180df95217.tar.gz postgresql-8213624fc95574c9bdd60cadd10ccd180df95217.zip |
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.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/backup.sgml | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/doc/src/sgml/backup.sgml b/doc/src/sgml/backup.sgml index 4227b666f42..bd7e42d0bbb 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. </para> - <para> - If archive storage size is a concern, use <application>pg_compresslog</>, - <ulink url="http://pglesslog.projects.postgresql.org"></ulink>, to - remove unnecessary <xref linkend="guc-full-page-writes"> and trailing - space from the WAL files. You can then use - <application>gzip</application> to further compress the output of - <application>pg_compresslog</>: -<programlisting> -archive_command = 'pg_compresslog %p - | gzip > /var/lib/pgsql/archive/%f' -</programlisting> - You will then need to use <application>gunzip</> and - <application>pg_decompresslog</> during recovery: -<programlisting> -restore_command = 'gunzip < /mnt/server/archivedir/%f | pg_decompresslog - %p' -</programlisting> - </para> </sect3> <sect3 id="backup-scripts"> |