SQS
- http://blog.turret.io/rabbitmq-vs-amazon-sqs-a-short-comparison/
- https://stackoverflow.com/questions/46880229/migrate-from-amqp-to-amazon-sns-sqs-need-to-understand-concepts
- https://sookocheff.com/post/messaging/dissecting-sqs-fifo-queues/
- https://aws.amazon.com/blogs/developer/how-the-amazon-sqs-fifo-api-works/
What Does “FIFO” Mean, Anyhow?
FIFO is only really meaningful when you have one single-threaded sender and one single-threaded receiver. If there are a bunch of threads or processes writing into a queue, you can’t really even tell if it’s FIFO: the messages show up in the queue depending on when the senders get scheduled.
- 分布式开放消息系统(RocketMQ)的原理与实践