Re: Storage management?????

From: Brian McCane <bmccane(at)mccons(dot)net>
To: Chris Pesko <cpesko(at)organic(dot)com>
Cc: <pgsql-admin(at)postgresql(dot)org>
Subject: Re: Storage management?????
Date: 2001-10-04 16:14:12
Message-ID: 20011004110234.Q39504-100000@fw.mccons.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-admin

On Wed, 3 Oct 2001, Chris Pesko wrote:

> Thank you for responding and here is a follow up question regarding your
> scalability answer. Is the database size limited to the size of the one
> disk it rides on. Or does the directory volume need to be configured to
> span multiple disks to get some scalability?
>
---------------->8 SNIP 8<------------------
Chris,

If you are asking if it is possible for a database to grow from
one filesystem to another, the answer is currently "NO". However, as was
already pointed out, you can put the files anywhere and use symbolic links
to the files. I have distributed my largest database across 5 drives on
2 separate SCSI busses at this point. I have placed index files on 2
disks, and table files on 2 others, and the WAL files on another (7.1.2
unpatched). The goal has been to reduce disk latency during updates to
the tables for large multi-table transactions, and it has worked quite
nicely. The only real problem has been that I needed to write a script
that warns me whenever a table grows beyond 1GB. The new file
(ie. 64587393.1) is created in $PGDATA and I then move it to whichever
drive I have the master file (ie. 65487393) on. I could automate the
whole thing using the perl script, but this would mean having the script
automagically do a 'pg_ctl stop', move the file to a pre-defined
drive, create the link, 'pg_ctl start'. Since I do this manually during
low system usage times, and I don't trust the script to work 100% of the
time, I just do it by hand.

- brian

Wm. Brian McCane | Life is full of doors that won't open
Search http://recall.maxbaud.net/ | when you knock, equally spaced amid those
Usenet http://freenews.maxbaud.net/ | that open when you don't want them to.
Auction http://www.sellit-here.com/ | - Roger Zelazny "Blood of Amber"

In response to

Responses

Browse pgsql-admin by date

  From Date Subject
Next Message Chris Pesko 2001-10-04 17:11:10 Re: Storage management?????
Previous Message Stephan Szabo 2001-10-04 15:58:59 Re: indexes on text columns