Reading some AWS docs the other day and found something interesting. It’s possible to create RAID Level 0 and 1 EBS volumes for your EC2 instances. It doesn’t provide multi-zone failover like EFS, but Level 0 would be great for a database not supported by RDS. The throughput of the Level 0 EBS volumes attached to the instance is the sum of throughput of all volumes attached, perfect for high I/O databases. You won’t get additional durability of data since the data is striped across the volumes and the loss of one volume will still result in failure of all volumes. Level 1 gives you mirroring of ebs volume which does not improve I/O but will create synchronized volumes in the same availabiity zone. Even though EBS is a very reliable technology that rarely fails – there’s always a chance.That’s a little more peace of mind when considering the low cost of EBS volumes.
Related Articles
Contact
Articles
Posts
- What happens when AWS closes your account ? 05/22/2024
- AWS and RAID 09/12/2021
- AWS Global Accelerator 06/20/2021
- AWS Bill – 10k a month ! 03/24/2021
- Apache & Linux 01/13/2021
Leave a Comment