Re: [BUGS] Bug in pg_autovacuum ?

Lists: pgsql-bugspgsql-hackers
From: Cott Lang <cott(at)internetstaff(dot)com>
To: PostgreSQL Bugs List <pgsql-bugs(at)postgresql(dot)org>
Subject: Bug in pg_autovacuum ?
Date: 2004-01-17 23:22:45
Message-ID: 1074381764.2237.81.camel@blackbox
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs pgsql-hackers

I'm having a problem with pg_autovacuum against both 7.3.2 and 7.4.1 on
Redhat 9 and Fedora Core 1. I'm using pg_autovacuum from 7.4.1,
everything comes from the postgresql.org RPMs.

If the number of tuples is sufficiently high, pg reports 'reltuples'
back in TABLE_STATS_QUERY in scientific notation instead of an integer.

Example:

4.35351e+06 instead of 4353514

pg_autovacuum then uses atoi() to reach the incorrect conclusion that
there are 4 tuples. Obviously, if that table gets more than a couple of
updates, it gets vacuumed a bit too often. :)

Changing from atoi() to atof() solves the problem completely.

new_tbl->reltuples =
atof(PQgetvalue(res, row, PQfnumber(res, "reltuples")));

new_tbl->relpages =
atof(PQgetvalue(res, row, PQfnumber(res, "relpages")));

I'm not sure how I can be the only person running into this. :)


From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Cott Lang <cott(at)internetstaff(dot)com>
Cc: PostgreSQL Bugs List <pgsql-bugs(at)postgresql(dot)org>
Subject: Re: Bug in pg_autovacuum ?
Date: 2004-01-18 03:18:36
Message-ID: 1542.1074395916@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs pgsql-hackers

Cott Lang <cott(at)internetstaff(dot)com> writes:
> If the number of tuples is sufficiently high, pg reports 'reltuples'
> back in TABLE_STATS_QUERY in scientific notation instead of an integer.

Right, because that column is actually a float4.

> Changing from atoi() to atof() solves the problem completely.

> new_tbl->reltuples =
> atof(PQgetvalue(res, row, PQfnumber(res, "reltuples")));

> new_tbl->relpages =
> atof(PQgetvalue(res, row, PQfnumber(res, "relpages")));

I should think this would break in different ways once reltuples exceeds
INT_MAX. A full fix would require changing new_tbl->reltuples to be
float or double, and coping with any downstream changes that implies.

Also, relpages *is* an integer, though it's best interpreted as an
unsigned one. (Ditto for relid.) Looks like this code is 0-for-3 on
getting the datatypes right :-(

regards, tom lane


From: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: Cott Lang <cott(at)internetstaff(dot)com>, PostgreSQL-development <pgsql-hackers(at)postgreSQL(dot)org>
Subject: Re: [BUGS] Bug in pg_autovacuum ?
Date: 2004-02-11 22:29:09
Message-ID: 200402112229.i1BMT9W24168@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs pgsql-hackers


Would someone review these problems and submit a patch? Thanks.

---------------------------------------------------------------------------

Tom Lane wrote:
> Cott Lang <cott(at)internetstaff(dot)com> writes:
> > If the number of tuples is sufficiently high, pg reports 'reltuples'
> > back in TABLE_STATS_QUERY in scientific notation instead of an integer.
>
> Right, because that column is actually a float4.
>
> > Changing from atoi() to atof() solves the problem completely.
>
> > new_tbl->reltuples =
> > atof(PQgetvalue(res, row, PQfnumber(res, "reltuples")));
>
> > new_tbl->relpages =
> > atof(PQgetvalue(res, row, PQfnumber(res, "relpages")));
>
> I should think this would break in different ways once reltuples exceeds
> INT_MAX. A full fix would require changing new_tbl->reltuples to be
> float or double, and coping with any downstream changes that implies.
>
> Also, relpages *is* an integer, though it's best interpreted as an
> unsigned one. (Ditto for relid.) Looks like this code is 0-for-3 on
> getting the datatypes right :-(
>
> regards, tom lane
>
> ---------------------------(end of broadcast)---------------------------
> TIP 4: Don't 'kill -9' the postmaster
>

--
Bruce Momjian | http://candle.pha.pa.us
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073


From: "Matthew T(dot) O'Connor" <matthew(at)zeut(dot)net>
To: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
Cc: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, Cott Lang <cott(at)internetstaff(dot)com>, PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: [BUGS] Bug in pg_autovacuum ?
Date: 2004-02-11 22:57:19
Message-ID: 1076540239.29819.0.camel@zedora.zeut.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs pgsql-hackers

Yeah, I'll take a look at it and submit a patch. Sorry I didn't see it
sooner, but I don't read the bugs mailing list.

On Wed, 2004-02-11 at 17:29, Bruce Momjian wrote:
> Would someone review these problems and submit a patch? Thanks.
>
> ---------------------------------------------------------------------------
>
> Tom Lane wrote:
> > Cott Lang <cott(at)internetstaff(dot)com> writes:
> > > If the number of tuples is sufficiently high, pg reports 'reltuples'
> > > back in TABLE_STATS_QUERY in scientific notation instead of an integer.
> >
> > Right, because that column is actually a float4.
> >
> > > Changing from atoi() to atof() solves the problem completely.
> >
> > > new_tbl->reltuples =
> > > atof(PQgetvalue(res, row, PQfnumber(res, "reltuples")));
> >
> > > new_tbl->relpages =
> > > atof(PQgetvalue(res, row, PQfnumber(res, "relpages")));
> >
> > I should think this would break in different ways once reltuples exceeds
> > INT_MAX. A full fix would require changing new_tbl->reltuples to be
> > float or double, and coping with any downstream changes that implies.
> >
> > Also, relpages *is* an integer, though it's best interpreted as an
> > unsigned one. (Ditto for relid.) Looks like this code is 0-for-3 on
> > getting the datatypes right :-(
> >
> > regards, tom lane
> >
> > ---------------------------(end of broadcast)---------------------------
> > TIP 4: Don't 'kill -9' the postmaster
> >


From: Cott Lang <cott(at)internetstaff(dot)com>
To: "Matthew T(dot) O'Connor" <matthew(at)zeut(dot)net>
Cc: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: [BUGS] Bug in pg_autovacuum ?
Date: 2004-02-11 23:17:37
Message-ID: 1076541456.4314.17.camel@blackbox
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs pgsql-hackers

I have my original changes + Tom's recommended changes applied to 7.4.1
if you're interested.

On Wed, 2004-02-11 at 15:57, Matthew T. O'Connor wrote:
> Yeah, I'll take a look at it and submit a patch. Sorry I didn't see it
> sooner, but I don't read the bugs mailing list.
>
> On Wed, 2004-02-11 at 17:29, Bruce Momjian wrote:
> > Would someone review these problems and submit a patch? Thanks.
> >
> > ---------------------------------------------------------------------------
> >
> > Tom Lane wrote:
> > > Cott Lang <cott(at)internetstaff(dot)com> writes:
> > > > If the number of tuples is sufficiently high, pg reports 'reltuples'
> > > > back in TABLE_STATS_QUERY in scientific notation instead of an integer.
> > >
> > > Right, because that column is actually a float4.
> > >
> > > > Changing from atoi() to atof() solves the problem completely.
> > >
> > > > new_tbl->reltuples =
> > > > atof(PQgetvalue(res, row, PQfnumber(res, "reltuples")));
> > >
> > > > new_tbl->relpages =
> > > > atof(PQgetvalue(res, row, PQfnumber(res, "relpages")));
> > >
> > > I should think this would break in different ways once reltuples exceeds
> > > INT_MAX. A full fix would require changing new_tbl->reltuples to be
> > > float or double, and coping with any downstream changes that implies.
> > >
> > > Also, relpages *is* an integer, though it's best interpreted as an
> > > unsigned one. (Ditto for relid.) Looks like this code is 0-for-3 on
> > > getting the datatypes right :-(
> > >
> > > regards, tom lane
> > >
> > > ---------------------------(end of broadcast)---------------------------
> > > TIP 4: Don't 'kill -9' the postmaster
> > >
>


From: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
To: Cott Lang <cott(at)internetstaff(dot)com>
Cc: "Matthew T(dot) O'Connor" <matthew(at)zeut(dot)net>, Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: [BUGS] Bug in pg_autovacuum ?
Date: 2004-02-11 23:25:19
Message-ID: 200402112325.i1BNPJG03183@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs pgsql-hackers

Cott Lang wrote:
> I have my original changes + Tom's recommended changes applied to 7.4.1
> if you're interested.

Sure, shoot them over to hackers or patches. The pg_autovacuum author
is looking into this.

--
Bruce Momjian | http://candle.pha.pa.us
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073


From: Cott Lang <cott(at)internetstaff(dot)com>
To:
Cc: "Matthew T(dot) O'Connor" <matthew(at)zeut(dot)net>, PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: [BUGS] Bug in pg_autovacuum ?
Date: 2004-02-12 00:28:30
Message-ID: 1076545710.4314.28.camel@blackbox
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs pgsql-hackers

On Wed, 2004-02-11 at 16:25, Bruce Momjian wrote:
>
> Sure, shoot them over to hackers or patches. The pg_autovacuum author
> is looking into this.

Here they are. They've worked well for me, but someone wiser in the ways
of C should certainly look them over. :)

Attachment Content-Type Size
autovac.patch text/x-patch 2.2 KB

From: Bruce Momjian <pgman(at)candle(dot)pha(dot)pa(dot)us>
To: Cott Lang <cott(at)internetstaff(dot)com>
Cc: "Matthew T(dot) O'Connor" <matthew(at)zeut(dot)net>, PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: [BUGS] Bug in pg_autovacuum ?
Date: 2004-04-20 03:46:57
Message-ID: 200404200346.i3K3kvw28144@candle.pha.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs pgsql-hackers


Not sure if anyone reported to you but we fixed these in current CVS and
will have the fix in 7.4.3.

---------------------------------------------------------------------------

Cott Lang wrote:
> On Wed, 2004-02-11 at 16:25, Bruce Momjian wrote:
> >
> > Sure, shoot them over to hackers or patches. The pg_autovacuum author
> > is looking into this.
>
> Here they are. They've worked well for me, but someone wiser in the ways
> of C should certainly look them over. :)
>
>

[ Attachment, skipping... ]

>
> ---------------------------(end of broadcast)---------------------------
> TIP 6: Have you searched our list archives?
>
> http://archives.postgresql.org

--
Bruce Momjian | http://candle.pha.pa.us
pgman(at)candle(dot)pha(dot)pa(dot)us | (610) 359-1001
+ If your life is a hard drive, | 13 Roberts Road
+ Christ can be your backup. | Newtown Square, Pennsylvania 19073