Re: slow queries, possibly disk io

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: slow queries, possibly disk io
Дата
Msg-id 11908.1117550013@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: slow queries, possibly disk io  (Josh Close <narshe@gmail.com>)
Список pgsql-performance
Josh Close <narshe@gmail.com> writes:
> There is 2 gigs of mem in this server. Here are my current settings.

> max_connections = 100
> shared_buffers = 50000
> sort_mem = 4096
> vacuum_mem = 32768
> effective_cache_size = 450000

> Shared buffers is set to 10% of total mem. Effective cache size is 90% of mem.

Uh, shared_buffers and effective_cache_size are both measured in pages,
which are 8K apiece unless you built with a nondefault BLCKSZ.  So the
above calculations are off ...

> Is there anything that can be done to have postgres grab more from
> memory rather than disk?

It's not so much a matter of what Postgres will do as what the kernel
will do.  Check to see if there is some limit on how much memory the
kernel will set aside for disk buffers.  Plain old "top" will generally
tell you what is going on, though interpreting its output sometimes
requires some wizardry.

            regards, tom lane

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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: very large table
Следующее
От: Josh Close
Дата:
Сообщение: Re: slow queries, possibly disk io