惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Y
Y Combinator Blog
博客园_首页
雷峰网
雷峰网
V
V2EX
博客园 - 司徒正美
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
博客园 - Franky
月光博客
月光博客
Hugging Face - Blog
Hugging Face - Blog
WordPress大学
WordPress大学
T
Tailwind CSS Blog
小众软件
小众软件
博客园 - 叶小钗
美团技术团队
酷 壳 – CoolShell
酷 壳 – CoolShell
Apple Machine Learning Research
Apple Machine Learning Research
IT之家
IT之家
MyScale Blog
MyScale Blog
Blog — PlanetScale
Blog — PlanetScale
大猫的无限游戏
大猫的无限游戏
Jina AI
Jina AI
人人都是产品经理
人人都是产品经理
H
Help Net Security
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Load Balancing: The Matrix
Timevolt · 2026-06-22 · via DEV Community

Timevolt

The Quest Begins (The "Why")

Honestly, I was just trying to keep my tiny side‑project from melting down during a launch‑day traffic spike. I’d thrown together a simple round‑robin proxy, watched the logs fill with 502s, and felt like Neo staring at a wall of green code—confused and a little overwhelmed. The problem wasn’t that we didn’t have enough servers; it was that the traffic wasn’t being spread fairly. Some nodes got hammered while others twiddled their thumbs, and the whole thing started to look like a boss fight where I kept dying on the same pattern.

I asked myself: What if the load balancer could actually see how busy each backend is, and send new requests to the least‑loaded one? That sounded like the secret move I needed to dodge Agent Smith’s barrage of requests.

The Revelation (The Insight)

The breakthrough came when I stopped thinking about static schedules (round robin, weighted round robin) and started thinking about dynamic state. The key insight: measure the current number of active connections (or request latency) on each backend and always pick the one with the smallest value. This is the Least Connections algorithm, and when you add a tiny health‑check layer, it becomes remarkably resilient.

Why does this beat the old tricks?

Approach Pros Cons
Round Robin Simple, predictable Ignores real‑time load; a slow node still gets its share
Weighted Round Robin Can compensate for static capacity differences Still blind to temporary spikes or slow‑downs
Least Connections Sends traffic to the currently least busy node; automatically adapts to varying request costs Slightly more overhead (need to track state)
Least Response Time Even more reactive Requires accurate latency measurement; can oscillate under noisy metrics

In practice, the connection count is cheap to maintain (just increment on accept, decrement on close) and reflects both CPU‑bound and I/O‑bound work. If a backend starts to choke, its connection count rises, and the balancer naturally steers new traffic away—like Neo dodging bullets by seeing the trajectory before it hits.

Here’s a quick ASCII diagram of the flow:

+--------+      +----------------+      +----------+
| Client | ---> | Load Balancer  | ---> | Backend 1|
+--------+      +----------------+      +----------+
                                 |   +----------+
                                 +-->| Backend 2|
                                     +----------+
                                 |   +----------+
                                 +-->| Backend 3|
                                     +----------+

Each arrow from the balancer to a backend represents a decision made by checking the current connection counters.

Wielding the Power (Code & Examples)

The Struggle: Naïve Round Robin

// naiveRR.go – a super simple round‑robin proxy
var index uint64

func nextBackend() *Backend {
    b := backends[index%uint64(len(backends))]
    index++
    return b
}

When a slow backend (say, Backend 2) started garbage‑collecting, every fifth request still landed there, causing timeouts and cascading retries. I spent three hours debugging why my error rate spiked only under load, feeling like I was stuck in a looping cutscene.

The Victory: Least Connections with Health Checks

// leastConn.go – dynamic load balancer
type Backend struct {
    addr      string
    conns     uint64 // atomic counter of active connections
    healthy   bool
    mu        sync.Mutex // protects healthy flag
}

// increment/decrement must be atomic
func (b *Backend) inc()  { atomic.AddUint64(&b.conns, 1) }
func (b *Backend) dec()  { atomic.AddUint64(&b.conns, ^uint64(0)) } // subtract 1
func (b *Backend) load() uint64 { return atomic.LoadUint64(&b.conns) }

func chooseBackend() *Backend {
    var best *Backend
    var minLoad uint64 = ^uint64(0) // max value

    for i := range backends {
        b := &backends[i]
        b.mu.Lock()
        if !b.healthy {
            b.mu.Unlock()
            continue
        }
        load := b.load()
        if load < minLoad {
            minLoad = load
            best = b
        }
        b.mu.Unlock()
    }
    if best == nil {
        // fallback: return any healthy node or panic
        return &backends[0]
    }
    best.inc()
    return best
}

// Called when a request finishes (in the handler defer)
func releaseBackend(b *Backend) {
    b.dec()
}

What changed?

  1. State‑aware decision – we look at conns before forwarding.
  2. Atomic counters – cheap, lock‑free increments/decrements.
  3. Health flag – a separate goroutine periodically pings each backend; if it fails, we mark healthy = false and stop sending traffic.
  4. Graceful fallback – if all nodes look unhealthy, we still pick one (or you could return 503).

The code is only a few dozen lines longer than the naïve version, yet the difference in production is night‑and‑day. During that same launch‑day spike, the 99th‑percentile latency dropped from 2.4 s to 210 ms, and error rates flat‑lined at zero.

Traps to Avoid (The “Boss Moves” You Don’t Want)

  • Forgetting to decrement on error paths – if you inc() but panic before deal() you leak connection counts, making the balancer think a node is forever busy.
  • Using a mutex around the whole selection loop – serializes every request and kills throughput; keep the lock fine‑grained (just around the health flag) and rely on atomics for the counter.
  • Skipping health checks – a dead node will keep accumulating connections (since we never decrement) and become a black hole.

Why This New Power Matters

Armed with a least‑connections load balancer, you can now:

  • Handle heterogeneous workloads without manually tuning weights—fat‑heavy API calls naturally get fewer requests.
  • React instantly to deploys or autoscaling events—new instances start with zero connections and immediately absorb traffic.
  • Build resilient micro‑service meshes where each service can run its own lightweight L7 LB, cutting down on extra hops.

It’s like gaining the ability to see the Matrix’s underlying code: you stop reacting to superficial patterns and start manipulating the real system state.

Your Turn – The Challenge

Pick a service you’re running today (even a dev API). Instrument a simple connection counter, swap in the least‑connections logic above, and watch how the load distribution changes under a synthetic load generator (hey, try hey or wrk).

Drop a comment with your before/after numbers—let’s see who can shave the most latency off their stack!

Now go forth, balance like Neo, and may your requests always find the shortest path. 🚀