Which statement correctly describes a key difference between Azure Load Balancer and Azure Application Gateway?
Think about the OSI layers each service works on and what kind of traffic they handle.
Azure Load Balancer works at Layer 4 and routes traffic based on IP and port without inspecting HTTP details. Application Gateway works at Layer 7 and can route based on HTTP headers, URLs, and supports SSL termination.
You need to offload SSL processing from your backend servers to improve performance. Which Azure service should you choose?
Consider which service works at the application layer and can decrypt HTTPS traffic.
Azure Application Gateway supports SSL termination, allowing it to decrypt HTTPS traffic and forward it as HTTP to backend servers, reducing their load. Azure Load Balancer does not support SSL termination.
Your web application experiences sudden spikes in traffic. You want to scale efficiently and maintain session persistence. Which service and feature combination is best?
Think about which service supports cookie-based session affinity and why that matters for web apps.
Azure Application Gateway supports cookie-based session affinity, which helps maintain user sessions during scaling. Azure Load Balancer supports source IP affinity but is less effective for HTTP session persistence.
You have a limited budget and need basic TCP load balancing without advanced HTTP features. Which Azure service is more cost-effective and appropriate?
Consider which service is designed for simple transport layer load balancing and typically costs less.
Azure Load Balancer is designed for simple Layer 4 load balancing and is generally more cost-effective for TCP/UDP traffic without advanced HTTP features. Application Gateway is more expensive due to Layer 7 capabilities.
Your application gateway must handle 10,000 concurrent HTTPS connections with SSL termination. Each connection requires 1 Mbps bandwidth. What is the minimum bandwidth capacity you should provision to avoid bottlenecks?
Think about overhead, peak usage, and safety margins when estimating capacity.
While 10,000 connections × 1 Mbps equals 10 Gbps, you should provision extra capacity (e.g., double) to handle overhead, SSL processing, and traffic spikes, so 20 Gbps is safer.