Re: Query only slow on first run

Поиск
Список
Период
Сортировка
От Dave Dutcher
Тема Re: Query only slow on first run
Дата
Msg-id 056501c83128$55d58a90$8e00a8c0@tridecap.com
обсуждение исходный текст
Ответ на Re: Query only slow on first run  (cluster <skrald@amossen.dk>)
Ответы Re: Query only slow on first run  (cluster <skrald@amossen.dk>)
Список pgsql-performance
> -----Original Message-----
> From: cluster
>
> >> Probably by buying much faster disk hardware.
> > Or buy more RAM, so that the data can stay cached.
>
> So the only problem here is lack of RAM and/or disk speed?

I don't think you can reach that conclusion yet.  Like everybody said the
reason the query was faster the second time was that the disk pages were
cached in RAM, and pulling the data out of RAM is way faster than disk.  If
I were you, I would try to optimize the query for when the disk pages aren't
in RAM.  In order to test the query without having anything cached you need
to clear out Postgres's shared buffers and the OS cache.  That can be
tricky, but it may be as easy as running a big select on another table.

As for optimizing the query, I noticed that all three joins are done by
nested loops.  I wonder if another join method would be faster.  Have you
analyzed all the tables?  You aren't disabling hash joins or merge joins are
you?  If you aren't, then as a test I would try disabling nested loops by
doing "set enable_nestloop=false" and see if the query is any faster for
you.  If it is faster without nested loops, then you might need to look into
changing some settings.

Dave


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

Предыдущее
От: Bill Moran
Дата:
Сообщение: Re: Query only slow on first run
Следующее
От: "Peter Koczan"
Дата:
Сообщение: Re: TB-sized databases