Topic 1 Question 276
A company has implemented an ordering system using an event-driven architecture. During initial testing, the system stopped processing orders. Further log analysis revealed that one order message in an Amazon Simple Queue Service (Amazon SQS) standard queue was causing an error on the backend and blocking all subsequent order messages. The visibility timeout of the queue is set to 30 seconds, and the backend processing timeout is set to 10 seconds. A solutions architect needs to analyze faulty order messages and ensure that the system continues to process subsequent messages.
Which step should the solutions architect take to meet these requirements?
Increase the backend processing timeout to 30 seconds to match the visibility timeout.
Reduce the visibility timeout of the queue to automatically remove the faulty message.
Configure a new SQS FIFO queue as a dead-letter queue to isolate the faulty messages.
Configure a new SQS standard queue as a dead-letter queue to isolate the faulty messages.
ユーザの投票
コメント(17)
- 正解だと思う選択肢: D
It's D - can't be C because the queue is standard queue. "The dead-letter queue of a FIFO queue must also be a FIFO queue. Similarly, the dead-letter queue of a standard queue must also be a standard queue." https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-dead-letter-queues.html
👍 7SkyZeroZx2023/07/02 - 正解だと思う選択肢: D
It's D - can't be C because the queue is standard queue. "The dead-letter queue of a FIFO queue must also be a FIFO queue. Similarly, the dead-letter queue of a standard queue must also be a standard queue." https://docs.aws.amazon.com/AWSSimpleQueueService/latest/SQSDeveloperGuide/sqs-dead-letter-queues.html
👍 2SmileyCloud2023/06/27 - 正解だと思う選択肢: D
Option D is most logical right answer. This question description looks little confusing. Why in a standard SQS one faulty message can block other message processing. It must be a FIFO queue. Processing logic should continue reading other arriving messages that are not faulty. One faulty message may keep failing after every 30 sec of visibility timeout.
👍 2career360guru2023/11/19
シャッフルモード