Re: Slow SELECT on three or more clients

From: Russell Smith <mr-russ(at)pws(dot)com(dot)au>
To: "AMIR FRANCO D(dot) JOVEN" <amir(at)digi(dot)ph>
Cc: pgsql-performance(at)postgresql(dot)org
Subject: Re: Slow SELECT on three or more clients
Date: 2006-11-15 13:31:59
Message-ID: 455B16CF.6000503@pws.com.au
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

AMIR FRANCO D. JOVEN wrote:
> Hi!
>
> Im new to PostgreSQL.
>
> My current project uses PostgreSQL 7.3.4.
Upgrading your version of PostgreSQL to 8.1 will give you significant
benefits to performance.
>
> the problem is like this:
>
> I have a table with 94 fields and a select with only one resultset in
> only one client consumes about 0.86 seconds.
> The client executes three 'select' statements to perform the task
> which consumes 2.58 seconds.
> With only one client this is acceptable, but the real problem is as i
> add more clients, it goes more and more slower.
>
> for a single select with one field in one resultset, is 0.86 seconds
> normal?
You will need to attach the query.
EXPLAIN ANALYZE SELECT ...

where SELECT ... is your query. That will help us work out what the
problem is.

0.86 seconds might be slow for a query that returns 1 row, it might be
fast for a query that returns a large set with complex joins and where
conditions. Fast and slow are not objective terms. They are very
dependent on the query.

>
> I tried vacuuming and reindexing but to no avail.
> the total record count in that particular table is 456,541.
>
456,541 is not all that many records. But again you will need to post
more information for us to be able to assist.
> Thanks in advance.
>

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Gregory S. Williamson 2006-11-15 14:01:11 Re: Slow SELECT on three or more clients
Previous Message Andreas Kostyrka 2006-11-15 13:29:09 Re: Slow SELECT on three or more clients