Re: checkpoints, proper config

From: Tomas Vondra <tomas(dot)vondra(at)2ndquadrant(dot)com>
To: pgsql-performance(at)postgresql(dot)org
Subject: Re: checkpoints, proper config
Date: 2015-12-10 22:40:18
Message-ID: 5669FF52.2030303@2ndquadrant.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Alvaro Herrera 2015-12-10 22:45:41 Re: checkpoints, proper config
Previous Message Joshua D. Drake 2015-12-10 21:14:02 Re: checkpoints, proper config