Re: index performance on large tables with update and insert

From: Magnus Hagander <magnus(at)hagander(dot)net>
To: Jessica Richard <rjessil(at)yahoo(dot)com>
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: index performance on large tables with update and insert
Date: 2008-05-23 16:35:17
Message-ID: 20080523123517.6305fbde@mha-laptop.hagander.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

Jessica Richard wrote:
> I have a large table with about 2 million rows and it will keep
> growing...
>
> I need to do update/inserts, and select as well.
>
> An index will speed up the select, but it will slow down the updates.
>
> Are all Postgres indexes ordered? i.e., with every update, the index
> pages will have to be physically reordered?
>
> Does Postgres have any kind of non-ordered indexes (like Syabse's
> non-clustered index)?

All PostgreSQL indexes are like the non-clustered ones in Sybase or SQL
Server.

> What is the common way to take care of the performance issue when you
> have to do both update and select on the same large table?

Create the indexes you actually need to make the selects and updates
fast, just make sure you don't create any unnecessary ones. Usually,
your UPDATEs will also require indexes - only the INSERTs actually are
losing.

//Magnus

In response to

Browse pgsql-performance by date

  From Date Subject
Next Message Andrzej Zawadzki 2008-05-24 16:39:16 Re: Quad Xeon or Quad Opteron?
Previous Message Kevin Grittner 2008-05-23 15:15:29 IBM ServRAID-MR10M / LSI1078ROC advice