20.2k views
3 votes
What is the difference between SNS and SQS?

A.) SNS pulls (polls), whereas SQS is pushed based message service
B.) SNS is a push notification service, whereas SQS is a message system that requires worker nodes to poll a queue
C.) SQS sends messages to people on topics, whereas SNS manages tasks
D.) SQS and SNS are basically the same service

1 Answer

3 votes

Answer: (B) SNS is a push notification service, whereas SQS is a message system that requires worker nodes to poll a queue

Step-by-step explanation:

In SNS the messages are delivered as soon as they are sent however in SQS they are kept in a queue and are delivered upon polling.

User Han Tran
by
5.6k points