estemated number of rows and optimiser effeciency - Mailing list pgsql-general

From salah jubeh
Subject estemated number of rows and optimiser effeciency
Date
Msg-id 1348669317.81600.YahooMailNeo@web122203.mail.ne1.yahoo.com
Whole thread Raw
Responses Re: estemated number of rows and optimiser effeciency  ("David Johnston" <polobo@yahoo.com>)
List pgsql-general
Hello,

I know that the optimizer, uses the number of rows to calculate the total query  execution time.  In complex queries, it is very difficult to know the number of rows in the expected result. This certainly affects the optimizer to very great extent.  I have a view and it should return around 5.5 million rows ; at the beginning postgresql  used to execute this query in around 12 minutes. After running vacuum analyze; the query execution time dropped to 1.5 minutes. Still, I think this query time could be executed in around 40-50 second.  Before and after running vacuum Analyze,  the number of expected rows was 1600 and 6500 respectively .  By comparing 5.5 million rows (real result)  and 6500 rows,  and 1600 rows (expected results) ,  one can observe how much this could affect the optimizer plans.

 I am wondering, why the historical data (real result of the query) does not affect the execution plan. For example, If I ran the query 10 times I always get around 6500 instead of 5.5 million in the top most execution plan node.

Regards

pgsql-general by date:

Previous
From: "Yelai, Ramkumar IN BLR STS"
Date:
Subject: Re: Need help in reclaiming disk space by deleting the selected records
Next
From: Adrian Klaver
Date:
Subject: Re: Running CREATE only on certain Postgres versions