Re: FSM and VM file - Mailing list pgsql-general

From Richard Huxton
Subject Re: FSM and VM file
Date
Msg-id 4B8E2EBE.7040903@archonet.com
Whole thread Raw
In response to Re: FSM and VM file  (akp geek <akpgeek@gmail.com>)
Responses Re: FSM and VM file
List pgsql-general
On 02/03/10 21:47, akp geek wrote:
> I am doing a replication of one of the database and the size of the slave
> database is growing exponentially . Right now the size of master db is 849M
> and the slave is 7GB.

> my master is 8.3 and slave is 8.4

I'm guessing your slave isn't being vacuumed. Or, perhaps you have a
long-running transaction on the slave that is preventing dead rows from
being cleaned up.

Two useful commands:

   vacuum verbose mytable;

This will show you how many rows/pages can/should be cleaned up.

   SELECT pg_size_pretty( pg_total_relation_size('mytable') );

This will show you the size of "mytable" (formatted nicely).

--
   Richard Huxton
   Archonet Ltd

pgsql-general by date:

Previous
From: Richard Huxton
Date:
Subject: Re: createdb but revoke dropdb
Next
From: Ben Eliott
Date:
Subject: Re: createdb but revoke dropdb