Re: Interesting incosistent query timing

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Interesting incosistent query timing
Дата
Msg-id 17950.1055895138@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Interesting incosistent query timing  (Ernest E Vogelsinger <ernest@vogelsinger.at>)
Список pgsql-performance
Ernest E Vogelsinger <ernest@vogelsinger.at> writes:
> I came to the same conclusion - I installed a cron script that performs a
> select against that index on a regular basis (3 minutes). After that even
> the most complex queries against this huge table go like whoosssshhh ;-)
> Would be interesting what one could do to _not_ have to take this basically
> clumsy approach...

Seems like your kernel is falling down on the job: if those files are
the most heavily used ones on the machine, it should be keeping them in
disk cache without such prompting.

If they are not all that heavily used, then you are basically slowing
everything else down in order to speed up these queries (because you're
starving everything else for disk cache).  Which may be a reasonable
tradeoff in your situation, but be aware of what you're doing.

The best compromise may be to buy more RAM ;-)

            regards, tom lane

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Postgres Connections Requiring Large Amounts of Memory
Следующее
От: "SZŰCS Gábor"
Дата:
Сообщение: Re: Postgres Connections Requiring Large Amounts of Memory