Re: how to (temporarily) disable/minimize benefits of disk block cache or postgresql shared buffer

Поиск
Список
Период
Сортировка
От Craig Ringer
Тема Re: how to (temporarily) disable/minimize benefits of disk block cache or postgresql shared buffer
Дата
Msg-id 4C2CC45F.4060505@postnewspapers.com.au
обсуждение исходный текст
Ответ на how to (temporarily) disable/minimize benefits of disk block cache or postgresql shared buffer  (Rajesh Kumar Mallah <mallah.rajesh@gmail.com>)
Ответы Re: how to (temporarily) disable/minimize benefits of disk block cache or postgresql shared buffer  (Rajesh Kumar Mallah <mallah.rajesh@gmail.com>)
Список pgsql-performance
On 01/07/10 17:41, Rajesh Kumar Mallah wrote:
> Hi,
>
> this is not really a performance question , sorry if its bit irrelevant
> to be posted here. We have a development environment and we want
> to optimize the non-database parts of the application. The problem is
> that subsequent run of  queries are execute very fast and makes the
> performance analysis a trivial problem. We want that the subsequent runs
> of query should take similar times as the first run so that we can work
> on the optimizing the calling patterns to the database.

You can get rid of PostgreSQL's caches in shared_buffers by restarting
the PostgreSQL server. I don't know if there's any more convenient way.
Alternately, just set a really minimal shared_buffers that's just enough
for your connections so there's not much room for cached data.

If you are running a Linux server (as you didn't mention what you're
running on) you can drop the OS disk cache quite easily:

  http://linux-mm.org/Drop_Caches
  http://www.linuxinsight.com/proc_sys_vm_drop_caches.html

AFAIK for most other platforms you have to use a tool that gobbles
memory to force caches out. On Windows, most of those garbage tools that
claim to "free" memory do this - it's about the only time you'd ever
want to use one, since they do such horrid things to performance.

--
Craig Ringer

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

Предыдущее
От: Greg Smith
Дата:
Сообщение: Re: optimal ZFS filesystem on JBOD layout
Следующее
От: Rajesh Kumar Mallah
Дата:
Сообщение: Re: how to (temporarily) disable/minimize benefits of disk block cache or postgresql shared buffer