Re: autovacuum on a -mostly- r/o table - Mailing list pgsql-performance

From Tobias Brox
Subject Re: autovacuum on a -mostly- r/o table
Date
Msg-id 20060927165336.GA11191@oppetid.no
Whole thread Raw
In response to Re: autovacuum on a -mostly- r/o table  (Edoardo Ceccarelli <eddy@axa.it>)
List pgsql-performance
[Edoardo Ceccarelli - Wed at 06:49:23PM +0200]
> ...another thing is, how could autovacuum check for machine load, this
> is something I cannot imagine right now...

One solution I made for our application, is to check the
pg_stats_activity view.  It requires some config to get the stats
available in that view, though.  When the application is to start a
low-priority transaction, it will first do:

  select count(*) from pg_stat_activity where current_query not like
  '<IDL%' and query_start+?<now();

if the returned value is high, the application will sleep a bit and try
again later.


pgsql-performance by date:

Previous
From: Edoardo Ceccarelli
Date:
Subject: Re: autovacuum on a -mostly- r/o table
Next
From: Rod Taylor
Date:
Subject: Re: autovacuum on a -mostly- r/o table