
Ultimate access to all questions.
Deep dive into the quiz with AI chat providers.
We prepare a focused prompt with your quiz and certificate details so each AI can offer a more tailored, in-depth explanation.
A company has a popular gaming platform running on AWS. The application is sensitive to latency because latency can impact the user experience and introduce unfair advantages to some players. The application is deployed in every AWS Region. It runs on Amazon EC2 instances that are part of Auto Scaling groups configured behind Application Load Balancers (ALBs). A solutions architect needs to implement a mechanism to monitor the health of the application and redirect traffic to healthy endpoints.
Which solution meets these requirements?
A
Configure an accelerator in AWS Global Accelerator. Add a listener for the port that the application listens on, and attach it to a Regional endpoint in each Region. Add the ALB as the endpoint.
B
Create an Amazon CloudFront distribution and specify the ALB as the origin server. Configure the cache behavior to use origin cache headers. Use AWS Lambda functions to optimize the traffic.
C
Create an Amazon CloudFront distribution and specify Amazon S3 as the origin server. Configure the cache behavior to use origin cache headers. Use AWS Lambda functions to optimize the traffic.
D
Configure an Amazon DynamoDB database to serve as the data store for the application. Create a DynamoDB Accelerator (DAX) cluster to act as the in-memory cache for DynamoDB hosting the application data.
Explanation:
Correct Answer: A
Why Option A is correct:
AWS Global Accelerator is specifically designed for global applications that require low latency and high availability. It uses the AWS global network infrastructure to route traffic to the nearest healthy endpoint.
Health monitoring and failover: Global Accelerator continuously monitors the health of endpoints (ALBs in this case) and automatically redirects traffic to healthy endpoints when issues are detected. This provides automatic failover capabilities.
Anycast IP addresses: Global Accelerator provides static IP addresses that act as a fixed entry point to your application. Traffic is automatically routed to the nearest healthy endpoint based on network conditions.
Regional endpoints: By configuring regional endpoints in each AWS Region and attaching the ALBs as endpoints, Global Accelerator can monitor health and route traffic appropriately across all regions.
Why other options are incorrect:
Option B (CloudFront with ALB origin):
Option C (CloudFront with S3 origin):
Option D (DynamoDB with DAX):
Key Requirements Met by Option A: