mirror of
https://github.com/postgres/postgres.git
synced 2026-07-15 04:40:58 -04:00
Document wal_compression=on
Commit 4035cd5d4 added LZ4 compression for full-page writes in WAL, and
retained "on" as a backward-compatible way to specify the builtin PGLZ
method. Document this meaning of "on" and update postgresql.conf.sample
to make the equivalence clear.
Author: Christoph Berg <myon@debian.org>
Reviewed-by: Michael Paquier <michael@paquier.xyz>
Discussion: https://postgr.es/m/akJDHRtXwGLTppsQ@msg.df7cb.de
Backpatch-through: 15
This commit is contained in:
parent
d2980067bc
commit
225dd7ab4e
2 changed files with 2 additions and 1 deletions
|
|
@ -3187,6 +3187,7 @@ include_dir 'conf.d'
|
|||
was compiled with <option>--with-lz4</option>) and
|
||||
<literal>zstd</literal> (if <productname>PostgreSQL</productname>
|
||||
was compiled with <option>--with-zstd</option>).
|
||||
The value <literal>on</literal> is a historical spelling of <literal>pglz</literal>.
|
||||
The default value is <literal>off</literal>.
|
||||
Only superusers and users with the appropriate <literal>SET</literal>
|
||||
privilege can change this setting.
|
||||
|
|
|
|||
|
|
@ -220,7 +220,7 @@
|
|||
#wal_log_hints = off # also do full page writes of non-critical updates
|
||||
# (change requires restart)
|
||||
#wal_compression = off # enables compression of full-page writes;
|
||||
# off, pglz, lz4, zstd, or on
|
||||
# off, pglz (or "on"), lz4, or zstd
|
||||
#wal_init_zero = on # zero-fill new WAL files
|
||||
#wal_recycle = on # recycle WAL files
|
||||
#wal_buffers = -1 # min 32kB, -1 sets based on shared_buffers
|
||||
|
|
|
|||
Loading…
Reference in a new issue