
Answer-first summary for fast verification
Answer: Evaluate and adjust the write capacity units (WCUs) for the DynamoDB tables., Configure a dead letter queue that will reprocess failed or timed-out Lambda functions.
B: Evaluate and adjust the write capacity units (WCUs) for the DynamoDB tables. When thousands of users are interacting with your application simultaneously, it can generate a high volume of writes to the DynamoDB tables. If the provisioned write capacity units (WCUs) are insufficient, you will experience throttling, which can lead to delays and performance issues. By adjusting and increasing the WCUs, you can ensure that DynamoDB can handle the higher write throughput, thereby improving performance and mitigating one of the causes of execution issues in the AWS Lambda functions. D: Configure a dead letter queue that will reprocess failed or timed-out Lambda functions. Configuring a dead letter queue (DLQ) is a best practice to enhance the reliability of Lambda functions. A DLQ allows you to capture and store events that failed to process successfully. By reprocessing these failed or timed-out events, you can ensure that transient issues or errors do not result in lost data or unprocessed transactions. This helps in making the application more resilient and reliable, as it provides a mechanism to handle failures gracefully and retry operations as needed.
Author: LeetQuiz Editorial Team
Ultimate access to all questions.
No comments yet.
A media storage application uploads user photos to Amazon S3 for processing. End users are reporting that some uploaded photos are not being processed properly. The Application Developers trace the logs and find that AWS Lambda is experiencing execution issues when thousands of users are on the system simultaneously. Issues are caused by: Limits around concurrent executions. The performance of Amazon DynamoDB when saving data. Which actions can be taken to increase the performance and reliability of the application? (Choose two.)
A
Evaluate and adjust the read capacity units (RCUs) for the DynamoDB tables.
B
Evaluate and adjust the write capacity units (WCUs) for the DynamoDB tables.
C
Add an Amazon ElastiCache layer to increase the performance of Lambda functions.
D
Configure a dead letter queue that will reprocess failed or timed-out Lambda functions.
E
Use S3 Transfer Acceleration to provide lower-latency access to end users.