Re: Advice configuring ServeRAID 8k for performance

From: Scott Carey <scott(at)richrelevance(dot)com>
To: Scott Marlowe <scott(dot)marlowe(at)gmail(dot)com>
Cc: Pierre C <lists(at)peufeu(dot)com>, Kenneth Cox <kenstir(at)gmail(dot)com>, "pgsql-performance(at)postgresql(dot)org" <pgsql-performance(at)postgresql(dot)org>
Subject: Re: Advice configuring ServeRAID 8k for performance
Date: 2010-08-08 06:46:49
Message-ID: 1C098DF3-A2AC-4A79-9281-A9B79ADAB1D5@richrelevance.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance


On Aug 5, 2010, at 4:09 PM, Scott Marlowe wrote:

> On Thu, Aug 5, 2010 at 4:27 PM, Pierre C <lists(at)peufeu(dot)com> wrote:
>>
>>> 1) Should I switch to RAID 10 for performance? I see things like "RAID 5
>>> is bad for a DB" and "RAID 5 is slow with <= 6 drives" but I see little on
>>> RAID 6.
>>
>> As others said, RAID6 is RAID5 + a hot spare.
>>
>> Basically when you UPDATE a row, at some point postgres will write the page
>> which contains that row.
>>
>> RAID10 : write the page to all mirrors.
>> RAID5/6 : write the page to the relevant disk. Read the corresponding page
>> from all disks (minus one), compute parity, write parity.
>
> Actually it's not quite that bad. You only have to read from two
> disks, the data disk and the parity disk, then compute new parity and
> write to both disks. Still 2 reads / 2 writes for every write.
>
>> As you can see one small write will need to hog all drives in the array.
>> RAID5/6 performance for small random writes is really, really bad.
>>
>> Databases like RAID10 for reads too because when you need some random data
>> you can get it from any of the mirrors, so you get increased parallelism on
>> reads too.
>
> Also for sequential access RAID-10 can read both drives in a pair
> interleaved so you get 50% of the data you need from each drive and
> double the read rate there. This is even true for linux software md
> RAID.

My experience is that it is ONLY true for software RAID and ZFS. Most hardware raid controllers read both mirrors and validate that the data is equal, and thus writing is about as fast as read. Tested with Adaptec, 3Ware, Dell PERC 4/5/6, and LSI MegaRaid hardware wise. In all cases it was clear that the hardware raid was not using data from the two mirrors to improve read performance for sequential or random I/O.
>
>>> with good redundancy. My current performance is 85MB/s write, 151 MB/s
>>> reads
>>
>> FYI, I get 200 MB/s sequential out of the software RAID5 of 3 cheap desktop
>> consumer SATA drives in my home multimedia server...
>
> On a machine NOT configured for max seq throughput (it's used for
> mostly OLTP stuff) I get 325M/s both read and write speed with a 26
> disk RAID-10. OTOH, that setup gets ~6000 to 7000 transactions per
> second with multi-day runs of pgbench.
>
> --
> Sent via pgsql-performance mailing list (pgsql-performance(at)postgresql(dot)org)
> To make changes to your subscription:
> http://www.postgresql.org/mailpref/pgsql-performance

In response to

Responses

Browse pgsql-performance by date

  From Date Subject
Next Message Michael March 2010-08-08 06:49:38 Re: Completely un-tuned Postgresql benchmark results: SSD vs desktop HDD
Previous Message Scott Carey 2010-08-08 06:36:25 Re: Completely un-tuned Postgresql benchmark results: SSD vs desktop HDD