stats for failed transactions (was Re: [GENERAL] VACUUM Question) - Mailing list pgsql-hackers

From Tom Lane
Subject stats for failed transactions (was Re: [GENERAL] VACUUM Question)
Date
Msg-id 1750.1138372008@sss.pgh.pa.us
Whole thread Raw
Responses Re: stats for failed transactions (was Re: [GENERAL] VACUUM Question)  (Alvaro Herrera <alvherre@alvh.no-ip.org>)
Re: stats for failed transactions (was Re: [GENERAL] VACUUM  ("Matthew T. O'Connor" <matthew@zeut.net>)
List pgsql-hackers
"Matthew T. O'Connor" <matthew@zeut.net> writes:
>> Also, somebody made a real good point about rolled-back insertions.
>> Even if the only command you ever apply to the table is INSERT, you
>> could still have dead rows in the table if some of those transactions
>> occasionally roll back.

> 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?
        regards, tom lane


pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: Proposal: new pg_dump options --copy-delimiter and --copy-null
Next
From: Tom Lane
Date:
Subject: Re: Adding a --quiet option to initdb