Re: [SQL] Very disappointing performance -- All Indexes Ignored.

Поиск
Список
Период
Сортировка
От Bruce Momjian
Тема Re: [SQL] Very disappointing performance -- All Indexes Ignored.
Дата
Msg-id 199903112017.PAA20137@candle.pha.pa.us
обсуждение исходный текст
Ответ на Re: [SQL] Very disappointing performance -- All Indexes Ignored.  (secret <secret@kearneydev.com>)
Список pgsql-sql
> > Second, indexes are not of a huge value in this query, because there are
> > no restrictions, i.e. x=3.  In most cases, walking the index and then
> > going to the heap table takes longer than just reading the entire table
> > into a hash and doing the join there.
>
>     I see, and after doing a more specific query(from_job_id=xxx) the speed
> is much increased... The main thing that disturbed me is the rather large
> time between the query with joins(300 seconds) and with the functions(30s)...
> Shouldn't the functions be far slower?(Seems like they would be less
> efficient)

Well, you are doing the functions only for matched rows, while the other
does full-table joins.  Can you easily test the snapshot and let me
know?  I have re-done the optimizer for not-yet-released 6.5, and that
may fix the problem.  I fixed many optimizer problems, and it may be
choosing a non-optimal join path.

>
>     PostgreSQL is also crashing 1-2 times a day on me, although I have a
> handy perl script to keep it alive now <grin>... If PostgreSQL does work for
> my project I'll of course buy CDs/books/whatever to support the project.
> Despite the 2 problems I'm having I am very impressed with the project.

That is strange.  Don't here that much.

--
  Bruce Momjian                        |  http://www.op.net/~candle
  maillist@candle.pha.pa.us            |  (610) 853-3000
  +  If your life is a hard drive,     |  830 Blythe Avenue
  +  Christ can be your backup.        |  Drexel Hill, Pennsylvania 19026

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

Предыдущее
От: secret
Дата:
Сообщение: Re: [SQL] Very disappointing performance -- All Indexes Ignored.
Следующее
От: Bruce Momjian
Дата:
Сообщение: Re: [SQL] Staus of Primary/Foreign key?