Mohamed Gamal
Mohamed Gamal

Reputation: 139

What are the best practices to follow for multi-region failover when there are SQS messages queued in the failing region?

Assume that I have a full-stack replicated and running on two geographical regions A and B, and the ELB application of region A has fallen for some reason, so we need to redirect all traffic to region B. Assuming that there are messages queued in the SQS of region A, what are some good practices to handle this situation?

Upvotes: 2

Views: 557

Answers (1)

Seth E
Seth E

Reputation: 1115

You can use Amazon SNS to fan out messages to multi SQS queues, even in multiple different regions. Details here: Sending Amazon SNS messages to an Amazon SQS queue or AWS Lambda function in a different Region

Upvotes: 1

Related Questions