Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is the fanout pattern using AWS SNS ans SQS reliable?

AWS blog says that it supports the fanout messaging pattern. To do that, I subscribe SQS queues to a SNS topic.
Now my question is, is the publishing of message to SQS by SNS reliable? As in, is it guaranteed that the SNS will always successfully post a notification (message) on all SQS queues that are subscribed, upon every post to SNS?

like image 934
Enno Shioji Avatar asked Dec 12 '12 13:12

Enno Shioji


1 Answers

I believe this is a guaranteed service, at least that's what I was told last time I met with the SNS/SQS team. We make use of SNS->SQS bindings quite heavily

like image 128
tddmonkey Avatar answered Oct 27 '22 11:10

tddmonkey