From: | Michael Paquier <michael(dot)paquier(at)gmail(dot)com> |
---|---|
To: | Alvaro Herrera <alvherre(at)2ndquadrant(dot)com> |
Cc: | PostgreSQL mailing lists <pgsql-hackers(at)postgresql(dot)org> |
Subject: | Re: Table-level log_autovacuum_min_duration |
Date: | 2015-01-13 05:26:11 |
Message-ID: | CAB7nPqRZo7H-MGsXpvt_ibg265yWVm3j0=mxyAXxmDAO0UW9SA@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
On Sat, Dec 20, 2014 at 11:17 PM, Michael Paquier
<michael(dot)paquier(at)gmail(dot)com> wrote:
>> Michael Paquier wrote:
>>> Today I spent a bit of time looking at the activity of autovacuum for
>>> one table particularly bloated. log_autovacuum_min_duration was
>>> enabled and set to a high value but even with that I had to deal with
>>> some spam from the jobs of other tables. It would be cool to have the
>>> possibility to do some filtering IMO. So, what about having a relopt
>>> to control log_autovacuum_min_duration? RelationData->rd_options is
>>> largely accessible for a given relation in the code paths of vacuum
>>> and analyze.
OK, instead of only words, attached is a patch adding relopts called
log_autovacuum_min_duration and toast.log_autovacuum_min_duration to
control the logging of autovacuum at relation-level. The default value
of those parameters is -1, meaning that in this case the global
log_autovacuum_min_duration is used to control the logs. The patch has
finished by being simpler than I though first by using VacuumStmt to
pass the relopts from autovacuum to the code paths of analyze and
vacuum. Note that this uses the same mechanisms as the other relopts,
meaning that the toast relations use the values of their parent tables
if it is defined.
I am adding it to the next CF.
--
Michael
Attachment | Content-Type | Size |
---|---|---|
20150113_autovacuum_log_relopts.patch | text/x-diff | 12.0 KB |
From | Date | Subject | |
---|---|---|---|
Next Message | Magnus Hagander | 2015-01-13 05:35:25 | New CF app deployment |
Previous Message | Stephen Frost | 2015-01-12 22:39:47 | Re: WITH CHECK and Column-Level Privileges |