Re: Performance hit of foreign key constraints?

From: Stephan Szabo <sszabo(at)megazone(dot)bigpanda(dot)com>
To: Jean-Christian Imbeault <jc(at)mega-bucks(dot)co(dot)jp>
Cc: <pgsql-general(at)postgresql(dot)org>
Subject: Re: Performance hit of foreign key constraints?
Date: 2003-07-23 14:49:12
Message-ID: 20030723074442.L69170-100000@megazone.bigpanda.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general pgsql-performance


On Wed, 23 Jul 2003, Jean-Christian Imbeault wrote:

> I have a database which is constantly being written to. A web server's
> log file (and extras) is being written to it. There are no deletions or
> updates (at least I think so :).
>
> As the web traffic increases so will the write intensity.
>
> Right now the database tables have no foreign keys defined even though
> there are foreign keys. The code that inserts into the DB is simple
> enough (now) that we can make sure that nothing is inserted if the
> corresponding fk does not exist and that all fk checks pass.
>
> I want to add foreign key constraints to the table definitions but I am
> worried that it might be a big performance hit. Can anyone tell me how
> much of a performance hit adding one foreign key constraint to one field
> in a table will roughly be?

Well, generally speaking it'll be (assuming no ref actions - and covering
actions you aren't doing):
one select for each insert to the table with the constraint
one select for each update to the table with the constraint, in current
releases unpatched
one select for each update to the table with the constraint if the
key is changed in patched 7.3 or 7.4beta.
one select for each delete to the referenced table
one select for each update to the referenced table if the key is changed
plus management of the trigger queue (this can be an issue in long
transactions since the queue can get big)
and some misc. work in the triggers.

You really want the foregin key on the table with the constraint to be
indexed and using the index if you expect eitherof the referenced table
conditions to happen.

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Stephan Szabo 2003-07-23 15:02:49 Re: Performance hit of foreign key constraints?
Previous Message Tom Lane 2003-07-23 14:48:59 Re: 0/1 vs true/false

Browse pgsql-performance by date

  From Date Subject
Next Message Stephan Szabo 2003-07-23 15:02:49 Re: Performance hit of foreign key constraints?
Previous Message Jörg Schulz 2003-07-23 14:28:54 different query plan for same select