A health-tech company is designing a disaster recovery and traffic routing solution for a global patient portal hosted in both the East US 2 and UK South regions. The design must meet the following requirements:
- Terminate SSL sessions at the global entry point.
- Inspect traffic using a Web Application Firewall (WAF).
- Route requests dynamically based on the URL path, directing `/clinical/*` to one set of backend services and `/billing/*` to another.
- Ensure failover to the secondary region occurs in under 30 seconds during an outage, without relying on client-side DNS caching updates.
Which Azure service or feature should you recommend to manage the ingress traffic routing?
- AAzure Traffic Manager
- Azure Front DoorAnswer
- CAzure SQL Database Auto-Failover Groups
- DAzure Traffic Manager routing to regional Standard Load Balancers configured with Basic SKU public IP addresses
Answer
Azure Front Door
The correct answer is Azure Front Door. Azure Front Door is a global Layer 7 load balancer that uses Anycast-based routing. It natively supports SSL offloading, WAF policy integration, and path-based routing. Because it splits TCP sessions close to users and uses Anycast, failover to a healthy region is extremely fast (under 30 seconds) and does not rely on client DNS cache expiration to route traffic away from an unhealthy region.
Step-by-Step Solution
Key Concept
Design Traffic Routing and Failover Strategies