Re: pg_subtrans directory grows over 1 GB, is there a way to control it?

From: Alvaro Herrera <alvherre(at)commandprompt(dot)com>
To: Dennis Wang <dennis_02_2002(at)hotmail(dot)com>
Cc: Postgresql Help <pgsql-interfaces(at)postgresql(dot)org>
Subject: Re: pg_subtrans directory grows over 1 GB, is there a way to control it?
Date: 2008-05-16 14:39:39
Message-ID: 20080516143939.GE13061@alvh.no-ip.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

Dennis Wang wrote:
>
> I am using PostgreSQL database in a location recognition application, the files under postgresql/cluster is growing and over a few days it become very large as below.
> /var/opt/postgresql/cluster/data 166015 Kilobytes (the actual database data)
> /var/opt/postgresql/cluster/sys/pg_clog 74188 Kilobytes (transaction commit status data)
> /var/opt/postgresql/cluster/sys/pg_subtrans 1187032 Kilobytes (transaction status data)
>
> The pg_clog and pg_subtrans can grow when database contains more data and more queries come in. But these figures looks rather large to me because the queries goes in the database are mainly read operation rather than write one. I got a few question to ask here:
> Is there a way to control the size of pg_clog and pg_subtrans?
> Is the file size still be normal for the database of this size (166MB for cluster/data)?
> Does the larger pg_subtrans indicate some bad transaction happens in the database?

I think it can be an indication that you're leaving transactions running
for too long. Check pg_stat_activity, and if you see "<IDLE> in
transaction", start worrying about that.

--
Alvaro Herrera http://www.CommandPrompt.com/
PostgreSQL Replication, Consulting, Custom Development, 24x7 support

In response to

Browse pgsql-interfaces by date

  From Date Subject
Next Message Tom Lane 2008-05-16 14:44:31 Re: pg_subtrans directory grows over 1 GB, is there a way to control it?
Previous Message Dennis Wang 2008-05-16 08:58:15 pg_subtrans directory grows over 1 GB, is there a way to control it?