Building blocks for highly available systems
Thanks to the cloud, highly available systems are becoming the new standard. Creating an architecture offering high availability or even fault tolerance is affordable nowadays as you can use ready-to-use building blocks. On top of that, you can operate a highly available infrastructure in the cloud with almost no extra costs.
AWS offers managed services with built-in high availability or even fault tolerance:
- Load Balancer (ELB) is fault tolerant
- SQL database (RDS) is highly available on demand
- No-SQL database (DynamoDB) is fault tolerant
- Object Store (S3) is fault tolerant
The virtual server (EC2) itself is not high available or fault tolerant as the underlying virtualization or hardware might fail. But tools are helping you to build a high available infrastructure based on virtual servers.
Building blocks for high availability
The following figure shows a typical architecture for web applications offering high availability. The building blocks are:
- Load Balancer (ELB) fault tolerant by default routing requests to healthy virtual servers.
- Running virtual servers in different data centers (Availability Zone) in the same region.
- Running an SQL database which replicates all data from the master database to a standby database in another data center (Multi-AZ deployment).
All parts of this architecture are highly available. There is no single-point-of-failure left.
Further reading
- Article Prevent outages with redundant EC2 instances
- Article High availability is a no-brainer: EC2 auto-recovery
- Article Introducing the Object Store: S3
- Article Serverless image resizing at any scale
- Tag ec2
- Tag rds
- Tag elb