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

推荐订阅源

J
Java Code Geeks
Last Week in AI
Last Week in AI
T
Tailwind CSS Blog
WordPress大学
WordPress大学
B
Blog RSS Feed
T
The Blog of Author Tim Ferriss
F
Fortinet All Blogs
aimingoo的专栏
aimingoo的专栏
MongoDB | Blog
MongoDB | Blog
博客园 - Franky
C
Check Point Blog
P
Proofpoint News Feed
H
Help Net Security
月光博客
月光博客
博客园_首页
Stack Overflow Blog
Stack Overflow Blog
博客园 - 三生石上(FineUI控件)
Martin Fowler
Martin Fowler
Recent Announcements
Recent Announcements
人人都是产品经理
人人都是产品经理
U
Unit 42
美团技术团队
I
InfoQ
A
About on SuperTechFans

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
3 Hours Wasted on asyncio Pitfalls That Almost Took Down ...
BAOFUFAN · 2026-05-01 · via DEV Community

BAOFUFAN

Last Friday at 5 PM, right when I was about to close my laptop and sneak out, the alert channel exploded — the online data collection service had a timeout rate spiking to 40%, and all downstream reports were blank. I checked the logs and found that the crawler processing thousands of URLs was still using the old synchronous requests library, fetching them one by one. Each request averaged 1.2 seconds, one full round took nearly 20 minutes, but the business requirement demanded completion within 5 minutes. Only one thought crossed my mind: rewrite it with asyncio for concurrency and deploy before leaving.

That decision led to three major pitfalls, and I almost wrecked the service. Now I’m sharing the hard-learned lessons—hopefully saving you those three hours.


Why asyncio Is the Right Play for IO‑Bound Tasks

The core of asyncio is the event loop plus coroutines. Think of the event loop as a constantly polling scheduler, and each coroutine as a task that can voluntarily pause and hand back control. When a coroutine is waiting for a network response (IO), the event loop immediately switches to another ready coroutine, keeping the CPU from spinning idle. The biggest difference from traditional multithreading: asyncio is cooperative scheduling within a single thread, avoiding thread‑switching overhead and GIL lock contention. It especially shines in network‑request‑heavy scenarios.

The common pattern we use: define coroutine functions with async def and await asynchronous IO operations inside them, then use asyncio.gather() to hand multiple coroutines to the event loop at once. The total duration depends on the slowest task, not the sum of all tasks.

But there’s a gap between “understanding the principle” and “writing correct code” — one that’s filled with casualties.


Code in Practice: From “Sync Trap” to “Async Delight”

Pitfall 1: Using a Synchronous Blocking Call Inside a Coroutine

At first, I wrote a naive concurrent crawler that looked something like this:

import asyncio
import requests  # 同步库,不能用!

async def fetch(url):
    # 错误示范:直接把同步的 requests 放在协程里
    resp = requests.get(url, timeout=5)   # 这次调用会阻塞整个线程!
    return resp.status_code

async def main():
    urls = ["https://httpbin.org/delay/1"] * 10
    tasks = [fetch(url) for url in urls]
    results = await asyncio.gather(*tasks)
    print(results)

asyncio.run(main())

Enter fullscreen mode Exit fullscreen mode

When you run this, you’ll notice all requests are still sequential — the effect is exactly the same as synchronous code. The reason is simple: requests.get() is a synchronous blocking call. While waiting for the network, it never yields control back to the event loop, so only one coroutine runs at a time. The event loop is effectively useless.

The correct approach: switch to an async HTTP client, like aiohttp or httpx.AsyncClient.

import asyncio
import aiohttp

async def fetch(session, url):
    # 使用 aiohttp 的异步请求,await 时将控制权交还事件循环
    async with session.get(url, timeout=aiohttp.ClientTimeout(total=5)) as resp:
        return await resp.text()

async def main():
    urls = ["https://httpbin.org/delay/1"] * 10
    async with aiohttp.ClientSession() as session:
        tasks = [fetch(session, url) for url in urls]
        results = await asyncio.gather(*tasks)
    print(f"完成 {len(results)} 个请求")

asyncio.run(main())

Enter fullscreen mode Exit fullscreen mode

This code truly leverages the event loop’s concurrency. For 10 requests each with a 1‑second delay, the total time is just over 1 second instead of 10 seconds. My crawler job went from 20 minutes to under 2 minutes.

Pitfall 2: gather() Blows Up the Whole Family on a Single Exception

When the number of URLs grew to several hundred, occasionally a few requests would time out or DNS resolution would fail. I noticed that if any single coroutine raised an exception, gather() would propagate it immediately, cancelling all other still‑running coroutines and wiping out the entire batch. That was exactly what happened during my first production deployment: one tiny domain failed to resolve, everything tripped, and the downstream went white again.

The fix is to use gather(..., return_exceptions=True), which returns exceptions as result objects instead of breaking the flow.

async def fetch_with_sem(sem, session, url):
    async with sem:   # 限制并发数,防止瞬间占满文件描述符
        try:
            async with session.get(url, timeout=aiohttp.ClientTimeout(total=10)) as resp:
                return url, await resp.text()
        except Exception as e:
            return url, f"ERROR: {e}"

async def main():
    urls = [...]  # 几百个 URL
    sem = asyncio.Semaphore(50)  # 限制并发,避免触发系统或服务端限制
    async with aiohttp.ClientSession() as session:
        tasks = [fetch_with_sem(sem, session, url) for url in urls]
        results = await asyncio.gather(*tasks, return_exceptions=True)  # 关键!
    for url, content in results:
        if isinstance(content, Exception):
            print(f"{url} 失败: {content}")
        else:
            process(content)

Enter fullscreen mode Exit fullscreen mode

Adding a Semaphore and a retry queue after swallowing exceptions finally made the service stable.


Pitfalls & Cautions: These Are the Real Killers

1. Never call time.sleep() inside a coroutine

time.sleep() puts the entire thread to sleep, completely stalling the event loop. Always use await asyncio.sleep() instead.

2. Beware of unlimited concurrency overwhelming file descriptors

Even though asyncio handles thousands of tasks easily, spawning 5,000 concurrent connections at once can exhaust your system’s file descriptor limit or accidentally trigger the target server’s rate limiting. Use asyncio.Semaphore or connection‑pool limits to constrain concurrency.

3. Don’t forget to back off and retry

Transient network issues are normal. Without a retry mechanism, some failures become permanent data gaps. Combine return_exceptions=True with exponential backoff retries for robust production‑grade code.


Rewriting a synchronous IO‑bound service with asyncio is one of the most satisfying optimizations you can make. But these pitfalls can easily turn it into a nightmare if you’re not careful. I lost three hours and almost a stable production Friday. I hope this post saves you from the same fate.