Friday, November 23, 2018

hard drive - RAID - buy spare disks at same time as originals?



When using RAID1, is it best practice to buy spare disks at the same time as the original disks to ensure you have the identical type in case they become unavailable in future?


Answer



You won't need an identical type.



The only "hard" requirement with RAID controllers is that the replacement disk is the same bus type (do not replace SAS disks with SATA or vice-versa) and at least the size of the original disk. Software RAID solutions would not even enforce the same bus type.




It makes sense to have similar performance characteristics (rotational speed, peak transfer rate, access times) on all members of an array so you would not give away performance, but if you replace a slower disk with a faster one, this is of no concern.


No comments:

Post a Comment

linux - How to SSH to ec2 instance in VPC private subnet via NAT server

I have created a VPC in aws with a public subnet and a private subnet. The private subnet does not have direct access to external network. S...