Re: bgwriter changes

Поиск
Список
Период
Сортировка
От Zeugswetter Andreas DAZ SD
Тема Re: bgwriter changes
Дата
Msg-id 46C15C39FEB2C44BA555E356FBCD6FA40184D276@m0114.s-mxs.net
обсуждение исходный текст
Ответ на bgwriter changes  (Neil Conway <neilc@samurai.com>)
Ответы Re: bgwriter changes
Список pgsql-hackers
> The two alternative algorithms are similar, but have these
> differences:
> The former (option (2)) finds a constant number of dirty pages, though
> has varying search time.

This has the disadvantage of converging against 0 dirty pages.
A system that has less than maxpages dirty will write every page with
every bgwriter run.

> The latter (option (3)) has constant search
> time, yet finds a varying number of dirty pages.

This might have the disadvantage of either leaving too much for the
checkpoint or writing too many dirty pages in one run. Is writing a lot
in one run actually a problem though ? Or does the bgwriter pause
periodically while writing the pages of one run ?
If this is expressed in pages it would naturally need to be more than the
current maxpages (to accomodate for clean pages). The suggested 2% sounded
way too low for me (that leaves 98% to the checkpoint).

Also I think we are doing too frequent checkpoints with bgwriter in
place. Every 15-30 minutes should be sufficient, even for benchmarks.
We need a tuned bgwriter for this though.

Andreas


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

Предыдущее
От: Andrew Dunstan
Дата:
Сообщение: strange regression failure
Следующее
От: Alvaro Herrera
Дата:
Сообщение: Re: production server down