Re: Autovacuum, too often?

From: "Harald Armin Massa" <haraldarminmassa(at)gmail(dot)com>
To: glynastill(at)yahoo(dot)co(dot)uk
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Autovacuum, too often?
Date: 2008-09-19 11:40:13
Message-ID: 7be3f35d0809190440y6252eef7hf318fa087f67e4dd@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hello Glyn,

Our legacy apps have some permanent tables that they use for tempory data
> and constantly clear out, I've kicked the developers and I intend to
> eradicate them eventually (the tables, not the developers).
>

and what is the problem with this usage? That is a perfectly valid thing to
do; PostgreSQL can handle that for centuries; no need to kick the developers
:)

> These tables are constantly being autovacuumed, approximately once a
> minute, it's not causing any problem and seems to be keeping them vacuumed.
>
>

That is the right thing to do.

pages: 21 removed, 26 remain
> tuples: 2356 removed, 171 remain
> system usage: CPU 0.00s/0.00u sec elapsed 0.08 sec
>
> As you described, that temp-tables get filled and cleared regularly ...
that is "insert <a lot of stuff>" "delete <the same stuff again>"; so there
are lots of "unused" i.e. deleted tuples, which get recycled by your
vacuuming. And that with nearly no CPU usage.

Sounds fine to me :)

Best wishes,

Harald

--
GHUM Harald Massa
persuadere et programmare
Harald Armin Massa
Spielberger Straße 49
70435 Stuttgart
0173/9409607
no fx, no carrier pigeon
-
EuroPython 2009 will take place in Birmingham - Stay tuned!

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Rainer Bauer 2008-09-19 11:56:49 How to change log file language?
Previous Message Glyn Astill 2008-09-19 10:54:37 Re: Stop trigger fireing for a specific user?