Re: [PERFORM] select query takes 13 seconds to run with index

From: PFC <lists(at)peufeu(dot)com>
To: mark <markkicks(at)gmail(dot)com>, Justin <justin(at)emproshunts(dot)com>
Cc: pgsql-general(at)postgresql(dot)org, pgsql-performance(at)postgresql(dot)org
Subject: Re: [PERFORM] select query takes 13 seconds to run with index
Date: 2008-05-27 08:19:37
Message-ID: op.ubsz2zqmcigqcu@apollo13.peufeu.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general pgsql-performance


>> The estimate is way off, when was the last time Vaccum was on the table?
> about a week ago i ran this VACUUM VERBOSE ANALYZE;
> this table is never updated or deleted, rows are just inserted...

You should analyze it more often, then... Postgres probably thinks the
table has the same data distribution as last week !
Analyze just takes a couple seconds...

>> Load on the database
> how do i measure load on database?

Just look at vmstat.

Also if you very often do SELECT .. WHERE x = ... ORDER BY id DESC you'll
benefit from an index on (x,id) instead of just (x).

In response to

Browse pgsql-general by date

  From Date Subject
Next Message hubert depesz lubaczewski 2008-05-27 08:22:01 Re: [PERFORM] select query takes 13 seconds to run with index
Previous Message Volkan YAZICI 2008-05-27 06:39:37 Permission Problem for DELETE

Browse pgsql-performance by date

  From Date Subject
Next Message hubert depesz lubaczewski 2008-05-27 08:22:01 Re: [PERFORM] select query takes 13 seconds to run with index
Previous Message mark 2008-05-27 03:12:26 Re: select query takes 13 seconds to run with index