What if a Lambda function fails to process an SQS message within the visibility timeout of the queue?

0

When a Lambda function receives an SQS message and fails to process it within the visibility timeout of the queue, which of the following happens?

  • The Lambda function retries to process the message after the visibility timeout ends.
  • The Lambda function retries to process the message as soon as possible, even before the visibility timeout ends.

NOTE:

  • Suppose that the SQS queue is a fifo queue.
2 回答
1

When you use a queue as an event source mapping for a Lambda function, the Lambda service polls that queue for you. It will behave like any polling code - once a poll reads a message it becomes invisible to subsequent polls unless the visibility timeout is exceeded, then the next poll will pick it up again and another function instance will process it.

专家
已回答 2 年前
profile pictureAWS
专家
已审核 2 年前
0

Please read this document very thoroughly if you haven't done so already, to understand the nuances of how lambda works with an SQS event source - https://docs.aws.amazon.com/lambda/latest/dg/with-sqs.html

In particular please take a look at this recommendation - "We recommend setting your queue visibility timeout to six times your function timeout, plus the value of MaximumBatchingWindowInSeconds. This allows time for your Lambda function to process each batch of events and to retry in the event of a throttling error."

profile pictureAWS
专家
已回答 2 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则