Linux RAID subsystem development
 help / color / mirror / Atom feed
* device and partition alignment
@ 2010-06-05 20:51 Graham Mitchell
  2010-06-05 21:51 ` Stefan /*St0fF*/ Hübner
  0 siblings, 1 reply; 7+ messages in thread
From: Graham Mitchell @ 2010-06-05 20:51 UTC (permalink / raw)
  To: linux-raid linux-raid

I've spent the last couple of days doing some googling, and my goodle-fu
seems to have deserted me at the moment.

I'm looking for some guides and/or words of wisdom on how to partition disks
with optimal alignment for RAID devices, and also the same for laying file
systems on those devices. I've just (re)created a 15 drive RAID 6 array, and
I've partitioned the disk, and I'm building the array on partition 1, which
I see starts at block 63 - I am guessing that this is non-optimal? Is there
a magic formula that can be used to work out what the optimal starting block
on the disk should be, so that we can avoid (or at least reduce) the
read/modify/write penalty on the physical drives?

Is there also a magic formula for doing the same for file systems laid down
on a RAID device? I guess that this would depend on the type of superblock
used, since there seems to be different locations (start, end, start +4k)
for it. 

I've read thru the manual pages (shocking I know), and I can't see anything
mentioned in there, and there's certainly no --optimal-alignment option
there (any chance for next version - lol).

Can someone point me in the direction of some reading about this please?

Thanks.


Graham


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: device and partition alignment
  2010-06-05 20:51 device and partition alignment Graham Mitchell
@ 2010-06-05 21:51 ` Stefan /*St0fF*/ Hübner
  2010-06-05 22:11   ` Wolfgang Denk
  0 siblings, 1 reply; 7+ messages in thread
From: Stefan /*St0fF*/ Hübner @ 2010-06-05 21:51 UTC (permalink / raw)
  To: Graham Mitchell, Linux RAID

Hi Graham,

I guess you couldn't find much about this as it has more to do with
common sense than magic formulae.  If you have 4k-sector drives, align
everything at multiples of 4k, use filesystem-units of multiples of 4k.
 As I read and it also seems very logical from the ATA / SCSI point of
view, a stripe size of 256k seems most straight forward.  This is the
largest amount of data (a.t.m.) that can be read or written with a
single command to a disk.

What should I say more?  Well, block 63 is too oldschool, coming from
the CHS-alignment of old disks.  It doesn't make any sense nowadays.

My suggestion:
- use GPT partitioning (for safeness into the future)
- align the first partition at block 64
- use a filesystem chunk size of at least 4k (depending on the data you
want to store you might use even larger chunks)

Hope it helps,
Stefan

Am 05.06.2010 22:51, schrieb Graham Mitchell:
> I've spent the last couple of days doing some googling, and my goodle-fu
> seems to have deserted me at the moment.
> 
> I'm looking for some guides and/or words of wisdom on how to partition disks
> with optimal alignment for RAID devices, and also the same for laying file
> systems on those devices. I've just (re)created a 15 drive RAID 6 array, and
> I've partitioned the disk, and I'm building the array on partition 1, which
> I see starts at block 63 - I am guessing that this is non-optimal? Is there
> a magic formula that can be used to work out what the optimal starting block
> on the disk should be, so that we can avoid (or at least reduce) the
> read/modify/write penalty on the physical drives?
> 
> Is there also a magic formula for doing the same for file systems laid down
> on a RAID device? I guess that this would depend on the type of superblock
> used, since there seems to be different locations (start, end, start +4k)
> for it. 
> 
> I've read thru the manual pages (shocking I know), and I can't see anything
> mentioned in there, and there's certainly no --optimal-alignment option
> there (any chance for next version - lol).
> 
> Can someone point me in the direction of some reading about this please?
> 
> Thanks.
> 
> 
> Graham
> 
> --
> To unsubscribe from this list: send the line "unsubscribe linux-raid" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: device and partition alignment
  2010-06-05 21:51 ` Stefan /*St0fF*/ Hübner
@ 2010-06-05 22:11   ` Wolfgang Denk
  2010-06-05 23:14     ` Graham Mitchell
  0 siblings, 1 reply; 7+ messages in thread
From: Wolfgang Denk @ 2010-06-05 22:11 UTC (permalink / raw)
  To: st0ff, Stefan /*St0fF*/ Hübner; +Cc: Graham Mitchell, Linux RAID

Dear Stefan,

In message <4C0AC6E4.4080408@stud.tu-ilmenau.de> you wrote:
> 
> I guess you couldn't find much about this as it has more to do with
> common sense than magic formulae.  If you have 4k-sector drives, align
> everything at multiples of 4k, use filesystem-units of multiples of 4k.
>  As I read and it also seems very logical from the ATA / SCSI point of
> view, a stripe size of 256k seems most straight forward.  This is the
> largest amount of data (a.t.m.) that can be read or written with a
> single command to a disk.

And why would that be optimal, in general?

For example, in a file system I have here (with some 15 millions
files) we see the following distribution of file sizes:

	65%   are smaller than  4 kB
	80%   are smaller than  8 kB
	90%   are smaller than 16 kB
	96%   are smaller than 32 kB
	98.4% are smaller than 64 kB 

With many write accesses going on, a stripe size of 16 KiB gives much
better performance.

I think you cannot recommend a stripe size or other specific tuning
measures without exactly knowing the characteristics of the load.

Best regards,

Wolfgang Denk

-- 
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd@denx.de
Accident: A condition in which presence of mind is good, but  absence
of body is better.

^ permalink raw reply	[flat|nested] 7+ messages in thread

* RE: device and partition alignment
  2010-06-05 22:11   ` Wolfgang Denk
@ 2010-06-05 23:14     ` Graham Mitchell
  2010-06-06  0:05       ` Leslie Rhorer
  2010-06-06 10:56       ` Stefan /*St0fF*/ Hübner
  0 siblings, 2 replies; 7+ messages in thread
From: Graham Mitchell @ 2010-06-05 23:14 UTC (permalink / raw)
  To: 'Wolfgang Denk', st0ff,
	'Stefan /*St0fF*/ Hübner'
  Cc: 'Linux RAID'

> Dear Stefan,
> 
> In message <4C0AC6E4.4080408@stud.tu-ilmenau.de> you wrote:
> >
> > I guess you couldn't find much about this as it has more to do with
> > common sense than magic formulae.  If you have 4k-sector drives, align
> > everything at multiples of 4k, use filesystem-units of multiples of 4k.
> >  As I read and it also seems very logical from the ATA / SCSI point of
> > view, a stripe size of 256k seems most straight forward.  This is the
> > largest amount of data (a.t.m.) that can be read or written with a
> > single command to a disk.
> 
> And why would that be optimal, in general?
> 
> For example, in a file system I have here (with some 15 millions
> files) we see the following distribution of file sizes:
> 
> 	65%   are smaller than  4 kB
> 	80%   are smaller than  8 kB
> 	90%   are smaller than 16 kB
> 	96%   are smaller than 32 kB
> 	98.4% are smaller than 64 kB
> 
> With many write accesses going on, a stripe size of 16 KiB gives much
better
> performance.
> 
> I think you cannot recommend a stripe size or other specific tuning
measures
> without exactly knowing the characteristics of the load.


To give you a bit more of the background in this particular case (but I'm
not really looking for a case specific answer here).

This particular array is for a media server, so for practical purposes, the
minimum file size is about 600MB (there are smaller, but very exceptional),
file sizes average 1GB to 2GB, with some as large as 8GB.

So, starting backwards....

When I built the file system (ext4), I did some calculations for the stride
(chunk size / fs block size), so in my case 512k / 4k, which came to 128k.

The strip width is stride * No of data disks (for RAID5 and RAID6 - I am
using RAID 6), so in my case it's 128k * 15, so 1664k.

Passed these to mkfs.ext4 with the -T largefile4 option, and that should
mean that everything was aligned properly on the RAID device md0.

Except that it probably isn't....

Even if md0 were perfectly aligned to the underlying disks, it probably
isn't aligned because the raid superblock starts at the start of md0 (or in
my case, it's offset by 4k). We don't even know what size the superblock is
- there's a fixed 256 byte section, then a variable section that defines the
device roles in the array. So even if the md device itself is perfectly
aligned, we can almost guarantee(?) that the data section of the device
isn't going to be.

So, I'm looking for some way to do the file system alignment properly


Then we come back to the physical disks that go to make up the RAID device.
I guess the simplest way (or am I being too simplistic here) would be to use
the raw device, which would (should?) guarantee that everything would be
aligned? However, I want to be able to use partitions on the disk to create
the array, so that doesn't really help. One suggestion I've read is to start
each partition on a 2k boundary, with the first partition starting at sector
2048 - I didn't manage to find out why 2k was suggested and not 4k.

I'm also not finding where the 256k limit on a disk write comes from - the
Hitachi drive I'm looking at shows a logical/physical sector size of 512
bytes, though I've not pulled the data sheet to check if it's one of the new
4k sector drives (and I suspect that this one isn't) - is it some kernel
limit?

So, I'm also looking for some way to do the partition alignment properly. Do
I use 2048, as was suggested somewhere, or do I make each partition align to
4096, just in case?

A lot of what I've read is 'just common sense', or 'obvious', when it isn't
really. Some things you need to need to make some number based on (say) the
type of files on the final file system, where a smaller chunk size would
make sense, in other cases, a larger chunk size would make sense. But once
you've made those design decisions, there should be some set of formulae you
can use to work out the optimal settings for partitions, alignment etc. (it
may not be a simple formula, but them's the breaks sometimes).


Graham


^ permalink raw reply	[flat|nested] 7+ messages in thread

* RE: device and partition alignment
  2010-06-05 23:14     ` Graham Mitchell
@ 2010-06-06  0:05       ` Leslie Rhorer
  2010-06-06  0:19         ` Graham Mitchell
  2010-06-06 10:56       ` Stefan /*St0fF*/ Hübner
  1 sibling, 1 reply; 7+ messages in thread
From: Leslie Rhorer @ 2010-06-06  0:05 UTC (permalink / raw)
  To: 'Mdadm'

> Then we come back to the physical disks that go to make up the RAID
> device.
> I guess the simplest way (or am I being too simplistic here) would be to
> use
> the raw device, which would (should?) guarantee that everything would be
> aligned? However, I want to be able to use partitions on the disk to
> create
> the array, so that doesn't really help.

	Why?  I haven't seen anything in your message which suggests they
are necessary.  If you don't need partitions, then I suggest you don't use
them.  None of my data arrays have partitions either above or below the RAID
layer.  The md targets are raw disks and the filesystems are created
directly on top of the RAID block device.

> isn't
> really. Some things you need to need to make some number based on (say)
> the
> type of files on the final file system, where a smaller chunk size would
> make sense, in other cases, a larger chunk size would make sense. But once
> you've made those design decisions, there should be some set of formulae
> you

	Chunk size is another matter.


^ permalink raw reply	[flat|nested] 7+ messages in thread

* RE: device and partition alignment
  2010-06-06  0:05       ` Leslie Rhorer
@ 2010-06-06  0:19         ` Graham Mitchell
  0 siblings, 0 replies; 7+ messages in thread
From: Graham Mitchell @ 2010-06-06  0:19 UTC (permalink / raw)
  To: 'Leslie Rhorer', 'Mdadm'

> > Then we come back to the physical disks that go to make up the RAID
> > device.
> > I guess the simplest way (or am I being too simplistic here) would be
> > to use the raw device, which would (should?) guarantee that everything
> > would be aligned? However, I want to be able to use partitions on the
> > disk to create the array, so that doesn't really help.
> 
> 	Why?  I haven't seen anything in your message which suggests they
> are necessary.  If you don't need partitions, then I suggest you don't use
> them.  None of my data arrays have partitions either above or below the
> RAID layer.  The md targets are raw disks and the filesystems are created
> directly on top of the RAID block device.



In the case of the media server, partitions aren't really needed, I'd agree.
However, one of the other projects I have in mind is a storage server with
differing requirements - I'd like to be able to make small partitions on the
disks for fast access (basically short stroke them) as a RAID 10 for
business hour use, and use the large rest of the drives as a RAID 5 array
for backup storage, which would only be used during off hours.

So I'd agree, in some cases using the raw devices makes sense, but in others
it makes sense to partition - and I'd like to have the knowledge for both
situations.


Graham


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: device and partition alignment
  2010-06-05 23:14     ` Graham Mitchell
  2010-06-06  0:05       ` Leslie Rhorer
@ 2010-06-06 10:56       ` Stefan /*St0fF*/ Hübner
  1 sibling, 0 replies; 7+ messages in thread
From: Stefan /*St0fF*/ Hübner @ 2010-06-06 10:56 UTC (permalink / raw)
  To: Graham Mitchell, Linux RAID

Hi again,

Am 06.06.2010 01:14, schrieb Graham Mitchell:
>> Dear Stefan,
>>
>> In message <4C0AC6E4.4080408@stud.tu-ilmenau.de> you wrote:
>>>
>>> I guess you couldn't find much about this as it has more to do with
>>> common sense than magic formulae.  If you have 4k-sector drives, align
>>> everything at multiples of 4k, use filesystem-units of multiples of 4k.
>>>  As I read and it also seems very logical from the ATA / SCSI point of
>>> view, a stripe size of 256k seems most straight forward.  This is the
>>> largest amount of data (a.t.m.) that can be read or written with a
>>> single command to a disk.
>>
>> And why would that be optimal, in general?

Not really in general, and after reviewing the ATA8-ACS draft I'll have
to take it back.  The maximum number of bytes that can be transferred
with a single READ FPDMA command seem to be 32MB (on 512byte sector size
disks - which the recent WDXXEARS simulate to be, also), but I guess
kernel memory management does it differently.  I read a few days ago in
this list, that after benchmarking a lot 256k chunks seemed to give best
performance on large files.  Which must be related to how the kernel
manages it all.
>>
>> For example, in a file system I have here (with some 15 millions
>> files) we see the following distribution of file sizes:
>>
>> 	65%   are smaller than  4 kB
>> 	80%   are smaller than  8 kB
>> 	90%   are smaller than 16 kB
>> 	96%   are smaller than 32 kB
>> 	98.4% are smaller than 64 kB
>>
>> With many write accesses going on, a stripe size of 16 KiB gives much
> better
>> performance.

Nobody talked about a small file raid, so I guessed that larger files
were the most common planned content, as this is what most of my
customers want.
>>
>> I think you cannot recommend a stripe size or other specific tuning
> measures
>> without exactly knowing the characteristics of the load.
> 
2nd that!
> 
> To give you a bit more of the background in this particular case (but I'm
> not really looking for a case specific answer here).
> 
> This particular array is for a media server, so for practical purposes, the
> minimum file size is about 600MB (there are smaller, but very exceptional),
> file sizes average 1GB to 2GB, with some as large as 8GB.

so my guess was right...
> 
> So, starting backwards....
> 
> When I built the file system (ext4), I did some calculations for the stride
> (chunk size / fs block size), so in my case 512k / 4k, which came to 128k.

I'm generally recommending xfs before ext3 and just at the end ext4.
There were too many discussions going on about the internals of ext4 and
if the implementation is the right way to go.
> 
> The strip width is stride * No of data disks (for RAID5 and RAID6 - I am
> using RAID 6), so in my case it's 128k * 15, so 1664k.
> 
> Passed these to mkfs.ext4 with the -T largefile4 option, and that should
> mean that everything was aligned properly on the RAID device md0.
> 
> Except that it probably isn't....
> 
> Even if md0 were perfectly aligned to the underlying disks, it probably
> isn't aligned because the raid superblock starts at the start of md0 (or in
> my case, it's offset by 4k). We don't even know what size the superblock is
> - there's a fixed 256 byte section, then a variable section that defines the
> device roles in the array. So even if the md device itself is perfectly
> aligned, we can almost guarantee(?) that the data section of the device
> isn't going to be.
> 
> So, I'm looking for some way to do the file system alignment properly
> 
> 
> Then we come back to the physical disks that go to make up the RAID device.
> I guess the simplest way (or am I being too simplistic here) would be to use
> the raw device, which would (should?) guarantee that everything would be
> aligned? However, I want to be able to use partitions on the disk to create
> the array, so that doesn't really help. One suggestion I've read is to start
> each partition on a 2k boundary, with the first partition starting at sector
> 2048 - I didn't manage to find out why 2k was suggested and not 4k.
> 
> I'm also not finding where the 256k limit on a disk write comes from - the
> Hitachi drive I'm looking at shows a logical/physical sector size of 512
> bytes, though I've not pulled the data sheet to check if it's one of the new
> 4k sector drives (and I suspect that this one isn't) - is it some kernel
> limit?

Talking HDS722020ALA330?  It's 512bytes/sector.
> 
> So, I'm also looking for some way to do the partition alignment properly. Do
> I use 2048, as was suggested somewhere, or do I make each partition align to
> 4096, just in case?
> 
> A lot of what I've read is 'just common sense', or 'obvious', when it isn't
> really. Some things you need to need to make some number based on (say) the
> type of files on the final file system, where a smaller chunk size would
> make sense, in other cases, a larger chunk size would make sense. But once
> you've made those design decisions, there should be some set of formulae you
> can use to work out the optimal settings for partitions, alignment etc. (it
> may not be a simple formula, but them's the breaks sometimes).
> 
From everything that is common sense you can create a formula.  That's
how physics work ;)  But as in physics, the formula gets as complicated,
as many aspects of the problem you want to take care of.  I wouldn't
want to create a formula where 20 people say: "sounds great" and another
50 moan "you didn't think of this, you didn't think of that".
> 
> Graham
> 

Stefan

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2010-06-06 10:56 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-06-05 20:51 device and partition alignment Graham Mitchell
2010-06-05 21:51 ` Stefan /*St0fF*/ Hübner
2010-06-05 22:11   ` Wolfgang Denk
2010-06-05 23:14     ` Graham Mitchell
2010-06-06  0:05       ` Leslie Rhorer
2010-06-06  0:19         ` Graham Mitchell
2010-06-06 10:56       ` Stefan /*St0fF*/ Hübner

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox