Re: Hardware for PostgreSQL

From: Magnus Hagander <magnus(at)hagander(dot)net>
To: Ow Mun Heng <Ow(dot)Mun(dot)Heng(at)wdc(dot)com>
Cc: Tomas Vondra <tv(at)fuzzy(dot)cz>, Ketema <ketema(at)gmail(dot)com>, pgsql-performance(at)postgresql(dot)org
Subject: Re: Hardware for PostgreSQL
Date: 2007-11-01 06:54:50
Message-ID: 4729783A.2030201@hagander.net
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

Ow Mun Heng wrote:
> On Wed, 2007-10-31 at 22:58 +0100, Tomas Vondra wrote:
>
>> 2) separate the transaction log from the database
>>
>> It's mostly written, and it's the most valuable data you have. And in
>> case you use PITR, this is the only thing that really needs to be
>> backed up.
>
> My main DB datastore is in a raid1 array and the xlog is still
> maintained in a single OS drive. Is this considered OK?

Is your OS not RAIDed? I'd keep everything RAIDed one way or another -
otherwise you are certain to get downtime if the disk fails.

Also, if you don't have a *dedicated* disk for the xlog (putting it on
the OS disk doesn't make it dedicated), you miss out on most of the
performance advantage of doing it. The advantage is in that the writes
will be sequential so the disks don't have to seek, but if you have
other access on the same disk, that's not true anymore.

You're likely better off (performance-wise) putting it on the same disk
as the database itself if that one has better RAID, for example.

//Magnus

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Magnus Hagander 2007-11-01 06:57:02 Re: hardware and For PostgreSQL
Previous Message Magnus Hagander 2007-11-01 06:52:41 Re: Hardware for PostgreSQL