Re: vacuum / analyze parent tables on partitioned tables.

From: Rural Hunter <ruralhunter(at)gmail(dot)com>
To: pgsql-admin(at)postgresql(dot)org
Subject: Re: vacuum / analyze parent tables on partitioned tables.
Date: 2013-01-23 14:40:25
Message-ID: 50FFF659.6070003@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

I'm doing the same thing. In my case, the vacuum part on parent is very
quick while analyzing takes a bit longer since it runs rough analyzes
all children tables. You can see the behavior by "analyze verbose".
Maybe the bigger part of your vacuum/analyze is on analyze so that you
are seeing this result.

于 2013/1/23 19:43, Bert 写道:
> Hello,
>
> I first wrote, by mistake, to the sql mailing list. But here is my
> e-mail:
>
> I wrote a script to make sure all tables are vacuumed and analyzed
> every evening. This works very well.
> I save in a table the start and end time of a vacuum/analyze. This way
> I can measure what tables take a long time to vaccum/analyze, and what
> tables are slow. (and much more).
>
> But I have noticed that the parent table of a partitioned table also
> takes a long time. Here is a snap shot of the following table
>
> table_name ; avg runt time ; max run time ; min
> run time
> "f_transaction_1" ; "00:03:07.8" ; "00:03:10" ; "00:03:03"
> "f_transaction" ; "00:02:19.8" ; "00:02:25" ; "00:02:16"
>
> f_tranaction_1 is 16GB data + 12GB of indexes. (I know, a lot of
> indexes). f_tranaction is totally empy, but also contains all indexes.
> Which means 0B table zise, and 140kB index size.
>
> Does anyone has an idea why in this case the vacuum/analyze takes
> almost as long on the parent table as on the biggest child table? (the
> other child tables are smaller than f_tranaction_1, and their
> vacuum/analyze time is much shorter).
>
> wkr,
> Bert

In response to

Responses

Browse pgsql-admin by date

  From Date Subject
Next Message Plugge, Joe R. 2013-01-23 14:41:48 Installing Postgres without the postgres user and group on Linux?
Previous Message Bert 2013-01-23 14:19:50 Re: vacuum / analyze parent tables on partitioned tables.