I have a RAID5 array with 3 devices as follows:
~$ cat /proc/mdstat
Personalities : [raid1] [linear] [multipath] [raid0] [raid6] [raid5] [raid4] [raid10]
md127 : active raid5 sdb[4] sdc1[2] sda1[3]
955537408 blocks super 1.2 level 5, 64k chunk, algorithm 2 [3/3] [UUU]
bitmap: 2/4 pages [8KB], 65536KB chunk
As you can see, sdb isn't partitioned while the other devices are.
The sector count for each is:
Device Sectors
/dev/sda1 955799596
/dev/sdc1 955799596
/dev/sdb 976773168
If one of the drives fails, will a non-partitioned member make it harder to replace the failed drive?
If so, should I remove sdb
now and give it the same partition table as the others before adding it back (at the cost of slow I/O while the array rebuilds)?