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

推荐订阅源

Microsoft Security Blog
Microsoft Security Blog
博客园 - 聂微东
aimingoo的专栏
aimingoo的专栏
J
Java Code Geeks
腾讯CDC
大猫的无限游戏
大猫的无限游戏
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Google DeepMind News
Google DeepMind News
博客园_首页
F
Fortinet All Blogs
小众软件
小众软件
Apple Machine Learning Research
Apple Machine Learning Research
H
Help Net Security
博客园 - 【当耐特】
量子位
博客园 - 叶小钗
M
MIT News - Artificial intelligence
酷 壳 – CoolShell
酷 壳 – CoolShell
月光博客
月光博客
MyScale Blog
MyScale Blog
爱范儿
爱范儿
The Cloudflare Blog
N
Netflix TechBlog - Medium
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
I Needed to Send an HTTP Request Without Slowing Down My ...
Abhishek Sha · 2026-05-05 · via DEV Community

In Part 12, I added resilience patterns — retry, timeout, circuit breaker. My backend could now survive Redis going down.

But there was still a problem. When someone created an entry, I needed to notify an external service. A webhook: fire an HTTP POST, tell the world something happened.

I added it inline in the handler:

func CreateEntry(w http.ResponseWriter, r *http.Request) {
    // ... validate, save to DB ...
    webhook.Send(url, payload) // 🐌 blocks here
    respondJSON(w, http.StatusCreated, ...)
}

Enter fullscreen mode Exit fullscreen mode

The user waited. Not for their entry to save — that was fast. They waited for my HTTP request to some external service to complete. If that service was slow, every create request was slow. If it was down, every create request failed.

The handler shouldn't care whether the webhook delivery succeeded. The entry was saved. That's the job. Everything else is secondary.

I needed fire-and-forget.

The Wrong Mental Model

My first instinct: just run it in a goroutine.

go webhook.Send(url, payload) // "fire and forget", right?

Enter fullscreen mode Exit fullscreen mode

Technically works. But now I have an unbounded number of goroutines. 10,000 entries created? 10,000 goroutines, each holding an HTTP connection, all fighting over bandwidth. Goroutines are cheap but not free — and more importantly, there's no control. No backpressure. No way to say "slow down."

The correct solution is a worker pool with a channel.

The Pizza Shop Mental Model

Imagine a pizza shop:

  • Channel = the order counter. Tickets pile up here.
  • Workers = the chefs. Fixed number. Each processes one order at a time.
  • Handler = the cashier. Takes the order, puts it on the counter, immediately says "order received." Doesn't wait for the pizza.

The cashier's job is done in milliseconds. The chefs handle the rest in the background. If the shop gets slammed, orders queue up — but there's a limit. If the queue is full, you say "we're busy, try later" instead of spinning up infinite chefs.

The Worker Pool

type Job struct {
    Type    string
    Payload interface{}
}

var JobQueue chan Job

func StartWorkerPool(numWorkers int) {
    JobQueue = make(chan Job, 100) // buffered: 100 jobs can queue up

    for i := 1; i <= numWorkers; i++ {
        go worker(i)
    }

    slog.Info("Worker pool started", "workers", numWorkers)
}

func worker(id int) {
    for job := range JobQueue {
        processJob(job)
    }
}

Enter fullscreen mode Exit fullscreen mode

Three things to understand:

Buffered channel (make(chan Job, 100)): The queue can hold 100 jobs without blocking. When the handler sends a job, it returns immediately if there's space. If the queue is full, the select in AddJob drops it with a warning rather than blocking the handler.

for job := range JobQueue: This blocks until a job arrives, processes it, then loops back and blocks again. No busy-waiting. No polling. The goroutine sleeps until there's work. When JobQueue is closed, the loop exits cleanly — that's how graceful shutdown works.

Fixed goroutine count: Three workers (configurable). Not one goroutine per request. The pool handles any volume without spinning up new goroutines.

func AddJob(jobType string, payload interface{}) {
    select {
    case JobQueue <- Job{Type: jobType, Payload: payload}:
        // Added successfully
    default:
        slog.Warn("Job queue full, dropping job", "type", jobType)
    }
}

Enter fullscreen mode Exit fullscreen mode

Non-blocking send with select. If the queue is full, log a warning and move on. The API response is never delayed.

The Handler Change

Before:

// Handler blocks waiting for webhook
webhook.Send(url, payload)
respondJSON(w, http.StatusCreated, ...)

Enter fullscreen mode Exit fullscreen mode

After:

// Handler returns immediately, worker delivers webhook in background
worker.AddJob("entry_created", map[string]interface{}{
    "event":     "entry_created",
    "entry_id":  id,
    "user_id":   userID,
    "text":      req.Text,
    "mood":      req.Mood,
    "category":  req.Category,
    "timestamp": time.Now().UTC(),
})
respondJSON(w, http.StatusCreated, ...)

Enter fullscreen mode Exit fullscreen mode

AddJob returns in nanoseconds. The user gets their 201 immediately. The worker picks up the job and delivers the webhook in the background.

The Webhook Delivery

The webhook sender itself is simple:

func Send(url string, payload interface{}) error {
    data, err := json.Marshal(payload)
    if err != nil {
        return fmt.Errorf("marshal failed: %w", err)
    }

    resp, err := http.Post(url, "application/json", bytes.NewReader(data))
    if err != nil {
        return fmt.Errorf("http post failed: %w", err)
    }
    defer resp.Body.Close()

    if resp.StatusCode < 200 || resp.StatusCode >= 300 {
        return fmt.Errorf("webhook returned non-2xx: %d", resp.StatusCode)
    }
    return nil
}

Enter fullscreen mode Exit fullscreen mode

But a plain HTTP call in the background isn't resilient. The external service might be down, or slow, or return a 500. So the worker wraps delivery with retry + circuit breaker — the patterns from Post 12:

func processJob(job Job) {
    switch job.Type {
    case "entry_created", "entry_deleted":
        err := WebhookBreaker.Execute(func() error {
            return retry.Do(3, 500*time.Millisecond, func() error {
                return sender.Send(webhookURL, job.Payload)
            })
        })
        if err != nil {
            slog.Error("Webhook delivery failed", "error", err)
        }
    }
}

Enter fullscreen mode Exit fullscreen mode

Three layers:

  1. Circuit breaker: if the webhook service has 5 consecutive failures, stop trying for 30 seconds. Don't waste goroutine time on a dead service.
  2. Retry with backoff: attempt delivery up to 3 times, waiting 500ms → 1s → 2s between attempts.
  3. Log and continue: if all attempts fail, log it and move on. The job failing doesn't crash the worker or affect the API.

Note job.Payload — not job. The external service gets clean data:

{
  "event": "entry_created",
  "entry_id": 42,
  "user_id": 3,
  "text": "productive day",
  "mood": 8,
  "category": "work",
  "timestamp": "2026-04-17T13:37:00Z"
}

Enter fullscreen mode Exit fullscreen mode

Not internal Go struct fields with type names and Go-specific formatting. Just the data the receiver actually needs.

The Tricky Part: Graceful Shutdown

Worker pools introduce a subtle problem. When the server gets a shutdown signal (Ctrl+C, SIGTERM), what happens to jobs that are queued but not yet processed?

Without graceful shutdown: server exits, 50 queued jobs dropped, 50 webhooks never sent.

The fix:

var wg sync.WaitGroup

func worker(id int) {
    for job := range JobQueue {
        wg.Add(1)
        processJob(job)
        wg.Done()
    }
}

func StopWorkerPool() {
    close(JobQueue) // signals workers to stop accepting new jobs
    wg.Wait()       // blocks until all in-progress jobs complete
}

Enter fullscreen mode Exit fullscreen mode

In main.go, the graceful shutdown sequence:

// On SIGTERM/SIGINT:
server.Shutdown(ctx) // stop accepting new HTTP requests
worker.StopWorkerPool() // drain the job queue

Enter fullscreen mode Exit fullscreen mode

HTTP stops first — no new jobs get created. Then the worker pool drains — all queued jobs run to completion. Then the process exits. No jobs dropped.

Putting It Together

The complete flow for POST /entries:

1. Handler receives request (milliseconds)
2. Validates input, saves to Postgres
3. Calls worker.AddJob() — returns immediately
4. Handler sends 201 to client — user is done waiting

[background, asynchronously]
5. Worker picks up job from channel
6. Circuit breaker: is webhook service healthy?
7. retry.Do: attempt 1 → fail → wait 500ms → attempt 2 → success
8. HTTP POST to webhook.site with full entry payload
9. Worker loops back and waits for next job

Enter fullscreen mode Exit fullscreen mode

The user never experiences steps 5-9. They got their response at step 4.

What I Learned

Channels are not just a communication mechanism — they're a coordination tool. A buffered channel is a queue with backpressure built in. When it fills up, you know you need more workers or fewer producers. Goroutines alone give you none of that.

for job := range channel is the cleanest worker pattern in Go. It blocks, processes, loops — and exits cleanly when the channel is closed. No select, no done channel, no context. Just range over the channel.

Fire-and-forget is not the same as "spawn a goroutine." Fire-and-forget means the caller doesn't wait for the result. A worker pool is how you implement fire-and-forget responsibly — with a fixed number of workers, a bounded queue, and graceful shutdown.

Close the channel to stop workers, use WaitGroup to wait for them. This two-step pattern — close(JobQueue) then wg.Wait() — is the canonical way to drain a worker pool in Go. Close signals "no more work." WaitGroup confirms "current work is done."


Up next: the last piece of the puzzle — dependency injection refactor, per-user rate limiting, and token refresh. Everything that ties the backend together.

This is Part 13 of "Learning Go in Public". Part 1 | Part 2 | Part 3 | Part 4 | Part 5 | Part 6 | Part 7 | Part 8 | Part 9 | Part 10 | Part 11 | Part 12