Report
AWS SNS vs. SQS - What are the main differences?
This post introduces you to both AWS SNS and SQS and shows you the differences. It also shows examples when you should use which service.
blog.serverlessq.com
This post introduces you to both AWS SNS and SQS and shows you the differences. It also shows examples of when you should use which service.
i use both of these services in a project i am currently working on. SNS i use for app to app communications from my serverless environment. SQS i use in my containers to process CPU-intensive jobs. during architecture i thought to myself well can't i really just utilize SQS for both of these? i tried it out, and found SNS was superior for the serverless comms between my jobs and processes outside of my containers. my containers run a single queue consumer process, which keeps my container workload from having to scale so often. in doing this, i was trying to mimic the process of job queuing as it is done in BeeQueue for NodeJS or laravel. thanks for putting the differences between these services together, this was informative.