Re: bgwriter changes

From: Jan Wieck <JanWieck(at)Yahoo(dot)com>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: Zeugswetter Andreas DAZ SD <ZeugswetterA(at)spardat(dot)at>, Neil Conway <neilc(at)samurai(dot)com>, PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: bgwriter changes
Date: 2004-12-15 16:59:09
Message-ID: 41C06D5D.5050608@Yahoo.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On 12/14/2004 2:40 PM, Tom Lane wrote:

> "Zeugswetter Andreas DAZ SD" <ZeugswetterA(at)spardat(dot)at> writes:
>> Is it possible to do a patch that produces a dirty buffer list in LRU order
>> and stops early when eighter maxpages is reached or bgwriter_percent
>> pages are scanned ?
>
> Only if you redefine the meaning of bgwriter_percent. At present it's
> defined by reference to the total number of dirty pages, and that can't
> be known without collecting them all.
>
> If it were, say, a percentage of the total length of the T1/T2 lists,
> then we'd have some chance of stopping the scan early.

That definition is identical to a fixed maximum number of pages to write
per call. And since that parameter exists too, it would be redundant.

The other way around would make sense. In order to avoid writing the
busiest buffers at all (except for checkpoinging), the parameter should
mean "don't scan the last x% of the queue at all".

Still, we need to avoid scanning over all the clean blocks of a large
buffer pool, so there is need for a separate dirty-LRU.

Jan

--
#======================================================================#
# It's easier to get forgiveness for being wrong than for being right. #
# Let's break this rule - forgive me. #
#================================================== JanWieck(at)Yahoo(dot)com #

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Tom Lane 2004-12-15 17:05:54 Re: production server down
Previous Message Joe Conway 2004-12-15 16:56:19 Re: production server down