Re: Wrong Stats and Poor Performance

Поиск
Список
Период
Сортировка
От Greg Stark
Тема Re: Wrong Stats and Poor Performance
Дата
Msg-id 87mzvzbh2m.fsf@stark.xeocode.com
обсуждение исходный текст
Ответ на Re: Wrong Stats and Poor Performance  (Pallav Kalva <pkalva@deg.cc>)
Список pgsql-performance
Pallav Kalva <pkalva@deg.cc> writes:

> >> I had a setup a cronjob couple of weeks ago to run vacuum analyze every 3
> >> hours on this table and still my stats are totally wrong. This is affecting
> >> the performance of the queries running on this table very badly.
> >> How can i fix this problem ?  or is this the standard postgres behaviour ?

If you need it there's nothing wrong with running vacuum even more often than
this. As often as every 5 minutes isn't unheard of.

You should also look at raising the fsm settings. You need to run vacuum often
enough that on average not more tuples are updated in the intervening time
than can be kept track of in the fsm settings. So raising the fsm settings
allow you to run vacuum less often without having things bloat.

There's a way to use the output vacuum verbose gives you to find out what fsm
settings you need. But I don't remember which number you should be looking at
there offhand.

--
greg

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

Предыдущее
От: John A Meinel
Дата:
Сообщение: Re: Wrong Stats and Poor Performance
Следующее
От: "Iain"
Дата:
Сообщение: Re: Howto Increased performace ?