John Robinson <john.robinson@xxxxxxxxxxxxxxxx> writes: > Clearly when you're doing this over 4 drives you can have ~400 > seeks/second but that's still limiting you to ~400 reads/second for > smallish block sizes. > > Cheers, > > John. Note that that only holds true for writes or multithreaded reads. Reading from a single thread will randomly pick one drive (depending on where it wants to read), wait for it to seek, read one block of data and repeat. So you get the speed of a single drive no matter how many drives there are in the raid. Single thread seek times are only improved with raid1 (raid10) because there linux can choose the drive with shorter seek time. And that only saves a tiny amount. MfG Goswin -- To unsubscribe from this list: send the line "unsubscribe linux-raid" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html