Azure Load Balancer operates at Layer 4. Which statement best describes how it distributes incoming traffic?
Think about what Layer 4 means in the OSI model and what kind of information is available at that layer.
Azure Load Balancer works at Layer 4, which means it routes traffic based on IP address and port without inspecting higher-level data like HTTP headers or URLs.
You want to design a highly available web application using Azure Load Balancer. Which architecture best ensures no single point of failure?
Consider how Azure Load Balancer and availability zones work together to avoid downtime.
Deploying VMs across multiple availability zones with health probes ensures that if one zone fails, traffic is routed to healthy VMs in other zones, avoiding single points of failure.
Your application experiences sudden traffic spikes. How does Azure Load Balancer handle scaling backend VMs to maintain performance?
Think about how Azure Load Balancer knows which VMs to send traffic to and how scaling works in Azure.
Azure Load Balancer distributes traffic only to VMs registered in its backend pool. Scaling VMs requires manual or automated processes outside the load balancer to add or remove VMs from the pool.
You need to decide between Azure Load Balancer (Layer 4) and Azure Application Gateway (Layer 7) for your web app. Which tradeoff is accurate?
Consider the OSI layers each service operates on and their feature sets.
Azure Load Balancer works at Layer 4, handling TCP/UDP traffic quickly without inspecting HTTP details. Application Gateway works at Layer 7, enabling HTTP-specific features like SSL termination and URL routing but with some added latency.
Your service expects 1 million TCP connections per second. What is the best approach to estimate if Azure Load Balancer can handle this load?
Think about official Azure service limits and how to plan capacity.
Azure Load Balancer has documented limits on throughput and connections per second. Estimating capacity requires consulting these limits and scaling backend resources while considering health probe traffic.