Re: XLogArchivingActive

From: Andreas Pflug <pgadmin(at)pse-consulting(dot)de>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: XLogArchivingActive
Date: 2006-05-25 16:24:27
Message-ID: 4475DA3B.90708@pse-consulting.de
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Tom Lane wrote:
> Andreas Pflug <pgadmin(at)pse-consulting(dot)de> writes:
>
>>Tom Lane wrote:
>>
>>>This is silly. Why not just turn archiving on and off?
>
>
>>Not quite. I want online backup, but no archiving. Currently, I have to
>>edit postgresql.conf and SIGHUP to "turn on archiving" configuring a
>>(hopefully) writable directory, do the backup, edit postgresql.conf and
>>SIGHUP again. Not too convenient...
>
>
> You don't get to count the edit/SIGHUP steps, because those would be the
> same for any other GUC.

That's right, but my proposal would implicitely switch on archiving
while backup is in progress, thus explicitely enabling/disabling
archiving wouldn't be necessary.
>
> AFAICS you could get the effect by setting up an archive_command script
> sleep 100
> exit 1
> so that the archiver will do nothing.

Doesn't WAL expect the WAL files already archived to be recyclable, so
they could get overwritten in the pg_xlog dir while backup is running?
Additionally, the doc recommends omitting pg_xlog from the file level
backup, so a restart would need the archived wal files, no?

>
> BTW, I don't actually understand why you want this at all. If you're
> not going to keep a continuing series of WAL files, you don't have any
> PITR capability. What you're proposing seems like a bulky, unportable,
> hard-to-use equivalent of pg_dump. Why not use pg_dump?

Because pg_dump will take too long and create bloated dump files. All I
need is a physical backup for disaster recovery purposes without
bringing down the server.

In my case, I'd expect a DB that uses 114GB on disk to consume 1.4TB
when pg_dumped, too much for the available backup capacity (esp.
compared to net content, about 290GB). See other post "inefficient bytea
escaping" for details.

Regards,
Andreas

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Bruce Momjian 2006-05-25 16:48:22 Re: Gborg and pgfoundry
Previous Message Andreas Pflug 2006-05-25 16:16:52 Inefficient bytea escaping?