Re: PERFORMANCE and SIZE - Mailing list pgsql-performance

From Josh Berkus
Subject Re: PERFORMANCE and SIZE
Date
Msg-id 200305130915.34850.josh@agliodbs.com
Whole thread Raw
In response to Re: PERFORMANCE and SIZE  ("Alfranio Junior" <alfranio@lsd.di.uminho.pt>)
Responses Re: PERFORMANCE and SIZE
List pgsql-performance
Alfranio,

> And now, the optimizer started to use a table scan and in consequence gives
> me:

What appears to me to be happening is that the planner has incorrect estimates
of the cost of an index lookup.   The base estimate is contained in the
postgresql.conf parameter:
cpu_index_tuple_cost = 0.001

From the look of things, your disk/array has much better random seek times
than the standard, or you have enough RAM to cache most of your tables.
Either way, I would experiment with lowering the index_tuple_cost to, say,
0.0003 and see if you get better use of indexes.

If that does work for you, make sure to check some other queries unrelated to
the "customers" table to make sure that the new setting doesn't mess them up
in some way.

--
Josh Berkus
Aglio Database Solutions
San Francisco


pgsql-performance by date:

Previous
From: Tom Lane
Date:
Subject: Re: [repost] partial index / funxtional idx or bad sql?
Next
From: Stephan Szabo
Date:
Subject: Re: How are null's stored?