Re: Estimating wal_keep_size

From: "Dean Gibson (DB Administrator)" <postgresql(at)mailpen(dot)com>
To: pgsql-performance(at)lists(dot)postgresql(dot)org
Subject: Re: Estimating wal_keep_size
Date: 2021-06-18 18:13:14
Message-ID: 0df7b2f6-411a-6d9b-873d-6150fcfcc2f4@mailpen.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

On 2021-06-16 18:02, Julien Rouhaud wrote:
> On Wed, Jun 16, 2021 at 05:36:24PM -0700, Dean Gibson (DB Administrator) wrote:
>> Is this reasonable thinking?
>>
>> I'd think that one would want a *wal_keep_size* to cover the pending updates while the standby server might be unavailable, however long one might anticipate that would be.
> It's usually a better approach to use a replication slot, to keep all the required WAL files, and only when needed. See https://www.postgresql.org/docs/current/warm-standby.html#STREAMING-REPLICATION-SLOTS for more details.
>
> Note that a replication slot will keep all WAL files, which might eventually lead to an outage if the standby doesn't come back before the filesystem containing the logs get full. You can cap the maximum amount of retained WAL files since pg 13 using max_slot_wal_keep_size, see
> https://www.postgresql.org/docs/current/runtime-config-replication.html#GUC-MAX-SLOT-WAL-KEEP-SIZE.

Granted, but the same question arises about the value for
max_slot_wal_keep_size.  Setting either too low risks data loss, &
setting either too high results in unnecessary disk space used.  The
question was, is the estimated VALUE reasonable under the circumstances?

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Julien Rouhaud 2021-06-18 18:27:44 Re: Estimating wal_keep_size
Previous Message Michael Paquier 2021-06-17 01:02:52 Re: PostgreSQL V13 Replication Issue