estemated number of rows and optimiser effeciency

Поиск
Список
Период
Сортировка
От salah jubeh
Тема estemated number of rows and optimiser effeciency
Дата
Msg-id 1348669317.81600.YahooMailNeo@web122203.mail.ne1.yahoo.com
обсуждение исходный текст
Ответы Re: estemated number of rows and optimiser effeciency
Список 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 по дате отправления:

Предыдущее
От: "Yelai, Ramkumar IN BLR STS"
Дата:
Сообщение: Re: Need help in reclaiming disk space by deleting the selected records
Следующее
От: Adrian Klaver
Дата:
Сообщение: Re: Running CREATE only on certain Postgres versions