Re: Slow query with joins

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Bendik Rognlien Johansen <bendik(dot)johansen(at)gmail(dot)com>
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: Slow query with joins
Date: 2006-01-11 15:45:47
Message-ID: 13028.1136994347@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

Bendik Rognlien Johansen <bendik(dot)johansen(at)gmail(dot)com> writes:
> Has anyone got any tips for speeding up this query? It currently
> takes hours to start.

Are the rowcount estimates close to reality? The plan doesn't look
unreasonable to me if they are. It might help to increase work_mem
to ensure that the hash tables don't spill to disk.

Indexes:
"people_original_is_null" btree (original) WHERE original IS NULL

This index seems poorly designed: the actual index entries are dead
weight since all of them are necessarily NULL. You might as well make
the index carry something that you frequently test in conjunction with
"original IS NULL". For instance, if this particular query is a common
case, you could replace this index with

CREATE INDEX people_deleted_original_is_null ON people(deleted)
WHERE original IS NULL;

This index is still perfectly usable for queries that only say "original
IS NULL", but it can also filter out rows with the wrong value of
deleted. Now, if there are hardly any rows with deleted = true, maybe
this won't help much for your problem. But in any case you ought to
consider whether you can make the index entries do something useful.

regards, tom lane

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Tom Lane 2006-01-11 16:07:18 Re: Postgres8.0 planner chooses WRONG plan
Previous Message Tom Lane 2006-01-11 15:33:03 Re: Index isn't used during a join.