Re: Table UPDATE is too slow - Mailing list pgsql-performance

From Frank Wiles
Subject Re: Table UPDATE is too slow
Date
Msg-id 20040831134619.4ead03b0.frank@wiles.org
Whole thread Raw
In response to Table UPDATE is too slow  (Ron St-Pierre <rstpierre@syscor.com>)
List pgsql-performance
On Tue, 31 Aug 2004 11:11:02 -0700
Ron St-Pierre <rstpierre@syscor.com> wrote:


>    Postgres 7.4.3
>    debian stable
>    2 GB RAM
>    80 DB IDE drive (we can't change it)
>
>    shared_buffers = 2048
>    sort_mem = 1024
>    max_fsm_pages = 40000
>    checkpoint_segments = 5
>    random_page_cost = 3

  I agree with all of the follow ups that having indexes on every
  column is a bad idea.  I would remove the indexes from the
  least searched upon 10-20 columns, as I'm sure this will help
  your performance.

  You mention that not having indexes on some of the columns because it
  "may slow down user queries".  I think you should investigate this and
  make sure they are necessary.  I've seen many an application, with far
  more rows than you're dealing with, only need 1 or 2 indexes, even
  when all (or most) columns could be searched.

  Also, you should consider increasing your shared_buffers and probably
  your sort memory a touch as well. This will help your overall
  performance.

 ---------------------------------
   Frank Wiles <frank@wiles.org>
   http://www.wiles.org
 ---------------------------------


pgsql-performance by date:

Previous
From: Ron St-Pierre
Date:
Subject: Re: Table UPDATE is too slow
Next
From: "Steinar H. Gunderson"
Date:
Subject: Re: Table UPDATE is too slow