amazon-sqs
Why should I use Amazon Kinesis and not SNS-SQS?
Keep in mind this answer was correct for Jun 2015 After studying the issue for a while, having the same question in mind, I found that SQS (with SNS) is preferred for most use cases unless the order of the messages is important to you (SQS doesn’t guarantee FIFO on messages). There are 2 main … Read more
What is the difference between Amazon SNS and Amazon SQS?
SNS is a distributed publish-subscribe system. Messages are pushed to subscribers as and when they are sent by publishers to SNS. SQS is distributed queuing system. Messages are not pushed to receivers. Receivers have to poll or pull messages from SQS. Messages can’t be received by multiple receivers at the same time. Any one receiver … Read more