Topic 1 Question 399
An AWS Lambda function is invoked asynchronously to process events. Occasionally, the Lambda function falls to process events. A developer needs to collect and analyze these failed events to fix the issue.
What should the developer do to meet these requirements with the LEAST development effort?
Add logging statements for all events in the Lambda function. Filter AWS CloudTrail logs for errors.
Configure the Lambda function to start an AWS Step Functions workflow with retries for failed events.
Add a dead-letter queue to send messages to an Amazon Simple Queue Service (Amazon SQS) standard queue.
Add a dead-letter queue to send messages to an Amazon Simple Notification Service (Amazon SNS) FIFO topic.
ユーザの投票
コメント(3)
- 正解だと思う選択肢: C
A dlq in SQS
👍 3rdiaz2024/07/12 C. Add a dead-letter queue to send messages to an Amazon Simple Queue Service (Amazon SQS) standard queue.
👍 3komorebi2024/07/12- 正解だと思う選択肢: C
To collect and analyze the failed events of an AWS Lambda function invoked asynchronously, the developer can leverage Lambda's built-in Dead Letter Queue (DLQ) feature with minimal development effort.
👍 1preachr2024/10/07
シャッフルモード