An organization is designing a high-availability global infrastructure across the East US and West US regions for two key services:
* Service A: An HTTPS-based web portal requiring URL path-based routing (e.g., `/api/*` to an API cluster and `/static/*` to storage), SSL offloading, and client session stickiness.
* Service B: A proprietary database synchronization engine running on custom TCP port 14330 that requires low-latency routing to the nearest region, with a strict failover detection and client redirection time of under 10 seconds.
Which global traffic routing and failover strategy should you recommend to meet these requirements?
- Deploy Azure Front Door for Service A to handle SSL offloading and path-based routing. Deploy a cross-region Azure Load Balancer (Global tier) for Service B with a TCP health probe configured with a 5-second interval and 2 failures.Cevap
- BDeploy Azure Front Door for both Service A and Service B, configuring a standard HTTP/S routing rule for Service A and a custom TCP routing rule on port 14330 for Service B.
- CDeploy Azure Traffic Manager for both workloads, utilizing TCP-based health probes and setting the DNS Time-to-Live (TTL) to 5 seconds to ensure fast redirection and protocol compatibility.
- DDeploy Azure Front Door for Service A to handle SSL offloading and path-based routing. Deploy Azure Traffic Manager for Service B, configuring a TCP health probe with a 5-second interval and a 5-second DNS Time-to-Live (TTL).
Cevap
Deploy Azure Front Door for the HTTP/S portal and a cross-region Azure Load Balancer for the custom TCP service.
The correct strategy combines Azure Front Door for the Layer 7 HTTPS workload and a cross-region Azure Load Balancer (Global tier) for the custom TCP workload. Azure Front Door handles SSL offloading and path-based routing natively at the edge. The cross-region Load Balancer acts at Layer 4, supporting custom TCP port 14330, and provides deterministic failover under 10 seconds via Anycast routing, avoiding DNS caching issues that affect Traffic Manager.
Adım Adım Çözüm
Anahtar Kavram
Selecting the correct global load balancer based on Layer 4 vs. Layer 7 capabilities, protocol support, and failover latency constraints.