Re: PowerEdge 2950 questions

From: Mark Lewis <mark(dot)lewis(at)mir3(dot)com>
To: Merlin Moncure <mmoncure(at)gmail(dot)com>
Cc: Jeff Davis <pgsql(at)j-davis(dot)com>, Bucky Jordan <bjordan(at)lumeta(dot)com>, pgsql-performance(at)postgresql(dot)org
Subject: Re: PowerEdge 2950 questions
Date: 2006-08-24 19:28:42
Message-ID: 1156447722.9657.255.camel@archimedes
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-performance

> it's worse than that. if you need to read something that is not in
> the o/s cache, all the disks except for one need to be sent to a
> physical location in order to get the data. Thats the basic rule with
> striping: it optimizes for sequential i/o in expense of random i/o.
> There are some optimizations that can help, but not much. caching by
> the controller can increase performance on writes because it can
> optimize the movement across the disks by instituting a delay between
> the write request and the actual write.
>
> raid 1 (or 1+x) is the opposite. It allows the drive heads to move
> independantly on reads when combined with some smart algorithms.
> writes however must involve all the disk heads however. Many
> controllers do not to seem to optimze raid 1 properly although linux
> software raid seems to.
>
> A 4 disk raid 1, for example, could deliver four times the seek
> performance which would make it feel much faster than a 4 disk raid 0
> under certain conditions.

I understand random mid-sized seeks (seek to x and read 512k) being slow
on RAID5, but if the read size is small enough not to cross a stripe
boundary, this could be optimized to only one seek on one drive. Do
most controllers just not do this, or is there some other reason that
I'm not thinking of that would force all disks to seek?

-- Mark

In response to

Browse pgsql-performance by date

  From Date Subject
Next Message Scott Marlowe 2006-08-24 19:38:28 Re: PowerEdge 2950 questions
Previous Message Claus Guttesen 2006-08-24 19:27:34 Re: PowerEdge 2950 questions