Re: Stuck trying to backup large database - best practice? - Mailing list pgsql-general

From Antony Gelberg
Subject Re: Stuck trying to backup large database - best practice?
Date
Msg-id CADbCqvEeEo7XNNChyVhyzu6U7ye3uPVoJYb6PC0zkmej3D=8fQ@mail.gmail.com
Whole thread Raw
In response to Re: Stuck trying to backup large database - best practice?  (Adrian Klaver <adrian.klaver@aklaver.com>)
Responses Re: Stuck trying to backup large database - best practice?  (Joseph Kregloh <jkregloh@sproutloud.com>)
Re: Stuck trying to backup large database - best practice?  (Adrian Klaver <adrian.klaver@aklaver.com>)
List pgsql-general
On Mon, Jan 12, 2015 at 7:08 PM, Adrian Klaver
<adrian.klaver@aklaver.com> wrote:
>
> On 01/12/2015 08:40 AM, Antony Gelberg wrote:
>>
>> On Mon, Jan 12, 2015 at 6:23 PM, Adrian Klaver
>> <adrian.klaver@aklaver.com> wrote:
>>>
>>> On 01/12/2015 08:10 AM, Antony Gelberg wrote:
>>>>
>>>> On Mon, Jan 12, 2015 at 5:31 PM, Adrian Klaver
>>>> <adrian.klaver@aklaver.com> wrote:
>>> pg_basebackup has additional features which in your case are creating
>>> issues. pg_dump on the other hand is pretty much a straight forward data
>>> dump and if you use -Fc you get compression.
>>
>>
>> So I should clarify - we want to be able to get back to the same point
>> as we would once the WAL was applied.  If we were to use pg_dump,
>> would we lose out in any way?
>
>
> pg_dump does not save WALs, so it would not work for that purpose.
>
>  Appreciate insight as to how
>>
>> pg_basebackup is scuppering things.
>
>
> From original post it is not entirely clear whether you are using the -X or -x options. The command you show does not
havethem, but you mention -Xs. In any case it seems wal_keep_segments will need to be bumped up to keep WAL segments
aroundthat are being recycled during the backup process. How much will depend on a determination of fast Postgres is
using/recyclinglog segments?  Looking at the turnover in the pg_xlog directory would be a start. 

The original script used -xs, but that didn't make sense, so we used
-Xs in the end, but then we cancelled the backup as we assumed that we
wouldn't have enough space for it uncompressed.  Did we miss
something?

I think your suggestion of looking in pg_xlog and tweaking
wal_keep_segments is interesting, we'll take a look, and I'll report
back with findings.

Thanks for your very detailed help.

Antony


pgsql-general by date:

Previous
From: Joe Van Dyk
Date:
Subject: Re: How to analyze a slowdown in 9.3.5?
Next
From: Joseph Kregloh
Date:
Subject: Re: Stuck trying to backup large database - best practice?