Re: Automatic adjustment of bgwriter_lru_maxpages

From: daveg <daveg(at)sonic(dot)net>
To: Greg Smith <gsmith(at)gregsmith(dot)com>
Cc: pgsql-patches(at)postgresql(dot)org
Subject: Re: Automatic adjustment of bgwriter_lru_maxpages
Date: 2007-05-15 04:55:16
Message-ID: 20070515045516.GE2359@sonic.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers pgsql-patches pgsql-performance

On Mon, May 14, 2007 at 11:19:23PM -0400, Greg Smith wrote:
> On Mon, 14 May 2007, Tom Lane wrote:
>
> >If you can write something like that, why do we need the parameter at all?
>
> Couple of reasons:
>
> -As I already mentioned in my last message, I think it's unwise to let the
> LRU writes go completely unbounded. I still think there should be a
> maximum, and if there is one it should be tunable. You can get into
> situations where the only way to get the LRU writer to work at all is to
> set the % to scan fairly high, but that exposes you to way more writes
> than you might want per interval in situations where buffers to write are
> easy to find.
>
> -There is considerable coupling between how the LRU and the all background
> writers work. There are workloads where the LRU writer is relatively
> ineffective, and only the all one really works well. If there is a
> limiter on the writes from the all writer, but not on the LRU, admins may
> not be able to get the balance between the two they want. I know I
> wouldn't.
>
> -Just because I can advise what is generally the right move, that doesn't
> mean it's always the right one. Someone may notice that the maximum pages
> written limit is being nailed and not care.
>
> The last system I really got deep into the background writer mechanics on,
> it could be very effective at improving performance and reducing
> checkpoint spikes under low to medium loads. But under heavy load, it
> just got in the way of the individual backends running, which was
> absolutely necessary in order to execute the LRU mechanics (usage_count--)
> so less important buffers could be kicked out. I would like people to
> still be able to set a tuning such that the background writers were useful
> under average loads, but didn't ever try to do too much. It's much more
> difficult to do that if bgwriter_lru_maxpages goes away.
>
> I realized recently the task I should take on here is to run some more
> experiments with the latest code and pass along suggested techniques for
> producing/identifying the kind of problem conditions I've run into in the
> past; then we can see if other people can reproduce them. I got a new
> 8-core server I need to thrash anyway and will try and do just that
> starting tomorrow.
>
> For all I know my concerns are strictly a rare edge case. But since the
> final adjustments to things like whether there is an upper limit or not
> are very small patches compared to what's already been done here, I sent
> in what I thought was ready to go because I didn't want to hold up
> reviewing the bulk of the code over some of these fine details.

Apologies for asking this on the wrong list, but it is at least the right
thread.

What is the current thinking on bg_writer setttings for systems such as
4 core Opteron with 16GB or 32GB of memory and heavy batch workloads?

-dg

--
David Gould daveg(at)sonic(dot)net
If simplicity worked, the world would be overrun with insects.

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Dave Page 2007-05-15 07:58:38 Re: What is happening on buildfarm member baiji?
Previous Message daveg 2007-05-15 04:51:17 Re: Concurrent psql patch

Browse pgsql-patches by date

  From Date Subject
Next Message Heikki Linnakangas 2007-05-15 12:45:03 Re: Automatic adjustment of bgwriter_lru_maxpages
Previous Message daveg 2007-05-15 04:51:17 Re: Concurrent psql patch

Browse pgsql-performance by date

  From Date Subject
Next Message Tarhon-Onu Victor 2007-05-15 09:17:17 Re: 500 requests per second
Previous Message Greg Smith 2007-05-15 03:19:23 Re: Automatic adjustment of bgwriter_lru_maxpages