From: | "Matthew T(dot) O'Connor" <matthew(at)zeut(dot)net> |
---|---|
To: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
Cc: | Michael Fuhr <mike(at)fuhr(dot)org>, Jan Wieck <JanWieck(at)Yahoo(dot)com>, pgsql-hackers(at)postgreSQL(dot)org |
Subject: | Re: stats for failed transactions (was Re: [GENERAL] VACUUM |
Date: | 2006-01-28 04:49:12 |
Message-ID: | 43DAF7C8.6030304@zeut.net |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general pgsql-hackers |
Tom Lane wrote:
>> hmm... That's true. I don't think autovacuum doesn't anything to account
>> for the concept of rolledback inserts.
>>
>
> I think this is the fault of the stats system design. AFAICT from a
> quick look at the code, inserted/updated/deleted tuples are reported
> to the collector in the same way regardless of whether the sending
> transaction committed or rolled back. I think this is unquestionably
> a bug, at least for autovacuum's purposes --- though it might be OK
> for the original intent of the stats system, which was simply to track
> activity levels.
>
> Any thoughts about how it ought to work?
The fact that autovacuum bases it's decisions on info from the stats
system is arguably an abuse of the original design. However I don't
know of a better source of information at the moment. It has always
been my vision that autovacuum will eventually incorporate additional
information sources to make better informed decisions. There has always
been discussion of using the FSM to help clue us in as to when we need
another vacuum. Perhaps the addition of the vacuum space map that
people are talking about will also help.
None of this directly addresses the question of what the stats system
*should* track, but perhaps it is wrongheaded to totally redesign the
stats system for the purposes of autovacuum. As a quick semi-fix,
perhaps autovacuum should look at the number of rollbacks vs. commits in
an attempt to determine the accuracy of the stats. For example if 50%
of the transactions are getting rolled back, then autovacuum might
include 50% of the inserts in the count towards the vacuum threshold.
Obviously this isn't perfect, but it probably gets us closer to reality
with the information already available.
Thoughts?
Matt
From | Date | Subject | |
---|---|---|---|
Next Message | Karsten Hilbert | 2006-01-28 09:37:29 | creating users per database |
Previous Message | Ron St-Pierre | 2006-01-28 01:54:00 | Re: Importing Many XML Records |
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2006-01-28 15:18:15 | Re: stats for failed transactions (was Re: [GENERAL] VACUUM Question) |
Previous Message | Greg Stark | 2006-01-27 22:04:09 | Re: Proposal: new pg_dump options --copy-delimiter and |