Re: Extremely irregular query performance - Mailing list pgsql-performance

From Tom Lane
Subject Re: Extremely irregular query performance
Date
Msg-id 28999.1137020585@sss.pgh.pa.us
Whole thread Raw
In response to Extremely irregular query performance  (Jean-Philippe Côté<jean-philippe.cote@crt.umontreal.ca>)
Responses Re: Extremely irregular query performance
List pgsql-performance
=?iso-8859-1?Q?Jean-Philippe_C=F4t=E9?= <jean-philippe.cote@crt.umontreal.ca> writes:
> I'm running version 8.1 on a dedicated Sun v20 server (2 AMD x64's)
> with 4Gb of RAM. I have recently noticed that the performance of
> some more complex queries is extremely variable and irregular.
> For example, I currently have a query that returns a small number
> of rows (5) by joining a dozen of tables.

A dozen tables?  You're exceeding the geqo_threshold and getting a plan
that has some randomness in it.  You could either increase
geqo_threshold if you can stand the extra planning time, or try
increasing geqo_effort to get it to search a little harder and hopefully
find a passable plan more often.  See

http://www.postgresql.org/docs/8.1/static/geqo.html
http://www.postgresql.org/docs/8.1/static/runtime-config-query.html#RUNTIME-CONFIG-QUERY-GEQO

I'm kinda surprised that you don't get better results with the default
settings.  We could tinker some more with the defaults, if you can
provide evidence about better values ...

            regards, tom lane

pgsql-performance by date:

Previous
From: Burak Seydioglu
Date:
Subject: indexes on primary and foreign keys
Next
From: Tom Lane
Date:
Subject: Re: indexes on primary and foreign keys