Re: PATCH: Exclude unlogged tables from base backups

From: David Steele <david(at)pgmasters(dot)net>
To: Andres Freund <andres(at)anarazel(dot)de>
Cc: PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: PATCH: Exclude unlogged tables from base backups
Date: 2017-12-12 23:04:44
Message-ID: 5e428ad7-f37f-6479-aabf-2c8b9318fb79@pgmasters.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Hi Andres,

On 12/12/17 5:52 PM, Andres Freund wrote:
> On 2017-12-12 17:49:54 -0500, David Steele wrote:
>> Including unlogged relations in base backups takes up space and is wasteful
>> since they are truncated during backup recovery.
>>
>> The attached patches exclude unlogged relations from base backups except for
>> the init fork, which is required to recreate the main fork during recovery.
>
> How do you reliably identify unlogged relations while writes are going
> on? Without locks that sounds, uh, nontrivial?

I don't think this is an issue. If the init fork exists it should be OK
if it is torn since it will be recreated from WAL.

If the forks are written out of order (i.e. main before init), which is
definitely possible, then I think worst case is some files will be
backed up that don't need to be. The main fork is unlikely to be very
large at that point so it doesn't seem like a big deal.

I don't see this as any different than what happens during recovery.
The unlogged forks are cleaned / re-inited before replay starts which is
the same thing we are doing here.

>> I decided not to try and document unlogged exclusions in the continuous
>> backup documentation yet (they are noted in the protocol docs). I would
>> like to get some input on whether the community thinks this is a good idea.
>> It's a non-trivial procedure that would be easy to misunderstand and does
>> not affect the quality of the backup other than using less space. Thoughts?
>
> Think it's a good idea, I've serious concerns about practicability of a
> correct implementation though.

Well, I would be happy if you had a look!

Thanks.
--
-David
david(at)pgmasters(dot)net

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Andres Freund 2017-12-12 23:07:40 Re: PATCH: Exclude unlogged tables from base backups
Previous Message Andres Freund 2017-12-12 22:52:34 Re: PATCH: Exclude unlogged tables from base backups