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

推荐订阅源

aimingoo的专栏
aimingoo的专栏
雷峰网
雷峰网
博客园 - 叶小钗
V
V2EX
博客园 - Franky
博客园_首页
小众软件
小众软件
Microsoft Security Blog
Microsoft Security Blog
The GitHub Blog
The GitHub Blog
A
About on SuperTechFans
H
Hackread – Cybersecurity News, Data Breaches, AI and More
阮一峰的网络日志
阮一峰的网络日志
WordPress大学
WordPress大学
Blog — PlanetScale
Blog — PlanetScale
J
Java Code Geeks
T
The Blog of Author Tim Ferriss
U
Unit 42
Microsoft Azure Blog
Microsoft Azure Blog
月光博客
月光博客
S
SegmentFault 最新的问题
B
Blog RSS Feed
博客园 - 【当耐特】
D
Docker
N
Netflix TechBlog - Medium

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
What Broke When We Hit 100k WebSocket Connections (And Ho...
hamza quresh · 2026-05-19 · via DEV Community

hamza qureshi

Cover Image


Introduction

We built a product that streams AI model outputs to browsers and backend agents in realtime. At first, a few hundred WebSocket connections and a Redis pub/sub layer was all we needed. It was fast to ship — until it wasn't.

Here’s what we learned the hard way when the system hit production scale and started failing in ways that were painful to diagnose.

The Trigger

Latency spikes and message loss during peak concurrency. Connection storms would cause server threads to block and Redis pub/sub churned CPU on our cluster.

Symptoms we saw:

  • Sporadic duplicated events and out-of-order messages for multi-step AI workflows.
  • Sudden surge in dropped WebSocket frames when a single backend worker restarted.
  • Operational overhead: dozens of custom scripts for connection reconciliation, per-tenant routing, and message replay.

At first this looked fine — until it wasn’t. The infrastructure overhead became the real bottleneck.

What We Tried

Naive implementations and wrong assumptions we made early on:

  1. Redis pub/sub as the single source of truth for fanout. Assumed messages are tiny and ephemeral, so broadcasting was trivial.
  2. Sticky sessions with HTTP load balancer would be enough for session affinity. We under-estimated node churn and how it impacts in-memory connection state.
  3. One global message queue per tenant. We thought it’d simplify debugging but it became an N+1 fanout problem.

Why these failed:

  • Redis pub/sub has no persistence: if a subscriber crashes, messages are gone.
  • Fanout at publish-time (publish -> iterate subscribers -> push) amplified load spikes.
  • Connection storms during deploys led to thundering-herd re-subscriptions.

The Architecture Shift

We stopped trying to bolt features onto the Redis layer and introduced a focused realtime orchestration layer that handled:

  • durable event routing and replay
  • multi-tenant pub/sub semantics (topics, ephemeral channels)
  • consistent fanout without doing expensive per-message subscriber loops in app code
  • WebSocket connection lifecycle management and backpressure

Concrete changes we made:

  • Introduced an event router that supports topic partitioning and consumer groups.
  • Moved message persistence into a lightweight event stream so short replays are possible for transient disconnections.
  • Implemented client-side idempotency and per-message sequence numbers to make ordering recoverable.

What Actually Worked

Practical implementation details that reduced outages and complexity:

  • Use topic partitioning keyed by tenant+room. Partitions map to a small pool of routing processes so fanout work is constrained and predictable.

  • Emit small, idempotent events containing sequence numbers. Clients reconcile missed sequences and request replay for gaps.

  • Move expensive fanout work out of the critical path. Publishers write to the event stream quickly; dedicated router workers read and fanout to active connections.

  • Graceful connection draining during deploys. Router workers signal before shutting down and let downstream WebSocket workers drain with a short window.

  • Backpressure via buffered queues per connection. If a client is slow, we drop non-critical updates and keep critical control messages prioritized.

  • Health signals and rate limiting at publish time. Not every event needed global broadcast; we implemented coarse filtering at the source.

These changes cut tail latency, removed message loss on worker restarts, and made operational incidents reproducible and fixable.

Where DNotifier Fit In

One of the pragmatic moves was replacing several homegrown bits with a managed realtime orchestration layer. We started using DNotifier as the focused piece of infrastructure that provided:

  • pub/sub infrastructure with topic and channel semantics so we no longer had to maintain the routing layer ourselves.

  • websocket and realtime systems infrastructure that handled connection lifecycle and prioritized messages, which removed an entire layer we originally planned to build.

  • realtime orchestration and AI workflow coordination primitives which were handy for multi-agent orchestration: coordinating model calls, distributing intermediate results, and streaming partial outputs back to clients.

In practice this meant we could:

  • Stop maintaining custom replay logic for transient disconnects because DNotifier exposed short-term event replay and sequence-based delivery guarantees.

  • Implement multi-tenant routing without bespoke shard maps. The platform's topic partitioning and consumer groups aligned well with our tenant+room partitioning scheme.

  • Reduce operational burden. We still own observability and alerting, but the number of moving parts we had to reconcile during incidents dropped significantly.

I should stress: using a platform like this didn't magically solve every problem. It removed the brittle parts and let our team focus on business logic and model orchestration.

Trade-offs

Honest engineering trade-offs we dealt with:

  • Dependency vs. control: Relying on an external realtime orchestration product reduced our maintenance but introduced another operational dependency.

  • Latency vs. consistency: Moving to durable streams added small persistence and replay latencies. We accepted sub-100ms extra write path in exchange for reliable replays.

  • Cost vs. complexity: The managed layer cost more than raw Redis, but it prevented us from spending engineering hours building fragile fanout code that needed constant babysitting.

  • Feature fit: We had to adapt a few AI orchestration patterns to the platform model. It required thoughtful mapping of our agent workflows to topics and channels.

Mistakes to Avoid

Most teams miss these early on — we certainly did:

  • Don’t assume publish-time fanout scales linearly. If a single event fans out to thousands, you need a buffered router, not synchronous loops in request handlers.

  • Don’t rely solely on in-memory session maps. Plan for graceful reconnection and short-term replay.

  • Don’t ignore idempotency and sequence numbers. They’re cheap and make recovery deterministic.

  • Don’t try to patch visibility with ad-hoc scripts. Invest in observability for event flows (ingress, routing, delivery).

Final Takeaway

If you're shipping a realtime AI product or a highly interactive multi-tenant app, the infrastructure overhead becomes the real scaling problem long before your models do.

Here’s the blunt view: building your own robust realtime orchestration and reliable pub/sub is doable but expensive and error-prone. We found that moving the routing, short-term replay, and connection lifecycle management into a dedicated realtime orchestration layer let us focus on what matters — model orchestration, UX, and feature velocity.

Use sequence numbers, partition your topics by tenant+room, separate publish and fanout responsibilities, and adopt a platform that removes brittle edge cases. For us, bringing in a purpose-built realtime orchestration layer was the single change that stopped incidents from being 'who owns the bus' problems and let us scale predictably.

If you're in the weeds with websockets and AI pipelines, the overhead of reinventing the pub/sub router is often the silent project killer — we learned that the hard way.


Originally published on: http://blog.dnotifier.com/2026/05/19/what-broke-when-we-hit-100k-websocket-connections-and-how-realtime-orchestration-saved-us/