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

推荐订阅源

罗磊的独立博客
爱范儿
爱范儿
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
博客园_首页
博客园 - 叶小钗
酷 壳 – CoolShell
酷 壳 – CoolShell
Apple Machine Learning Research
Apple Machine Learning Research
云风的 BLOG
云风的 BLOG
量子位
博客园 - 三生石上(FineUI控件)
Stack Overflow Blog
Stack Overflow Blog
小众软件
小众软件
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
V
V2EX
人人都是产品经理
人人都是产品经理
V
Visual Studio Blog
Jina AI
Jina AI
L
LangChain Blog
M
MIT News - Artificial intelligence
MongoDB | Blog
MongoDB | Blog
Last Week in AI
Last Week in AI
Martin Fowler
Martin Fowler
WordPress大学
WordPress大学

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 Catch and Release Pattern: Handling High-Volume Webho...
MATT ROSE · 2026-06-13 · via DEV Community

MATT ROSE

If you are building an API that integrates with third-party vendors, you will eventually face the webhook flood.

When an external service sends a massive spike of webhook events, the standard approach of processing the data and inserting it into a database synchronously will block the Node.js event loop. Your API will time out, the vendor will assume the delivery failed, and you will drop critical data.

To survive unpredictable traffic spikes, you need to decouple the HTTP response from the data processing. Here is how to implement the "Catch and Release" pattern using Node.js, Express, and BullMQ.

Prerequisites

  • Node.js and Express installed.
  • A running instance of Redis (required for BullMQ).
  • Basic understanding of asynchronous JavaScript.

The Synchronous Trap (What Not to Do)

Most developers write their first webhook receiver like this:

app.post('/webhook/inventory', async (req, res) => {
  const payload = req.body;

  try {
    // ❌ Anti-pattern: Heavy processing before responding
    const normalizedData = heavyDataTransformation(payload);
    await database.insert(normalizedData);

    // Vendor waits for the database to finish...
    res.status(200).send('Success');
  } catch (error) {
    res.status(500).send('Failed');
  }
});

The problem: If the vendor sends 500 webhooks a second and your database takes 200ms to insert a record, the database connection pool will max out. Requests will queue up, memory will spike, and the connection will close. The data is gone forever.

Step 1: Implementing "Catch and Release"

The golden rule of webhook ingestion is to acknowledge receipt immediately. We want to return a 200 OK or 202 Accepted status back to the vendor before we do any heavy lifting.

To do this safely without losing the data in memory if the server crashes, we push the raw payload to a persistent background queue.

First, install BullMQ and Redis:

npm install bullmq ioredis

Next, configure the queue:

import { Queue } from 'bullmq';
import Redis from 'ioredis';

// Connect to Redis
const redisConnection = new Redis(process.env.REDIS_URL);

// Create the ingestion queue
const webhookQueue = new Queue('webhook-ingestion', { 
  connection: redisConnection 
});

Now, rewrite the Express route to catch the payload, queue it, and release the connection:

app.post('/webhook/inventory', async (req, res) => {
  const payload = req.body;

  try {
    // 1. Push raw data to Redis immediately
    await webhookQueue.add('process-inventory', payload, {
      attempts: 3,
      backoff: { type: 'exponential', delay: 1000 }
    });

    // 2. Release the vendor connection instantly
    return res.status(202).send('Accepted for processing');

  } catch (error) {
    console.error('Failed to queue webhook', error);
    return res.status(500).send('Internal Server Error');
  }
});

With this pattern, your Express server can handle thousands of requests per second. The route does nothing but write JSON to Redis, which is incredibly fast.

Step 2: Processing the Queue Safely

Now that the data is safely persisted in Redis, we can process it at our own pace using a BullMQ Worker. This worker runs on a separate thread (or an entirely separate server) so it never blocks our Express API.

import { Worker } from 'bullmq';

const worker = new Worker('webhook-ingestion', async job => {
  const payload = job.data;

  // Now we can safely perform heavy processing
  const normalizedData = heavyDataTransformation(payload);

  // If the database is locked, it throws an error, 
  // and BullMQ automatically retries based on our backoff strategy.
  await database.insert(normalizedData);

}, { connection: redisConnection });

worker.on('completed', job => {
  console.log(`Job ${job.id} processed successfully`);
});

worker.on('failed', (job, err) => {
  console.error(`Job ${job.id} failed:`, err);
});

Conclusion

By implementing the Catch and Release pattern, you separate the HTTP transport layer from your business logic.

  1. Express acts purely as a lightning-fast catcher's mitt.
  2. Redis/BullMQ acts as the shock absorber, holding the data safely.
  3. The Worker acts as the engine, processing data only as fast as your database can handle it.

This architecture ensures zero data loss, prevents database exhaustion, and keeps external vendors happy with lightning-fast response times.