Skip to main content

Menu

LEVEL 0
0/5 XP
HomeAboutTopicsPricingMy VaultStatsPractice TestsCertifications

Categories

🎓 Certifications
🤖 Artificial Intelligence
☁️ Cloud and Infrastructure
💾 Data and Databases
💼 Professional Skills
🎯 Programming and Development
🔒 Security and Networking
📚 Specialized Topics
CheatGrid
HomeAboutTopicsPricingMy VaultStatsPractice TestsCertifications
LVLEVEL 0
0/5 XP
GitHub
© 2026 CheatGrid™. All rights reserved.
Privacy PolicyTerms of UseAboutContact

Cloud Load Balancing Cheat Sheet

Cloud Load Balancing Cheat Sheet

Back to Cloud Computing
Updated 2026-05-25
Next Topic: Cloud Message Queues and Event-Driven Architecture Cheat Sheet

Cloud load balancing distributes incoming network traffic across multiple servers or computing resources to ensure no single resource becomes overwhelmed, improving application availability, fault tolerance, and performance. Operating at various layers of the OSI model (Layer 4 for transport-level and Layer 7 for application-level routing), load balancers are essential infrastructure components for modern cloud architectures, supporting everything from simple round-robin distribution to sophisticated content-based routing with health checks, SSL termination, and cross-region failover. A key distinction to understand: Layer 4 load balancers route traffic based on IP addresses and TCP/UDP ports without inspecting packet contents, while Layer 7 load balancers make intelligent routing decisions by analyzing HTTP headers, URLs, cookies, and application data — this fundamental difference determines which balancer type suits your use case, whether you need raw throughput and minimal latency (Layer 4) or advanced content routing and protocol-aware features (Layer 7). In 2025–2026, new capabilities like ALB Target Optimizer for AI inference, QUIC/HTTP3 passthrough on NLB, JWT verification offloading, and eBPF-based load balancing are reshaping what cloud load balancers can do.

What This Cheat Sheet Covers

This topic spans 26 focused tables and 202 indexed concepts. Below is a complete table-by-table outline of this topic, spanning foundational concepts through advanced details.

Table 1: AWS Load Balancer TypesTable 2: Azure Load Balancer TypesTable 3: GCP Load Balancer TypesTable 4: Layer 4 vs Layer 7 Load BalancingTable 5: Load Balancing AlgorithmsTable 6: Content-Based Routing StrategiesTable 7: Request Transforms (ALB URL Rewrite)Table 8: Health Checks and FailoverTable 9: SSL/TLS Termination and CertificatesTable 10: Session ManagementTable 11: Client IP PreservationTable 12: Cross-Zone and Cross-Region Load BalancingTable 13: Global Server Load Balancing (GSLB)Table 14: Target Groups and Backend PoolsTable 15: Auto Scaling IntegrationTable 16: Load Balancing SecurityTable 17: Monitoring and ObservabilityTable 18: Protocol SupportTable 19: Kubernetes Load BalancingTable 20: Service Mesh Load BalancingTable 21: CDN and Edge Load BalancingTable 22: Open-Source and Software Load BalancersTable 23: AI-Aware Load BalancingTable 24: Advanced Traffic ManagementTable 25: Load Balancer Configuration and Cost OptimizationTable 26: eBPF and Kernel-Bypass Load Balancing

Table 1: AWS Load Balancer Types

AWS offers four Elastic Load Balancing types, each targeting a distinct layer and use case. Understanding when to choose ALB, NLB, or GWLB prevents over-engineering and keeps costs in check — NLB is dramatically cheaper for pure TCP traffic that doesn't need Layer 7 inspection.

TypeExampleDescription
Application Load Balancer (ALB)
aws elbv2 create-load-balancer
--name my-alb
--subnets subnet-12345
--scheme internet-facing
• Layer 7 (HTTP/HTTPS) load balancer with content-based routing
• supports path-based and host-based rules, WebSocket, HTTP/2, gRPC, mTLS, JWT verification, and URL transforms.
Network Load Balancer (NLB)
aws elbv2 create-load-balancer
--name my-nlb
--type network
--subnets subnet-12345
• Layer 4 (TCP/UDP/TLS/QUIC) load balancer optimized for ultra-low latency and millions of requests per second
• preserves source IP; now supports QUIC passthrough (2025).

More in Cloud Computing

  • Cloud Identity Federation Cheat Sheet
  • Cloud Message Queues and Event-Driven Architecture Cheat Sheet
  • AI Agent Mesh and Agentic Cloud Infrastructure Cheat Sheet
  • Cloud Auto-Scaling Cheat Sheet
  • Cloud Pricing Models and Commitments Cheat Sheet
  • Google Cloud Platform - GCP Core Cheat Sheet
View all 57 topics in Cloud Computing