Re: Why creating GIN table index is so slow than inserting data into empty table with the same index?

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: Why creating GIN table index is so slow than inserting data into empty table with the same index?
Дата
Msg-id 26264.1237902313@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Re: Why creating GIN table index is so slow than inserting data into empty table with the same index?  (Heikki Linnakangas <heikki.linnakangas@enterprisedb.com>)
Список pgsql-performance
Heikki Linnakangas <heikki.linnakangas@enterprisedb.com> writes:
> Tom Lane wrote:
>> I think a reasonable solution for this might be to keep an eye on
>> maxdepth and force a flush if that gets too large (more than a few
>> hundred, perhaps?).  Something like this:

> I fooled around with a balanced tree, which solved the problem but
> unfortunately made the unsorted case slower.

Yeah, rebalancing the search tree would fix that, but every balanced
tree algorithm I know about is complicated, slow, and needs extra
memory.  It's really unclear that it'd be worth the trouble for a
transient data structure like this one.

            regards, tom lane

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

Предыдущее
От: Heikki Linnakangas
Дата:
Сообщение: Re: Why creating GIN table index is so slow than inserting data into empty table with the same index?
Следующее
От: Joe Uhl
Дата:
Сообщение: Re: High CPU Utilization