Re: Should Oracle outperform PostgreSQL on a complex

Поиск
Список
Период
Сортировка
От Simon Riggs
Тема Re: Should Oracle outperform PostgreSQL on a complex
Дата
Msg-id 1134928407.2964.177.camel@localhost.localdomain
обсуждение исходный текст
Ответ на Re: Should Oracle outperform PostgreSQL on a complex  (Mark Kirkwood <markir@paradise.net.nz>)
Ответы Re: Should Oracle outperform PostgreSQL on a complex  (Mark Kirkwood <markir@paradise.net.nz>)
Список pgsql-performance
On Sun, 2005-12-18 at 17:07 +1300, Mark Kirkwood wrote:
> Tom Lane wrote:
>
> >>2. transform joins into subselects, then return subselect rows via an
> >>index bitmap. Joins are performed via a bitmap addition process.
>
> Looks like 8.1 pretty much does this right now:

Good analysis.

8.1 doesn't do:
- the transforms sufficiently well (you just performed them manually)
- doesn't AND together multiple bitmaps to assist with N-way joins

Those aren't criticisms, just observations. Pal's original example was a
9-dimension join, so I think PostgreSQL does very well on making that
run in 30 seconds. That's a complex example and I think upholds just how
good things are right now.

Anyway, back to the starting point: IMHO there is an additional
optimisation that can be performed to somehow speed up Single large
table-many small table joins. And we have some clues as to how we might
do that.

Best Regards, Simon Riggs


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

Предыдущее
От: Christopher Petrilli
Дата:
Сообщение: Re: PostgreSQL and Ultrasparc T1
Следующее
От: Mark Kirkwood
Дата:
Сообщение: Re: Should Oracle outperform PostgreSQL on a complex