SNS to Lambda vs SNS to SQS to Lambda

Amazon Web-ServicesAws LambdaAmazon SqsAmazon Sns

Amazon Web-Services Problem Overview


I'm trying to understand whether I need SQS in my workflow if someone can help explain. In my app, when an action is taken, it submits info to SNS topic which invokes Lambda to do some processing. This is working great as it is.

When I do research online, it seems that people are using SQS in this stack as well where SNS would put info on SQS and then SQS would then invoke Lambda.

I guess what I'm trying to understand is the need for SQS in this. What value does that add? In other words, what am I losing by invoking my Lambda directly from SNS?

Amazon Web-Services Solutions


Solution 1 - Amazon Web-Services

Primary advantage of having a SQS in between SNS and Lambda is Reprocessing. Assume that the Lambda fails to process certain event for some reason (e.g. timeout or lack of memory footprint), you can increase the timeout (to max 5 minutes) or memory (to max of 1.5GB) and restart your polling and you can reprocess the older events.

This would not be possible in case of SNS to Lambda, wherein if Lambda fails the event is lost. And even if you configure DLQ you would still have to make provisions for reading that separately and processing the message

So if your events are critical and you don't want to miss out on them, then go for SNS - SQS - Lambda

The other advantage of having SQS is cost saving on Lambda invocations (Thanks @codesinthedark for bringing this up). You can have much better scaling and less cost, as it allows you to process messages in batches. So one lambda can be executed for a batch of 10 messages while in case of direct SNS each message would trigger a lambda invocation.

Solution 2 - Amazon Web-Services

I think couple of things changed in 2019 and SQS can trigger lambda via event source mapping which is mentioned by @alexs. Related blog post: https://aws.amazon.com/about-aws/whats-new/2018/04/aws-lambda-now-supports-amazon-sqs-as-event-source/

To summarize, you can use SQS to lambda with following benefits:

  • Reprocessing events in case of failure and configure how many times a message should be retried before you give up (receive count)
  • Longer retention period
  • Typically chosen in the scenarios where there is a long running job and the lambda polls one by one from job queue.

you can choose to use SNS:

  • If you need to fanout a single message to multiple destinations, say X message should be processed by Y and Z applications. I feel this is the biggest advantage, and if you want reliability in this, you can couple SNS and SQS together.
  • You do not care about lost messages. Remember that there are still retry stratergies when using SNS(linear, geometric, exponential etc)
  • Typically used in the cases where you can ingest/process messages faster. This can sometimes be a problem as well; imagine a scenario where there is a SNS notification for every email that your business receives and you dont have enough lambda concurrency to process all of them. You can solve this by putting an SQS to consume at your own pace.

In both the cases, there can be duplicate messages(in the cases of retry) and there cannot be order guarantees. If you need one, consider Kinesis streams.

Solution 3 - Amazon Web-Services

Solution 4 - Amazon Web-Services

Adding to @Arafat Nalkhande's answer here are few benefits of SQS's lambda

  1. In SQS we can put a delay, so that message gets processed after some time, it may be useful in the scenario where data takes time to be available.

  2. SQS can serve as a contingency store, lets say downstream services are unavailable, message can be retained in sqs for 15 days.

Solution 5 - Amazon Web-Services

SQS does not invoke Lambda. SQS cannot invoke anything. People using Lambda with SQS are running Lambda on an event timer, like once a minute, and every time the function runs it polls SQS to see if there is a message to process.

If you don't need to queue things up and prevent too many Lambda functions from running concurrently then you don't need a queue system like SQS.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionSaumil ShahView Question on Stackoverflow
Solution 1 - Amazon Web-ServicesArafat NalkhandeView Answer on Stackoverflow
Solution 2 - Amazon Web-ServicesSt1id3rView Answer on Stackoverflow
Solution 3 - Amazon Web-ServicesalexsView Answer on Stackoverflow
Solution 4 - Amazon Web-Servicesbest wishesView Answer on Stackoverflow
Solution 5 - Amazon Web-ServicesMark BView Answer on Stackoverflow