Re: VACUUM ANALYZE is faster than ANALYZE?

Поиск
Список
Период
Сортировка
От Pavel Stehule
Тема Re: VACUUM ANALYZE is faster than ANALYZE?
Дата
Msg-id CAFj8pRBE1XM0pUyhqXTjo2G5r5ay_U-zEBx_nEAfwwXKYHAhow@mail.gmail.com
обсуждение исходный текст
Ответ на Re: VACUUM ANALYZE is faster than ANALYZE?  (Robert Haas <robertmhaas@gmail.com>)
Ответы Re: VACUUM ANALYZE is faster than ANALYZE?  ("Kevin Grittner" <Kevin.Grittner@wicourts.gov>)
Список pgsql-hackers
2012/2/22 Robert Haas <robertmhaas@gmail.com>:
> On Wed, Feb 22, 2012 at 8:13 AM, Nicolas Barbier
> <nicolas.barbier@gmail.com> wrote:
>> 2012/2/22 Robert Haas <robertmhaas@gmail.com>:
>>
>>> On Tue, Feb 21, 2012 at 9:00 AM, Pavel Stehule <pavel.stehule@gmail.com> wrote:
>>>
>>>> I had to reply to query about usage VACUUM ANALYZE or ANALYZE. I
>>>> expected so ANALYZE should be faster then VACUUM ANALYZE.
>>>>
>>>> But is not true. Why?
>>>
>>> I'm pretty sure that VACUUM ANALYZE *will* be faster than ANALYZE in
>>> general, because VACUUM has to scan the whole table, and ANALYZE only
>>> a fixed-size subset of its pages.
>>
>> It sounds like you just said the opposite of what you wanted to say.
>
> Yeah, I did.  Woops.  Let me try that again:
>
> ANALYZE should be faster; reads only some pages.
>
> VACUUM ANALYZE should be slower; reads them all.
>
> Dunno why Pavel's seeing the opposite without more info.

usual pattern in our application is

create table xx1 as select ....
analyze xx1
create table xx2 as select .... from xx1, ....
analyze xx2
create table xx3 as select ... from xx3, ....
analyze xx3
create table xx4 as select ... from xx1, ...

tables xx** are use as cache.

so we have to refresh statistic early.

in this situation - and I found so in this case VACUUM ANALYZE is
faster (30%) than ANALYZE. Size of xx** is usually between 500Kb and
8Kb

This is not usual pattern for OLTP - Application is strictly OLAP.

Regards

Pavel

>
> --
> Robert Haas
> EnterpriseDB: http://www.enterprisedb.com
> The Enterprise PostgreSQL Company


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

Предыдущее
От: Thom Brown
Дата:
Сообщение: Re: determining a type oid from the name
Следующее
От: Marti Raudsepp
Дата:
Сообщение: Re: pg_test_timing tool for EXPLAIN ANALYZE overhead