Re: why hash on the primary key?

Поиск
Список
Период
Сортировка
От Adam Rich
Тема Re: why hash on the primary key?
Дата
Msg-id 0b3901c95194$97925890$c6b709b0$@r@sbcglobal.net
обсуждение исходный текст
Ответ на why hash on the primary key?  ("Robert Haas" <robertmhaas@gmail.com>)
Список pgsql-general
> I'm seeing a lot of plans in my database that look like this:
> It seems very strange for the planner to decide to build an in-memory
> hash table on a column that is already indexed (the primary key, no
> less!).  But this is happening A LOT - I often see plans where a
> majority of the joins are executed this way (and they're not all
> self-joins either...).  It seems like the planner is concluding that
> it's going to need most or all of the pages in the table anyway, and
> that building a hash table as it goes is quicker than reading the
> index pages in from disk.  On a simple query like the above, setting
> enable_seqscan to off or random_page_cost to 1 generates the expected
> plan:
> Experimentation shows this is actually about 25% faster.  But, this is
> kind of a blunt instrument, and my attempts to fiddle with various
> parameters have not been real succesful in generating better plans for
> more complicated examples.
>
> Any suggestions/explanations?
>
> ...Robert

Could you send the output of these two queries using "explain analyze"
instead of plain explain?




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

Предыдущее
От: "Robert Haas"
Дата:
Сообщение: why hash on the primary key?
Следующее
От: Tom Lane
Дата:
Сообщение: Re: why hash on the primary key?