AWS Solutions Architect - Advanced Quiz
← Back to Quiz Home
This quiz tests your mastery of advanced architectural patterns, hybrid connectivity, performance tuning, and complex migration strategies.
You observe an API Gateway returning "504 Gateway Timeout" errors. The backend is a Lambda function. What is the most likely cause?
API Gateway has a hard integration timeout of 29 seconds. If the backend task takes longer, you must switch to an asynchronous pattern.
How can you implement an "Event Sourcing" pattern on AWS to maintain a complete audit trail of state changes?
Event Sourcing involves storing the sequence of state-changing events. Streams allow you to process and store these events permanently.
Which architecture is best suited for a "real-time" leaderboard that requires sorting millions of players by score with millisecond latency?
Redis Sorted Sets are data structures specifically optimized for rank-based operations, offering O(log N) performance that beats standard DB queries.
You need to connect your on-premise data center to your VPC with a dedicated, private, high-bandwidth connection (1 Gbps or 10 Gbps). Which service should you choose?
Direct Connect bypasses the public internet entirely, providing consistent network performance and high throughput.
How do you resolve a "Hot Partition" issue in a high-traffic DynamoDB table?
If one partition key value is accessed disproportionately (e.g., "User_1"), it creates a hot spot that limits throughput regardless of total provisioned capacity.
What is a valid strategy to handle "Thundering Herd" (massive retry storms) after an outage?
Jitter introduces randomness to the wait intervals, decoupling the synchronized retries that cause the herd effect.
Which pattern allows you to decouple a microservice that generates PDF reports (slow) from the user-facing API (fast)?
The API accepts the request and puts a message in a queue (SQS), returning "202 Accepted" instantly. A background worker processes the queue asynchronously.
How can you securely access an S3 bucket from an EC2 instance in a private subnet without using a NAT Gateway or Public IP?
The Gateway Endpoint creates a private route within the AWS network to S3, avoiding internet traversal and NAT costs.
What is the primary use case for "AWS Outposts"?
Outposts bring the AWS infrastructure (hardware) to your facility, managed by AWS.
How do you implement Cross-Region Replication (CRR) for an S3 bucket where compliance requires that the replica is owned by a different AWS account?
S3 CRR supports cross-account replication natively, provided IAM roles and bucket policies are correctly configured.
Which deployment strategy involves keeping the existing version live while deploying the new version to a separate environment, then switching traffic instantly?
Blue/Green minimizes downtime and allows instant rollback by switching the router/load balancer to the "Green" environment.
You have a "read-heavy" application using RDS PostgreSQL. The CPU utilization on the master DB is 90%. What is the most effective immediate fix?
Offloading read queries to replicas is the standard pattern for scaling relational databases horizontally for reads.
How can you ensure that your CloudFront distribution only serves content to users where they are geographically authorized (e.g., US only)?
CloudFront can block or allow requests based on the country code of the viewer.
What is the difference between "Strong Consistency" and "Eventual Consistency" in DynamoDB?
By default, DynamoDB uses eventually consistent reads to maximize throughput. You can request strongly consistent reads if needed.
Which service would you use to trace a single user request across API Gateway, Lambda, and DynamoDB to identify a performance bottleneck?
X-Ray provides a service map and "traces" that break down the time spent in each component of a distributed application.
How do you secure a Lambda function that needs to access a public SaaS API while running inside a private VPC subnet?
Lambda functions in VPCs do not have public IPs. They must route internet-bound traffic through a NAT device.
What is "Partition Alignment" regarding EBS volumes?
While critical in hard drives, modern EBS virtualization largely abstracts this, but older OSs or custom partitioned drives needed care.
Which architectures allows you to run a containerized application that scales to zero when not in use?
Serverless container options like Fargate (or Lambda) allow you to pay only when the code/container is actually running.
How can you improve the performance of S3 uploads for users distributed globally?
Transfer Acceleration uses CloudFront's globally distributed edge locations to route data to S3 over the AWS backbone network.
What is the "Strangler Fig" pattern used for?
It allows you to verify new services in production incrementally while the legacy system continues to handle the rest.
Quiz Progress
0 / 0 questions answered
(0% )
0 correct
Quiz Complete!
0%
Reset quiz
📚 Study Guides
📬 Weekly DevOps, Cloud & Gen AI quizzes & guides