Curious why you say this. Aren't the new Pegasus2 R6 and R8 configured with RAID5? If you have 6+ drives, what should the config be?
Writing 1 KiB to a 6 drive RAID-5 array requires the system to read 320 KiB and write 65 KiB.
Writing 1 KiB to a 6 drive RAID-50 array requires the system to read 128 KiB and write 65 KiB.
Writing 1 KiB to a 6 drive RAID-10 array requires the system to write 2 KiB.
(For really big sequential writes with a RAID-5 controller with nonvolatile writeback cache - no reads would be needed and the writes would only stretch by the one extra write to the parity drive.)
In practice, this means that RAID-5 arrays lose write performance as you increase the number of drives in the array.
There is also a serious problem in that the expected error rate from disks is approaching the size of the disk.
A Seagate 4TB NAS drive has an expected unrecoverable error rate of
1 bit per 10^14.
IT CONTAINS 3.2 * 10^13 BITS!
As you add drives, the probability of a bit error while reading the drives to rebuild the array gets closer and closer to 1. Statistically, a 12 drive RAID-5 array of these Seagates could not be rebuilt - any attempt would get an error which would cause the loss of all data.
The is compounded by the fact that drive failures are not independent. One of the best predictors of whether a particular drive will fail is if drives with nearby serial numbers have failed. (Failure due to bad runs at the factory, material problems, etc.)
Therefore, when you buy a batch of brand new disks, you're setting yourself for co-related failures.