Cost estimate vs. actual - do I care?

Поиск
Список
Период
Сортировка
От Jay Levitt
Тема Cost estimate vs. actual - do I care?
Дата
Msg-id 4F00AD0D.6000501@gmail.com
обсуждение исходный текст
Ответы Re: Cost estimate vs. actual - do I care?
Список pgsql-performance
I gather that a big part of making queries performant is making sure the
planner's estimates reflect reality.

Given a random explain analyze line:

Limit  (cost=0.02..943.11 rows=50 width=16) (actual time=0.603..79.729
rows=50 loops=1)

which is the truer statement?

1. As long as costs go up with actual time, you're fine.

2. You should try to ensure that costs go up linearly with actual time.

3. You should try to ensure that costs are as close as possible to actual time.

4. The number "4".

Jay Levitt

В списке pgsql-performance по дате отправления:

Предыдущее
От: Igor
Дата:
Сообщение: Re: How to clock the time spent for query parsing and planning?
Следующее
От: Mark Mielke
Дата:
Сообщение: Re: Cost estimate vs. actual - do I care?