Reputation: 491
I am new to Azure architecture. I want to manage failover between two data centers.
Example:
Data center A has Web apps, storage account, SQL database.
Data center B has same services Web apps, storage account, SQL database.
When one of the service goes down from Data center A, traffic manager should send request to Data center B where all services should up and provide response to requests.
Upvotes: 0
Views: 183
Reputation: 189
Here's a design article you may find useful. It describes how to manage failovers between different regions using SQL database geo-replication and Traffic manager.
Upvotes: 0
Reputation: 24656
You can use Azure Traffic Manager with in Failover mode: https://azure.microsoft.com/en-us/documentation/articles/traffic-manager-configure-failover-routing-method/
It'll let you direct all requests to Data Center A by default, but have it fail over to Data Center B if A goes down.
Upvotes: 0