99 - Exam Tips (Keywords) Flashcards
Highly Available
Use Multiple Availability zones
Fault-Tolerant
Use Multiple Availability zones and a complete replica of the application environment for fail-over. The application failure in one AZ should automatically lead to recovery in a different AZ or region
Real-Time Data
If you read real-time data processing, it’s likely related to Kinesis services
Disaster
Failover to a different region if required
Long Term Storage
Glacier or Deep Glacier storage
Managed Service
S3 for data storage, Lambda for computing, Aurora for RDS and DynamoDB for NoSQL database
Use AWS Network
Usually, these keywords are related to communication between VPC instances and AWS services. Use VPC gateways and endpoints to connect to these services
Use AWS Network
Usually, these keywords are related to communication between VPC instances and AWS services. Use VPC gateways and endpoints to connect to these services
Classic 2-tier application architecture, made up of Web server and Database server
1) Scenario 1 (Simple Setup)
Internet -> Web Server (EC2) -> MySQL (RDS instance)
2) Scenario 2 (Setup with Load Balancing ELB and AutoScalingGroup ASG)
Internet -> ELB _> ASG -> Web Server (EC2) -> MySQL (RDS instance)
3) Scenario 3 (Serverless Web Application)
Internet -> API Gateway -> Lambda -> DynamoDB or/and S3