I have a microservice which pushes the messages to the SQS Fifo queue. If in future the SQS is down, How can I configure a secondary SQS as a failover. Could also please mind in explaining how AWS manages the high availability of SQS.
IS SQS a region based service or an Availability-zone based service.
CodePudding user response:
You can read the SLA here. SQS is regional, and highly-available within each region.
Here's a guide to Disaster Recover on SQS, which provides suggested architectures for:
- Active-Active
- Backup & Restore
- Pilot Light
- Warm Standby