Re: Storage management?????

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

This is great information. You just wrote the main content of Chapter #11
for "Storage Management". Now I understand how to employ some sort of file
management. Thanks.

At 11:14 AM 10/4/01 -0500, Brian McCane wrote:
>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

Browse pgsql-admin by date

  From Date Subject
Next Message Chris Pesko 2001-10-04 18:37:16 Re: complete output to file??
Previous Message Brian McCane 2001-10-04 16:14:12 Re: Storage management?????