Using Amazon SQS with multiple consumers

前端 未结 3 443
走了就别回头了
走了就别回头了 2020-12-24 12:03

I have a service-based application that uses Amazon SQS with multiple queues and multiple consumers. I am doing this so that I can implement an event-based architecture and

3条回答
  •  生来不讨喜
    2020-12-24 12:21

    They even have a tutorial on how to create a fanout scenario using the combo SNS+SQS.

    https://aws.amazon.com/getting-started/tutorials/send-fanout-event-notifications/

    Too bad it does not support FIFO queues so you have to be careful to handle out of order messages.

    It would be nice if they had a consistent hashing solution to have multiple competing consumers while respecting the message order.

提交回复
热议问题