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

From: Bruce Momjian <maillist(at)candle(dot)pha(dot)pa(dot)us>
To: secret(at)kearneydev(dot)com (secret)
Cc: pgsql-sql(at)postgreSQL(dot)org
Subject: Re: [SQL] Very disappointing performance -- All Indexes Ignored.
Date: 1999-03-11 20:17:05
Message-ID: 199903112017.PAA20137@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: 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(at)candle(dot)pha(dot)pa(dot)us | (610) 853-3000
+ If your life is a hard drive, | 830 Blythe Avenue
+ Christ can be your backup. | Drexel Hill, Pennsylvania 19026

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Bruce Momjian 1999-03-11 20:33:32 Re: [SQL] Staus of Primary/Foreign key?
Previous Message secret 1999-03-11 19:30:54 Re: [SQL] Very disappointing performance -- All Indexes Ignored.