AWS Certified Solutions Architect – Professional — Question 323

A company's main intranet page has experienced degraded response times as its user base has increased although there are no reports of users seeing error pages. The application uses Amazon DynamoDB in read-only mode.
Amazon DynamoDB latency metrics for successful requests have been in a steady state even during times when users have reported degradation. The
Development team has correlated the issue to ProvisionedThrough put Exceeded exceptions in the application logs when doing Scan and read operations The team also identified an access pattern of steady spikes of read activity on a distributed set of individual data items.
The Chief Technology Officer wants to improve the user experience.
Which solutions will meet these requirements with the LEAST amount of changes to the application? (Choose two.)

Answer options

Correct answer: A, E

Explanation

Refactoring the data model to ensure uniform data access (Option A) directly addresses the root cause of uneven read activity, allowing the application to utilize its provisioned throughput efficiently without hitting partition limits. Removing or adjusting error retries and exponential backoffs (Option E) prevents the application from compounding the throttling issue during spikes, thereby stabilizing response times and improving overall user experience with minimal code changes.