Re: atrocious update performance

From: "Rosser Schwarz" <rschwarz(at)totalcardinc(dot)com>
To: <pgsql-performance(at)postgresql(dot)org>
Subject: Re: atrocious update performance
Date: 2004-04-05 19:59:32
Message-ID: 009901c41b48$8357c860$2500fa0a@CardServices.TCI.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

while you weren't looking, Kevin Barnard wrote:

> Have you added indexes for the custid column for tables
> account.acct accunt.orgacct and note?

They were indexed in the original case, yes. There was no
need to index them in today's test case, as that was done
purely in attempt to rule in or out foreign key validation
as the cause of the performance hit. No foreign keys that
might be validated, no need to index the foreign key columns.

> I haven't followed the entire thread but it you have
> cascading FK on those tables without an index on the
> column that could cause your delay.

The issue is that the foreign keys are being validated at
all, when the column being referenced by those foreign keys
(account.cust.custid) is never touched.

Regardless of whether or not the referencing columns are
indexed, validating them at all--in this specific case--is
broken. The column they refer to is never touched; they
should remain utterly ignorant of whatever happens to other
columns in the same row.

/rls

--
Rosser Schwarz
Total Card, Inc.

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Matthew T. O'Connor 2004-04-05 21:28:33 Re: performance comparission postgresql/ms-sql server
Previous Message Gregory S. Williamson 2004-04-05 19:43:21 Re: Raw devices vs. Filesystems