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

推荐订阅源

爱范儿
爱范儿
博客园 - 叶小钗
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
腾讯CDC
S
SegmentFault 最新的问题
D
DataBreaches.Net
Hugging Face - Blog
Hugging Face - Blog
L
LangChain Blog
Recent Announcements
Recent Announcements
阮一峰的网络日志
阮一峰的网络日志
N
Netflix TechBlog - Medium
大猫的无限游戏
大猫的无限游戏
M
MIT News - Artificial intelligence
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 三生石上(FineUI控件)
F
Fortinet All Blogs
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Martin Fowler
Martin Fowler
雷峰网
雷峰网
J
Java Code Geeks
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
小众软件
小众软件
云风的 BLOG
云风的 BLOG
T
Tailwind CSS Blog

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
The Rate‑Limiter Jedi: Mastering CAP Like a Lightsaber Duel
Timevolt · 2026-06-15 · via DEV Community

The Quest Begins (The "Why")

Picture this: I’m knee‑deep in a microservice that powers a flash‑sale site. Black Friday is looming, traffic spikes like a dragon breathing fire, and every request that slips through threatens to melt our downstream inventory service. I slapped a simple counter in Redis, called it a day, and went to grab coffee.

When I came back, the site was down—not because the inventory service crashed, but because my “rate limiter” was too strict. Under a brief network hiccup, the Redis node became unreachable, the limiter started denying everything, and users saw a sea of 429s. It felt like watching The Matrix when Neo first sees the code—except the code was a wall of red error messages, and I was the one who had just pulled the plug.

I needed a limiter that could survive a partition, stay responsive, and still keep the bad guys at bay. That’s when I remembered the old CAP theorem from a university lecture I’d half‑listened to while scrolling memes. Turns out, the theorem isn’t just theory—it’s the very lightsaber we need to duel with distributed systems.

The Revelation (The Insight)

Here’s the treasure I uncovered: CAP isn’t a choice you make once and forget; it’s a lens you keep adjusting as you design each piece of your system.

  • Consistency – every node sees the same counter value at the same time.
  • Availability – every request gets a response (even if it’s stale).
  • Partition tolerance – the system keeps working when the network splits.

You can only have two of the three at any given moment. For a rate limiter, the question becomes: Which two do we actually need?

If we chase strong consistency (C) and partition tolerance (P), we sacrifice availability (A). Think of a traditional Redis cluster with strict quorum writes: when a node is unreachable, the limiter blocks until the quorum reforms. That’s great for correctness, but during a brief network blip you end up denying legitimate traffic—exactly what happened to me.

If we instead favor availability and partition tolerance (A + P), we accept that our counters may diverge for a short while. This is the eventual‑consistency path. The limiter might let a few extra requests slip through during a partition, but the service stays up and users keep getting responses. After the partition heals, the counters converge.

For most public‑facing APIs—think Twitter’s rate limits, Cloudflare’s WAF, or even your own internal service‑to‑service calls—a few extra hits are far cheaper than a total outage. So we deliberately design an AP rate limiter.

The magic insight? Design your limiter around a local token bucket that each node updates independently, then gossip the bucket state periodically. The bucket itself gives you the throttling logic; the gossip layer handles the AP trade‑off.

Wielding the Power (Code & Examples)

The Struggle: A Naïve Centralized Limiter

// centralLimiter.go – the version that broke on Black Friday
package main

import (
    "github.com/go-redis/redis/v8"
    "time"
)

var rdb = redis.NewClient(&redis.Options{Addr: "redis:6379"})

func allow(userID string) bool {
    key := fmt.Sprintf("rl:%s", userID)
    // INCR and EXPIRE are a single atomic script (Lua)
    script := redis.NewScript(`
        local val = redis.call('INCR', KEYS[1])
        if val == 1 then
            redis.call('EXPIRE', KEYS[1], ARGV[1])
        end
        return val
    `)
    count, _ := script.Run(ctx, rdb, []string{key}, strconv.Itoa(limit)).Int()
    return count <= limit
}

What went wrong? The INCR blocks until Redis replies. If the Redis node is unreachable (network partition), the call times out, we treat it as a denial, and the whole service throttles itself. It’s a classic CP choice that murdered availability when we needed it most.

The Victory: An AP Token‑Bucket Limiter with Gossip

First, the local bucket on each node:

// bucket.go – each service instance holds its own bucket
type Bucket struct {
    Capacity   int64
    Tokens     int64
    LastRefill time.Time
    Rate       time.Duration // refill interval per token
    mu         sync.Mutex
}

func NewBucket(capacity int64, rate time.Duration) *Bucket {
    return &Bucket{
        Capacity: capacity,
        Tokens:   capacity,
        LastRefill: time.Now(),
        Rate:     rate,
    }
}

func (b *Bucket) Allow() bool {
    b.mu.Lock()
    defer b.mu.Unlock()
    now := time.Now()
    // refill based on elapsed time
    elapsed := now.Sub(b.LastRefill)
    add := int64(elapsed / b.Rate)
    if add > 0 {
        b.Tokens += add
        if b.Tokens > b.Capacity {
            b.Tokens = b.Capacity
        }
        b.LastRefill = now
    }
    if b.Tokens > 0 {
        b.Tokens--
        return true
    }
    return false
}

Each instance runs its own bucket, so a request is answered immediately—no remote call, no blocking.

Now we need the gossip layer to keep buckets roughly in sync. A simple implementation uses a push‑pull cycle every gossipInterval (e.g., 1 s):

// gossip.go – lightweight anti‑entropy
type Peer struct {
    Addr string
    Conn net.Conn
}

func GossipLoop(self *Bucket, peers []Peer, interval time.Duration) {
    ticker := time.NewTicker(interval)
    for range ticker.C {
        for _, p := range peers {
            // send our current token count
            msg := fmt.Sprintf("TOKEN:%d", self.Tokens)
            p.Conn.Write([]byte(msg))
            // read peer's token count (simple, not production‑grade)
            buf := make([]byte, 32)
            n, _ := p.Conn.Read(buf)
            if n > 0 {
                peerTok, _ := strconv.Atoi(strings.TrimSpace(string(buf[:n])))
                // converge: take the max to avoid under‑limiting
                if int64(peerTok) > self.Tokens {
                    self.mu.Lock()
                    self.Tokens = int64(peerTok)
                    self.mu.Unlock()
                }
            }
        }
    }
}

What does this buy us?

  • Availability: Even if the gossip channel drops, each node keeps throttling based on its last known state.
  • Partition tolerance: The system continues to work; we might allow a few extra requests during a split, but the service stays alive.
  • Eventual consistency: When the partition heals, the token counts gossip back and forth, converging to a common view.

Common Traps (The “Traps” on the Quest)

  1. Over‑gossiping – sending the full bucket state every 10 ms floods the network and adds latency. Keep the interval in the order of seconds, or use a delta‑based approach.
  2. Under‑refilling – picking a refill rate that’s too slow makes the bucket empty too fast, causing false positives. Tune Rate to match your desired average request per second.
  3. Ignoring clock drift – if nodes’ clocks diverge wildly, the refill math can go off. Use NTP or rely on monotonic timers (time.Now() is fine as long as you don’t compare across nodes).

Why This New Power Matters

With this AP limiter in place, our flash‑sale site survived Black Friday without a single 429 storm. When a zone‑wide network blip hit, the service kept responding, letting genuine shoppers through while still curbing the abusive bots. The occasional extra request that slipped through during the partition was a negligible cost compared to the revenue saved from uptime.

Now you can:

  • Rate‑limit APIs that serve millions of users without becoming a single point of failure.
  • Build multi‑region services where each region runs its own limiter, gossiping only occasional summaries—think of it like the Rebel Alliance sharing intel across planets without needing a central holocron.
  • Tune the trade‑off dial: need stricter limits? Increase gossip frequency or move toward a CP model with a quorum store. Need maximum uptime? Loosen the gossip and let the buckets diverge a bit more.

It’s empowering to realize that CAP isn’t a scary theorem you memorize for exams; it’s a practical toolkit you can wield every time you design a distributed component.

Your Turn – Embark on Your Own Quest

Grab a language of your choice, spin up a couple of fake nodes (even just two local processes), and implement the token bucket + gossip loop above. Play with:

  • Different gossip intervals (1 s vs 5 s) and watch how the allowed request rate changes during a simulated partition (nc -l to drop connections).
  • Switching to a CP variant by replacing the gossip with a strict Redis INCR and see how availability tanks when you kill the Redis node.

Drop a comment with your findings, a weird edge case you discovered, or a meme that captures your “I‑just‑beat‑the‑CAP‑boss” feeling. Happy coding, and may your rate limits be ever in your favor!