A global e-commerce company is migrating its legacy database architecture to AWS. The company requires a database solution that can handle a product catalog database with read queries that must return in less than a millisecond. Additionally, transactional order records must be written with high throughput, and reporting queries must be offloaded to prevent performance degradation on the primary writer node.
Which combination of database configurations will meet these requirements? (Select TWO.)
- Configure Amazon Aurora with Auto Scaling Read Replicas to handle transactional writes on the primary instance and route reporting queries to the reader endpoint.Cevap
- Deploy Amazon ElastiCache for Redis to store and serve cached product catalog data with sub-millisecond latency.Cevap
- CConfigure an Amazon RDS for MySQL Multi-AZ deployment and route reporting queries to the standby DB instance to reduce load on the primary DB instance.
- DProvision an Amazon DynamoDB table for order records, using a monotonically increasing sequence number as the partition key to maximize write partition efficiency.
- EDeploy Amazon RDS for PostgreSQL and use the read replica as the automatic failover target for high availability instead of enabling Multi-AZ.
Cevap
The correct configurations are to deploy Amazon ElastiCache for Redis to cache catalog reads and configure Amazon Aurora with Auto Scaling Read Replicas to offload reporting queries.
Configuring Amazon Aurora with Auto Scaling Read Replicas allows the application to scale read capacity dynamically and direct reporting queries to the reader endpoint, preventing performance impact on the primary writer. Deploying Amazon ElastiCache for Redis in front of the database provides sub-millisecond response times for cached product catalog queries, meeting the extreme low-latency read requirements.
Adım Adım Çözüm
Anahtar Kavram
Designing high-performing database architectures on AWS using caching, replication, and appropriate partition key design.