Re: wal_init_zero / wal_recycle

From: Alvaro Herrera <alvherre(at)alvh(dot)no-ip(dot)org>
To: Peter Eisentraut <peter(at)eisentraut(dot)org>
Cc: Nicolas Seinlet <nicolas(at)seinlet(dot)eu>, "pgsql-docs(at)lists(dot)postgresql(dot)org" <pgsql-docs(at)lists(dot)postgresql(dot)org>
Subject: Re: wal_init_zero / wal_recycle
Date: 2024-04-25 08:25:49
Message-ID: 202404250825.uotokqhaopxu@alvherre.pgsql
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-docs

On 2024-Apr-24, Peter Eisentraut wrote:

> On 24.04.24 10:08, Nicolas Seinlet wrote:

> > It was not crystal clear to me that when wal_recycle is also ON , the
> > recycled files are not filled with zeroes, because they are not
> > considered as new. Could we add a sentence stating this?
>
> It currently says:
>
> wal_init_zero: "... causes new WAL files to be filled with zeroes ..."
>
> wal_recycle: "... avoiding the need to create new ones ..."
>
> I'm not sure where exactly to make that more clear.

It may be too subtle. Maybe we could add a note at the end:

wal_init_zero (boolean)

If set to on (the default), this option causes new WAL files to be filled with
zeroes. On some file systems, this ensures that space is allocated before we
need to write WAL records. However, Copy-On-Write (COW) file systems may not
benefit from this technique, so the option is given to skip the unnecessary
work. If set to off, only the final byte is written when the file is created so
that it has the expected size. >>Note that recycled WAL files are for these
purposes not considered new.<<

--
Álvaro Herrera PostgreSQL Developer — https://www.EnterpriseDB.com/
"Pero la cosa no es muy grave ..." (le petit Nicolas -- René Goscinny)

In response to

Browse pgsql-docs by date

  From Date Subject
Next Message Alvaro Herrera 2024-04-25 09:24:32 Re: nested <a> tags in glossary entries in html docs
Previous Message Daniel Gustafsson 2024-04-24 11:27:19 Re: The prompt is not displayed correctly in the example on psql page