Re: BGWriter latch, power saving

Поиск
Список
Период
Сортировка
От Heikki Linnakangas
Тема Re: BGWriter latch, power saving
Дата
Msg-id 4F154A82.3040008@enterprisedb.com
обсуждение исходный текст
Ответ на Re: BGWriter latch, power saving  (Peter Geoghegan <peter@2ndquadrant.com>)
Ответы Re: BGWriter latch, power saving  (Heikki Linnakangas <heikki.linnakangas@enterprisedb.com>)
Список pgsql-hackers
On 04.01.2012 17:05, Peter Geoghegan wrote:
> On 4 January 2012 07:24, Heikki Linnakangas
> <heikki.linnakangas@enterprisedb.com>  wrote:
>> I think SetBufferCommitInfoNeedsSave() needs the same treatment as
>> MarkBufferDirty(). And it would probably be good to only set the latch if
>> the buffer wasn't dirty already. Setting a latch that's already set is fast,
>> but surely it's even faster to not even try.
>
> That seems reasonable. Revised patch is attached.

Thanks! It occurs to me that it's still a bad idea to call SetLatch()
while holding the buffer header spinlock. At least when it's trivial to
just move the call after releasing the lock. See attached.

Could you do the sleeping/hibernating logic all in BgWriterNap()?

>> Yeah, I'd like to see a micro-benchmark of a worst-case scenario. I'm a bit
>> worried about the impact on systems with a lot of CPUs. If you have a lot of
>> CPUs writing to the same cache line that contains the latch's flag, that
>> might get expensive.
>
> Also reasonable, but I don't think that I'll get around to it until
> after the final commitfest deadline.

That's still pending. And I admit I haven't tested my updated version
besides "make check".

--
   Heikki Linnakangas
   EnterpriseDB   http://www.enterprisedb.com

Вложения

В списке pgsql-hackers по дате отправления:

Предыдущее
От: Daniel Farina
Дата:
Сообщение: Re: Should we add crc32 in libpgport?
Следующее
От: Noah Misch
Дата:
Сообщение: Re: Collect frequency statistics for arrays