An organization is designing a high-availability architecture across the East US and West US regions. The design uses Azure Front Door to route client traffic to web applications and Azure Traffic Manager to route DNS requests for regional API gateways. The target Recovery Time Objective (RTO) for any endpoint failover event is less than 2 minutes. You need to configure the failover detection and routing parameters for both services to meet the RTO while minimizing false-positive failovers. Which two configurations should you recommend? (Select TWO.)
- For Azure Traffic Manager, set the DNS Time-to-Live (TTL) to 30 seconds, and configure the health probing interval to 10 seconds.Answer
- For Azure Front Door, configure health probes with an interval of 5 seconds using HTTP or HTTPS protocols to detect endpoint failures.Answer
- CFor Azure Traffic Manager, configure SSL termination and URL path-based routing rules to direct traffic to healthy endpoints based on the incoming request URI.
- DFor Azure Front Door, configure health probes to use raw TCP ping probes on port 443 to monitor endpoint availability while reducing backend load.
Answer
The correct configuration is to set the Azure Traffic Manager DNS Time-to-Live (TTL) to 30 seconds and the health probing interval to 10 seconds, and to configure the Azure Front Door health probes with an interval of 5 seconds using HTTP or HTTPS protocols.
The correct strategy combines configuring Azure Traffic Manager with a low DNS TTL of 30 seconds and a 10-second probing interval to satisfy DNS propagation time constraints, and configuring Azure Front Door with short 5-second health probes using HTTP/HTTPS. These settings ensure that both DNS-based and application-level routing layers failover within the required 2-minute threshold.
Step-by-Step Solution
Key Concept
Designing multi-region traffic routing requires configuring low DNS TTLs and fast health probe intervals to meet tight RTO targets, while respecting protocol limitations of DNS-based versus application-level routing services.