Re: 4s query want to run faster

Поиск
Список
Период
Сортировка
От Scott Marlowe
Тема Re: 4s query want to run faster
Дата
Msg-id dcc563d10802211325t365388f1te340e7f9b7e18dd3@mail.gmail.com
обсуждение исходный текст
Ответ на Re: 4s query want to run faster  ("Adonias Malosso" <malosso@gmail.com>)
Список pgsql-performance
Well, all the row counts in expected and actual are pretty close.  I'm
guessing it's as optimized as it's likely to get.  you could try
mucking about with random_page_cost to force index usage, but indexes
are not always a win in pgsql, hence the seq scans etc...  If the
number of rows returned represents a large percentage of the total
number of rows in the table, then a seq scan is generally a win.  Note
that most all the time being spent in this query is on the Hash Join,
not on the seq scans.

Also, you should really update to 8.2.6 the latest 8.2 version.  Check
the release notes for the bugs that were fixed between 8.2.1 and 8.2.6

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

Предыдущее
От: "Adonias Malosso"
Дата:
Сообщение: Re: 4s query want to run faster
Следующее
От: Mark Kirkwood
Дата:
Сообщение: Re: 4s query want to run faster