AWS Solutions Architect Associate – Domain 2: Design Resilient Architectures

0.0(0)
studied byStudied by 0 people
GameKnowt Play
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/68

flashcard set

Earn XP

Description and Tags

Vocabulary flashcards covering key AWS concepts, services, and strategies for designing resilient architectures in the Solutions Architect Associate exam’s Domain 2.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

69 Terms

1
New cards

Scaling

The capability of a system to handle increasing or decreasing load by adding or removing resources.

2
New cards

Elasticity

Automatic adjustment of cloud resources up or down to match demand, enabling pay-for-what-you-use efficiency.

3
New cards

Vertical Scaling (Scale Up)

Increasing the power (CPU, RAM, throughput) of a single server or instance.

4
New cards

Horizontal Scaling (Scale Out)

Adding more servers or instances to a resource pool for greater capacity and resilience.

5
New cards

AWS Auto Scaling

The overarching service that configures automatic scaling for multiple AWS resources (EC2, ECS, DynamoDB, Aurora, etc.).

6
New cards

EC2 Auto Scaling

Service that automatically adds or removes EC2 instances in response to demand within an Auto Scaling Group.

7
New cards

Launch Configuration

Legacy template that defines EC2 instance settings for an Auto Scaling Group.

8
New cards

Launch Template

Modern replacement for launch configurations supporting versioning and advanced options.

9
New cards

Auto Scaling Group (ASG)

Logical grouping that maintains a minimum, maximum, and desired number of EC2 instances.

10
New cards

Target Tracking Scaling

ASG policy that keeps a metric (e.g., average CPU 40 %) close to a target value automatically.

11
New cards

Step Scaling

ASG policy that adds or removes capacity in steps based on how far a metric breaches a threshold.

12
New cards

Simple Scaling

Legacy ASG policy that triggers a single scaling action and waits for a cooldown before another one.

13
New cards

Scheduled Scaling

ASG policy that scales resources at specific times for predictable traffic patterns.

14
New cards

Virtualization (EC2)

Running virtual servers in the cloud where you manage OS, runtime, and application code.

15
New cards

Container

Package containing application code and dependencies for consistent deployment across environments.

16
New cards

Amazon ECS

AWS-managed container orchestrator for running Docker containers at scale.

17
New cards

Amazon EKS

Managed Kubernetes service for running containerized workloads using open-source Kubernetes.

18
New cards

Serverless Computing

Execution model where you run code without provisioning servers; scaling and availability are handled by AWS.

19
New cards

AWS Lambda

Serverless compute service that runs code in response to events and charges per invocation and duration.

20
New cards

AWS Fargate

Serverless compute engine for containers that eliminates the need to manage EC2 instances for ECS/EKS tasks.

21
New cards

AWS Serverless Definition

No servers to manage, automatic scaling by consumption unit, pay-for-value billing, and built-in high availability.

22
New cards

Amazon API Gateway

Managed service to create, publish, secure, and monitor APIs that front backend services like Lambda.

23
New cards

AWS Transfer Family

Fully managed SFTP/FTPS/FTP service that scales automatically and removes server management.

24
New cards

Decoupling

Design practice where components operate independently without direct knowledge of each other.

25
New cards

Synchronous Decoupling

Real-time interaction where a load balancer separates clients from specific backend servers.

26
New cards

Asynchronous Decoupling

Interaction via a queue or bus where producer and consumer operate independently in time.

27
New cards

Amazon SQS

Fully managed message queue for decoupling microservices and smoothing traffic spikes.

28
New cards

Amazon SNS

Pub/Sub messaging service that fans out messages from a topic to many subscribers.

29
New cards

Amazon EventBridge

Serverless event bus for routing events from AWS, SaaS, or custom apps using rule-based filtering.

30
New cards

RDS Multi-AZ

High-availability deployment that creates a synchronous standby replica in a different AZ for automatic failover.

31
New cards

RDS Read Replica

Asynchronous copy of an RDS database used to offload read traffic and improve performance.

32
New cards

Amazon RDS Proxy

Managed proxy pooling database connections, improving scalability, failover speed, and security.

33
New cards

Amazon DynamoDB

Fully managed NoSQL key-value and document database delivering millisecond performance at any scale.

34
New cards

Amazon ElastiCache

Managed in-memory caching service (Redis or Memcached) to accelerate application performance.

35
New cards

DynamoDB Accelerator (DAX)

Fully managed, in-memory cache that boosts DynamoDB read performance from ms to µs.

36
New cards

Amazon CloudFront

Content Delivery Network that caches content at edge locations to reduce latency and add DDoS protection.

37
New cards

Amazon Route 53

Highly available DNS service with routing policies for traffic management and DR failover.

38
New cards

AWS Global Accelerator

Service that directs traffic over AWS’s global network using static IPs for improved availability and performance.

39
New cards

High Availability (HA)

System design focused on minimizing downtime and recovering quickly from failures.

40
New cards

Fault Tolerance (FT)

Ability of a system to continue operating without interruption despite component failures.

41
New cards

Disaster Recovery (DR)

Processes and strategies to restore IT operations after a catastrophic event.

42
New cards

Recovery Point Objective (RPO)

Maximum acceptable amount of data loss measured in time before a disaster.

43
New cards

Recovery Time Objective (RTO)

Maximum acceptable duration for restoring service after a disaster.

44
New cards

Backup & Restore DR Strategy

Cost-efficient strategy relying on regular backups and manual restoration; highest RTO/RPO.

45
New cards

Pilot Light DR Strategy

Active/passive model where minimal core infrastructure runs in DR region, scaled up during disaster.

46
New cards

Warm Standby DR Strategy

Scaled-down but fully functional environment always running in DR region, scaled up when needed.

47
New cards

Multi-Site Active/Active

Full-scale production environments in multiple regions serving traffic simultaneously with near-zero RTO/RPO.

48
New cards

AWS Global Infrastructure

Collection of isolated regions and multiple AZs enabling high availability and disaster resilience.

49
New cards

Elastic Load Balancing (ELB)

Service that distributes incoming traffic across multiple targets in multiple AZs automatically.

50
New cards

Infrastructure as Code (IaC)

Practice of provisioning infrastructure through machine-readable templates for repeatability and DR.

51
New cards

AWS CloudFormation

Primary IaC service that defines and deploys AWS resources from templates.

52
New cards

AWS Elastic Beanstalk

PaaS that automates deployment, scaling, and monitoring of web applications.

53
New cards

Amazon CloudWatch

Central monitoring service providing metrics, logs, alarms, and automated actions.

54
New cards

AWS X-Ray

Distributed tracing service that helps debug and analyze performance in microservices architectures.

55
New cards

Amazon Comprehend

NLP service that extracts insights from text, useful for automated ticket classification.

56
New cards

Amazon Polly

Text-to-speech service producing natural-sounding audio for voice-enabled applications.

57
New cards

AWS Elastic Disaster Recovery (DRS)

Service that replicates on-prem or cloud workloads to AWS for low-cost standby and quick recovery.

58
New cards

Cluster Placement Group

Strategy that packs EC2 instances close together in one AZ for low-latency HPC workloads.

59
New cards

Partition Placement Group

Placement strategy spreading EC2 instances across logical partitions to reduce correlated failures.

60
New cards

Spread Placement Group

Places each EC2 instance on distinct hardware to minimize simultaneous failures.

61
New cards

Stateless Application

App design that stores no session data on the server, allowing any instance to handle any request.

62
New cards

Stateful Application

Application that stores session data locally, complicating horizontal scaling.

63
New cards

Amazon EFS

Managed, serverless, shared file system that can be mounted by thousands of instances across AZs.

64
New cards

Sticky Sessions

ALB feature binding a user to a specific backend instance to maintain in-memory session state.

65
New cards

Amazon S3

Durable object storage often used for backups, static content, and DR data.

66
New cards

DynamoDB Global Tables

Multi-region, multi-master DynamoDB replication for active-active global applications.

67
New cards

Aurora Global Database

Cross-region Aurora setup providing sub-second replication and minute-level failover.

68
New cards

Amazon Aurora

Cloud-native relational database compatible with MySQL/PostgreSQL offering higher performance than standard RDS.

69
New cards

Placement Group

EC2 feature controlling the physical placement of instances for performance or resilience.