Re: Why is my (empty) partial index query slow? - Mailing list pgsql-performance

From Tom Lane
Subject Re: Why is my (empty) partial index query slow?
Date
Msg-id 511.1150992297@sss.pgh.pa.us
Whole thread Raw
In response to Why is my (empty) partial index query slow?  (Richard Frith-Macdonald <richard@tiptree.demon.co.uk>)
List pgsql-performance
Richard Frith-Macdonald <richard@tiptree.demon.co.uk> writes:
> I have a producer/consumer setup where various producer processes
> insert new records into a table and consumer processes mark those
> records as having been handled when they have dealt with them, but
> leave the records in the table so that we can generate reports later.

Have you tried EXPLAIN ANALYZE on the problem queries?

If you want help here, you really need to show us the table and index
definitions, the exact queries, and the EXPLAIN ANALYZE results.  Oh,
and mention the exact Postgres version you're using, too.  Otherwise
we're just guessing at what's going on.

> I guess that the fact that records are constantly (and rapidly) added
> to and removed from the index may have caused the index to become
> inefficient somehow ...

How often are you vacuuming the table?  A heavily-updated table needs a
lot of vacuuming to avoid becoming bloated.

            regards, tom lane

pgsql-performance by date:

Previous
From: "Craig A. James"
Date:
Subject: Re: [HACKERS] Sun Donated a Sun Fire T2000 to the PostgreSQL
Next
From: Tom Lane
Date:
Subject: Re: Tuning New Server (slow function)