Re: checkpoints, proper config - Mailing list pgsql-performance

From Tomas Vondra
Subject Re: checkpoints, proper config
Date
Msg-id 5669FF52.2030303@2ndquadrant.com
Whole thread Raw
In response to Re: checkpoints, proper config  ("Joshua D. Drake" <jd@commandprompt.com>)
Responses Re: checkpoints, proper config
List pgsql-performance
On 12/10/2015 06:20 PM, Joshua D. Drake wrote:
> On 12/10/2015 01:12 AM, Tory M Blue wrote:
>
>> checkpoint_timeout = 5min
>>
>> checkpoint_completion_target = 0.9
>>
>
> The above is your problem. Make checkpoint_timeout = 1h . Also,
> considering turning synchronous_commit off.

I doubt that. The report mentioned that the checkpoints happen 0.027...
minutes apart (assuming the minutes_between_checkpoints is computed in a
sane way). That's way below 5 minutes, so the checkpoints have to be
triggered by something else - probably by running out of segments, but
we don't know the value before Tory increased it to 150.

Also, recommending synchronous_commit=off is a bit silly, because not
only it introduces data loss issues, but it'll likely cause even more
frequent checkpoints.

Tory, please enable logging of checkpoints (log_checkpoints=on). Also, I
don't think it makes much sense to set

    (checkpoint_warning > checkpoint_timeout)

as it kinda defeats the whole purpose of the warning.

regards

--
Tomas Vondra                  http://www.2ndQuadrant.com
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services


pgsql-performance by date:

Previous
From: "Joshua D. Drake"
Date:
Subject: Re: checkpoints, proper config
Next
From: Alvaro Herrera
Date:
Subject: Re: checkpoints, proper config