Re: Table space grow big - PostgreSQL

Поиск
Список
Период
Сортировка
От Khangelani Gama
Тема Re: Table space grow big - PostgreSQL
Дата
Msg-id D78A8169F9436B4DB978300336168F3B3359C9CD20@SWBREXCH00.ucs-software.net
обсуждение исходный текст
Ответ на Re: Table space grow big - PostgreSQL  (Brett Parker <iDunno@sommitrealweird.co.uk>)
Ответы Re: Table space grow big - PostgreSQL  (Iñigo Martinez Lasala <imartinez@vectorsf.com>)
Re: Table space grow big - PostgreSQL  (Ian Lea <ian.lea@gmail.com>)
Re: Table space grow big - PostgreSQL  ("Kevin Grittner" <Kevin.Grittner@wicourts.gov>)
Список pgsql-admin
Many Thanks for all the replies.


The conversion project to version 8 is still in progress, hence we are still experiencing problems on a version that's
notsupported. That's an honest answer I can give. The thing is it's frustrating to not to have a source of support as
westill have to give support on this version 7.3.4 


There is a script that runs once a month which reindex, vacuum full verborse and vacuum analyze :

Small picture inside the script:

        echo "VACUUMING TABLE ${table} " >>$log 2>>$log
        /usr/local/pgsql/bin/psql -U $dbuser -h localhost ${db} -tc "REINDEX TABLE ${table}" >>$log 2>>$log
        /usr/local/pgsql/bin/psql -U $dbuser -h localhost ${db} -tc "VACUUM FULL VERBOSE ${table}" >>$log  2>>$log
        /usr/local/pgsql/bin/psql -U $dbuser -h localhost ${db} -tc "VACUUM ANALYZE ${table}" >>$log  2>>$log


Dumping and restoring the database doesn't decrease the space



There is nothing set in the postgresql.conf file that has to do with vacuum analyze.

If we could have a way to reduce the space in /usr/local/pgsql/data/base/95186722 directory we would be sorted








-----Original Message-----
From: pgsql-admin-owner@postgresql.org [mailto:pgsql-admin-owner@postgresql.org] On Behalf Of Brett Parker
Sent: Wednesday, May 05, 2010 1:42 PM
To: pgsql-admin@postgresql.org
Subject: Re: [ADMIN] Table space grow big - PostgreSQL

On 05 May 13:36, Khangelani Gama wrote:
> Hi all
>
>
> Please assist on this scenario, I am a junior DBA, perhaps the
> question I have is too simple please bear with me.
>
> I have a server with one PostgreSQL database and the data reside in
> /usr/local/pgsql/data/ running on Redhat 9 O/S.

<snippage class="lots" />

> The main question I have is: What makes the
> /usr/local/pgsql/data/base/95186722/  grow so big while the actual
> data with its schema is only 2.8G and that is there a way to reduce
> the table space sizes or anything related to that?

OK - what version of postgres would be a good starting question...

But, at a guess, I'd say you have a fair amount of table churn, and that
you're probably due running a VACUUM FULL over the database that is
using the most space, it may fail, but if it does it should tell you
what bit of config you'll need to change to make it work.

The other possible usage of lots of space is indexes on the database
tables, these are not included in the dump, and so the size of the dump
doesn't accurately reflect the size of the on disc data.

Hope that gives you somewhere to start from.

Thanks,
--
Brett Parker

--
Sent via pgsql-admin mailing list (pgsql-admin@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-admin

The contents of and attachments to this e-mail are intended for the addressee only, and may contain the confidential
informationof UCS Group and/or its subsidiaries.  Any review, use or dissemination thereof by anyone other than the
intendedaddressee is prohibited.  If you are not the intended addressee please notify the writer immediately and
destroythe e-mail.  UCS Group Limited and its subsidiaries distance themselves from and accept no liability for
unauthoriseduse of their e-mail facilities or e-mails sent other than strictly for business purposes. 

В списке pgsql-admin по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Ubuntu 10.04 - Cannot Create TCP/IP Sockets
Следующее
От: Iñigo Martinez Lasala
Дата:
Сообщение: Re: Table space grow big - PostgreSQL