Re: Performance With Joins on Large Tables

Поиск
Список
Период
Сортировка
От Jeff Davis
Тема Re: Performance With Joins on Large Tables
Дата
Msg-id 1158163655.29889.57.camel@dogma.v10.wvs
обсуждение исходный текст
Ответ на Re: Performance With Joins on Large Tables  ("Joshua Marsh" <icub3d@gmail.com>)
Ответы Re: Performance With Joins on Large Tables  ("Joshua Marsh" <icub3d@gmail.com>)
Список pgsql-performance
On Wed, 2006-09-13 at 08:49 -0600, Joshua Marsh wrote:
> That seems to have done it.  Are there any side effects to this
> change?  I read about random_page_cost in the documentation and it
> seems like this is strictly for planning.  All the tables on this
> database will be indexed and of a size similar to these two, so I
> don't see it  causing any other problems.  Though I would check though
> :)
>

Right, it's just used for planning. Avoid setting it too low, if it's
below about 2.0 you would most likely see some very strange plans.
Certainly it doesn't make sense at all to set it below 1.0, since that
is saying it's cheaper to get a random page than a sequential one.

What was your original random_page_cost, and what is the new value you
set it to?

Regards,
    Jeff Davis




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

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: sql-bench
Следующее
От: "Joshua Marsh"
Дата:
Сообщение: Re: Performance With Joins on Large Tables