A collaborative document editing platform hosts its application on AWS. Users access static UI assets (such as CSS, JavaScript, and images) and retrieve real-time document metadata stored in an Amazon DynamoDB table. Users in distant geographic regions report high latency when loading the application and retrieving metadata. The DynamoDB database is also experiencing read performance bottlenecks due to repetitive queries for the same metadata. Which combination of configurations should the solutions architect implement to reduce latency for both static assets and database queries? (Select TWO.)
- Configure Amazon CloudFront with an Amazon S3 origin to cache and deliver the static UI assets closer to the users.Cevap
- Deploy Amazon DynamoDB Accelerator (DAX) to cache database read operations for the document metadata.Cevap
- CConfigure an Amazon CloudFront distribution for the static UI assets and set the cache behavior's Minimum TTL, Maximum TTL, and Default TTL to 0.
- DSwitch the DynamoDB table capacity mode to provisioned capacity mode with high read capacity units (RCUs) to handle the spikes in metadata requests.
- EConfigure Amazon Route 53 latency-based routing to distribute database queries across separate DynamoDB tables in different regions without configuring health checks.
Cevap
Configure Amazon CloudFront with an Amazon S3 origin to cache and deliver the static UI assets closer to the users, and deploy Amazon DynamoDB Accelerator (DAX) to cache database read operations for the document metadata.
The correct combination uses Amazon CloudFront to cache static UI assets (such as CSS, JavaScript, and images) at Edge Locations closer to the users, and uses Amazon DynamoDB Accelerator (DAX) to provide an in-memory cache directly in front of the DynamoDB table, reducing read latency for repetitive document metadata queries to microseconds.
Adım Adım Çözüm
Anahtar Kavram
Multi-tier caching using Amazon CloudFront for edge content delivery and Amazon DynamoDB Accelerator (DAX) for in-memory database query acceleration.
Tahmini Süre:2m 0s