Re: [GENERAL] how to get accurate values in pg_statistic (continued)

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: [GENERAL] how to get accurate values in pg_statistic (continued)
Дата
Msg-id 7126.1062787095@sss.pgh.pa.us
обсуждение исходный текст
Ответ на [GENERAL] how to get accurate values in pg_statistic (continued)  (Mary Edie Meredith <maryedie@osdl.org>)
Список pgsql-performance
Mary Edie Meredith <maryedie@osdl.org> writes:
> For our testing purposes, however, consistent results are extremely
> important. We have observed that small difference in one plan for one of
> 22 queries can cause a difference in the DBT-3 results.  If this
> happens, a small change in performance runs between two Linux kernels
> may appear to be due to the kernels, when in fact it is due to the plan
> change.

Fair enough.  If you are trying to force exactly repeatable results,
why don't you just "set seed = 0" before you ANALYZE?  There's only
one random-number generator, so that should force ANALYZE to make the
same random sampling every time.

Also, it'd be a good idea to ANALYZE the needed tables by name,
explicitly, to ensure that they are analyzed in a known order
rather than whatever order ANALYZE happens to find them in pg_class.

            regards, tom lane

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

Предыдущее
От: Richard Huxton
Дата:
Сообщение: Re: Performance problems on a fairly big table with two
Следующее
От: Mary Edie Meredith
Дата:
Сообщение: Re: [GENERAL] how to get accurate values in pg_statistic