Re: pg_archivecleanup should remove WAL files also in pg_xlog?

From: Fujii Masao <masao(dot)fujii(at)gmail(dot)com>
To: PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: pg_archivecleanup should remove WAL files also in pg_xlog?
Date: 2010-12-13 07:06:26
Message-ID: AANLkTin5X2XZV+pJsAZNQw-dUY=1K7eQ07t0hCvXMGAr@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On Mon, Dec 13, 2010 at 3:44 PM, Fujii Masao <masao(dot)fujii(at)gmail(dot)com> wrote:
> pg_archivecleanup removes unnecessary WAL files from the archive, but not
> from pg_xlog directory. So, after failover, those WAL files might
> exist in pg_xlog
> and be archived again later. Re-archiving of unnecessary WAL files seems odd
> to me. To avoid this problem, how about changing pg_archivecleanup so that
> it removes WAL files also in pg_xlog or creates .done file in
> archive_status when
> removing them from the archive?

Well, we can avoid this problem by specifying pg_xlog directory instead of
the archive in recovery_end_command:

recovery_end_command = 'pg_archivecleanup pg_xlog %r'

Though this sounds like somewhat bad know-how..

Regards,

--
Fujii Masao
NIPPON TELEGRAPH AND TELEPHONE CORPORATION
NTT Open Source Software Center

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Pavel Stehule 2010-12-13 07:23:59 Re: proposal: auxiliary functions for record type
Previous Message Fujii Masao 2010-12-13 06:44:13 pg_archivecleanup should remove WAL files also in pg_xlog?