Skip to content
This repository has been archived by the owner on Feb 1, 2023. It is now read-only.

Commit

Permalink
Merge pull request serverless#4308 from sime/dlq-sqs-typo
Browse files Browse the repository at this point in the history
SQS queue, not SNS queue
  • Loading branch information
pmuens authored Sep 24, 2017
2 parents 1159e5b + b67c092 commit a1398a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/providers/aws/guide/functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ These versions are not cleaned up by serverless, so make sure you use a plugin o

## Dead Letter Queue (DLQ)

When AWS lambda functions fail, they are [retried](http://docs.aws.amazon.com/lambda/latest/dg/retries-on-errors.html). If the retries also fail, AWS has a feature to send information about the failed request to a SNS topic or SNS queue, called the [Dead Letter Queue](http://docs.aws.amazon.com/lambda/latest/dg/dlq.html), which you can use to track and diagnose and react to lambda failures.
When AWS lambda functions fail, they are [retried](http://docs.aws.amazon.com/lambda/latest/dg/retries-on-errors.html). If the retries also fail, AWS has a feature to send information about the failed request to a SNS topic or SQS queue, called the [Dead Letter Queue](http://docs.aws.amazon.com/lambda/latest/dg/dlq.html), which you can use to track and diagnose and react to lambda failures.

You can setup a dead letter queue for your serverless functions with the help of a SNS topic and the `onError` config parameter.

Expand Down

0 comments on commit a1398a9

Please sign in to comment.