Reputation: 139
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
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