Re: Poor performance of delete by primary key - Mailing list pgsql-performance

From Tom Lane
Subject Re: Poor performance of delete by primary key
Date
Msg-id 18162.1126020720@sss.pgh.pa.us
Whole thread Raw
In response to Poor performance of delete by primary key  ("Brian Choate" <brianc@nimblefish.com>)
Responses Re: Poor performance of delete by primary key
Re: Poor performance of delete by primary key
Re: Poor performance of delete by primary key
List pgsql-performance
"Brian Choate" <brianc@nimblefish.com> writes:
> We are seeing a very strange behavior from postgres. For one of our very =
> common tasks we have to delete records from a table of around 500,000 =
> rows. The delete is by id which is the primary key. It seems to be =
> consistently taking around 10 minutes to preform. This is totally out of =
> line with the rest of the performance of the database.

I'll bet this table has foreign-key references from elsewhere, and the
referencing columns are either not indexed, or not of the same datatype
as the master column.

Unfortunately there's no very simple way to determine which FK is the
problem.  (In 8.1 it'll be possible to do that with EXPLAIN ANALYZE,
but in existing releases EXPLAIN doesn't break out the time spent in
each trigger ...)  You have to just eyeball the schema :-(.

            regards, tom lane

pgsql-performance by date:

Previous
From: Marc Cousin
Date:
Subject: Re: insert performance for win32
Next
From: Matthew Sackman
Date:
Subject: Re: Poor performance of delete by primary key