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

推荐订阅源

D
Docker
B
Blog RSS Feed
Microsoft Security Blog
Microsoft Security Blog
Y
Y Combinator Blog
N
Netflix TechBlog - Medium
M
MIT News - Artificial intelligence
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
B
Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
C
Check Point Blog
The GitHub Blog
The GitHub Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
P
Proofpoint News Feed
Martin Fowler
Martin Fowler
大猫的无限游戏
大猫的无限游戏
GbyAI
GbyAI
博客园_首页
A
About on SuperTechFans
Blog — PlanetScale
Blog — PlanetScale
人人都是产品经理
人人都是产品经理
T
Tailwind CSS Blog
aimingoo的专栏
aimingoo的专栏
T
The Blog of Author Tim Ferriss
The Cloudflare Blog

The Practical Developer

The Libuv Thread Pool Trap: Why Node.js Async APIs Stall Under Load Postgres Covering Indexes with INCLUDE: Eliminate Heap Fetches on Read-Heavy Workloads Postgres DISTINCT ON: The Fastest Way to Get the Latest Row Per Group Postgres Transaction Isolation: The Anomalies Your App Actually Faces in Production Linux TCP Tuning for Node.js Microservices: The Kernel Settings That Stop Silent Connection Drops Under Load Postgres HOT Updates and Fillfactor: Why Not All Writes Are Created Equal Database Connection Pool Leaks: Finding the Promise That Never Returns Its Seat Linux OOM Killer in Production: Why Your Node.js Containers Die Without a Stack Trace Postgres Materialized Views: Refresh Strategies That Do Not Lock Your Dashboards API Dependency Health Checks: Why /health Is Not Enough Authorization with Zanzibar Tuples: How Google Manages Permissions and How To Build the Same Check in Node.js Postgres Advisory Locks: The 20-Character Primitive That Replaces Redis for Coordination Dead Letter Queues: The Message Queue Pattern That Saves You at 2 a.m. File Descriptor Exhaustion: The Kernel Limit That Silently Drops Node.js Connections Graceful Degradation: The Pattern That Turns Total Outages into Partial Success PostgreSQL Full-Text Search: Dropping Elasticsearch for 90% of Use Cases S3 Presigned Multipart Uploads: Stop Your API Server from Being a File Upload Bottleneck MessagePack vs JSON: The Binary Serialization Switch That Cut Our Internal RPC Overhead by 40% DNS Caching in Node.js: The Silent Cause of Production Latency Spikes Reliable Cron Jobs: The Pattern That Stops Double Runs, Missed Executions, And The 2 AM Page GraphQL Query Complexity: Stop the OOM Query Before It Reaches Your Resolver Node.js Event Loop Lag: The Hidden Metric Behind Random Latency Spikes API Request Validation with Zod: The Schema That Catches Bad Input Before It Corrupts Your Database Load Shedding in Node.js: How to Reject Traffic Before You Drown Request Hedging: Cut Tail Latency In Half Without Overprovisioning Git Bisect: The Automated Binary Search That Finds Breaking Commits in Minutes Node.js Garbage Collection Tuning: Stop Letting V8 Pause Your Event Loop Node.js Server Timeouts: The Settings That Stop Slow Clients from Holding Sockets Hostage Postgres BRIN Indexes: The Time-Series Secret That Shrinks Indexes by 99% Event Sourcing with PostgreSQL: The Pragmatic 80% Solution
Node.js AsyncLocalStorage: End-to-End Request Context Wit...
The Practica · 2026-05-14 · via The Practical Developer

You need to trace a single request through your Node.js service. Today that means passing a context object (requestId, userId, maybe a pre-bound logger) through every function signature. handleRequest calls validateToken, which calls fetchUser, which calls logActivity. Somewhere around the fifth layer you forget to forward the requestId and your logs become a useless wall of unrelated noise. Or worse, you decide not to add a new parameter because refactoring twelve call sites is not worth it, and you ship broken observability instead.

AsyncLocalStorage fixes this. It is a Node.js core module that stores per-request state inside the async call chain, so any function running as part of that request can read the context without receiving it as an argument. No parameter drilling. No global singletons that break under concurrency. No broken traces.

This post is the practical setup: a five-line Express middleware, a logger that enriches itself, database query tagging, and the three production pitfalls that cost you context when you least expect it.

What AsyncLocalStorage actually does

Introduced in Node.js v16.4 and stabilized shortly after, AsyncLocalStorage is built on top of async_hooks. It creates a key-value store scoped to an asynchronous execution context, essentially a request, a background job, or any AsyncResource. Values set inside that context are visible to every callback, Promise resolution, and async function that runs within it.

The mental model is simple: when a request arrives, you run() a function with a store. Everything that executes as a consequence of that function, including awaited Promises, event handlers, and setImmediate callbacks, shares the same store. When the async chain ends, the store is garbage-collected along with it.

The performance cost is negligible on Node.js 18+. The Node.js team optimized it to a single pointer write per async boundary. Microseconds per request, not milliseconds.

The setup: Express middleware in five lines

Here is the smallest useful setup. An Express middleware enters a new AsyncLocalStorage context for every request. Downstream middleware, route handlers, and any function they call can read the context without ever receiving it.

// context.js
import { AsyncLocalStorage } from 'node:async_hooks';

export const asyncLocalStorage = new AsyncLocalStorage();

export function getRequestContext() {
  return asyncLocalStorage.getStore();
}
// app.js
import express from 'express';
import crypto from 'node:crypto';
import { asyncLocalStorage } from './context.js';

const app = express();

app.use((req, res, next) => {
  const store = new Map();
  store.set('requestId', req.get('x-request-id') ?? crypto.randomUUID());
  store.set('startTime', performance.now());
  store.set('userId', null); // populated later by auth middleware

  asyncLocalStorage.run(store, () => {
    next();
  });
});

That is the entire plumbing. next() runs inside the AsyncLocalStorage context, so everything downstream (route handlers, database queries, error handlers) can call getRequestContext() and read the requestId. The Map is created per request, so concurrent requests do not collide.

A logger that just knows

The most immediate payoff is structured logging. Instead of passing a pre-bound logger into every utility function, you read the context at log time:

// logger.js
import { getRequestContext } from './context.js';

function log(level, message, meta = {}) {
  const ctx = getRequestContext();
  const enriched = {
    ...(ctx
      ? { requestId: ctx.get('requestId'), userId: ctx.get('userId') }
      : {}),
    ...meta,
  };
  console.log(
    JSON.stringify({
      level,
      message,
      ...enriched,
      time: new Date().toISOString(),
    })
  );
}

export const logger = {
  info: (message, meta) => log('info', message, meta),
  error: (message, err, meta) => log('error', message, { error: err.message, stack: err.stack, ...meta }),
};
// users.js
import { logger } from './logger.js';

export async function fetchUser(userId) {
  logger.info('fetching user', { userId });
  // requestId and userId are present automatically
}

Before AsyncLocalStorage, you had three bad choices:

  1. Pass logger everywhere. Clutters signatures and couples every utility to your logging abstraction.
  2. Use a global singleton. Breaks under concurrency because requests interleave in the same process.
  3. Use the old continuation-local-storage npm package. Worked, but was slower and had edge cases with native Promises.

AsyncLocalStorage is the first built-in solution that is fast enough and correct enough for production logging.

Tagging database queries with the request ID

A more advanced use: annotating every database query so Postgres pg_stat_statements or slow-query logs show which HTTP request triggered it.

// db.js
import pg from 'pg';
import { getRequestContext } from './context.js';

const pool = new pg.Pool({ /* connection config */ });

export async function query(sql, params) {
  const ctx = getRequestContext();
  const requestId = ctx?.get('requestId');

  // Postgres ignores SQL comments in planning and execution, but logs them.
  const taggedSql = requestId
    ? `/* requestId=${requestId} */ ${sql}`
    : sql;

  return pool.query(taggedSql, params);
}

Now when you see a slow query in pg_stat_statements, the embedded comment tells you the originating request. You do not need application-side query logging that duplicates what the database already records. This is especially useful in microservices where a single connection pool serves multiple concurrent requests.

Propagating context through auth middleware

The store is mutable. You can update it after creation as long as the mutation happens inside the same async chain.

// auth.js
import { asyncLocalStorage } from './context.js';

export async function authenticate(req, res, next) {
  const token = req.get('authorization')?.replace('Bearer ', '');
  const user = await verifyToken(token);

  const store = asyncLocalStorage.getStore();
  store.set('userId', user.id);
  store.set('roles', user.roles);

  next();
}

Because verifyToken and next() run inside the same AsyncLocalStorage context, getStore() returns the same Map. Any function called after next() sees the updated userId. Your logger switches from userId: null to userId: 42 without a single signature change.

Pitfall 1: Callbacks that escape the async chain

AsyncLocalStorage tracks asynchronous boundaries. If a callback escapes into a different scheduling queue without being properly awaited or wrapped, it can lose the context.

The common mistake is mixing callbacks with Promises inside Promise.all:

// DANGER: do not do this
await Promise.all(items.map(item => {
  setImmediate(() => processItem(item));
  // processItem loses ALS context because setImmediate
  // schedules outside the current async boundary.
}));

setImmediate schedules a new callback. Unless it is awaited or wrapped in a Promise, it may run in a different async context. The fix is to keep everything inside the Promise chain:

// SAFE: stays inside ALS
await Promise.all(items.map(async item => {
  await processItem(item);
}));

If you genuinely need deferred execution, wrap it explicitly:

await Promise.all(items.map(item => new Promise((resolve) => {
  setImmediate(() => resolve(processItem(item)));
})));

Pitfall 2: Worker threads and cluster mode

AsyncLocalStorage is bound to a single thread. If you dispatch work to a Worker via worker_threads, the worker runs in a different V8 isolate with its own async resource stack. The store does not transfer automatically.

If you need context in a worker, pass it explicitly in the message payload:

// main.js
import { Worker } from 'node:worker_threads';
import { getRequestContext } from './context.js';

const worker = new Worker('./worker.js');
const ctx = getRequestContext();

worker.postMessage({
  requestId: ctx.get('requestId'),
  payload: data,
});

// worker.js
import { parentPort } from 'node:worker_threads';

parentPort.on('message', ({ requestId, payload }) => {
  // re-hydrate context locally, or use the explicit fields
});

The same applies to cluster module child processes: there is no implicit propagation across process boundaries. Pass what you need.

Pitfall 3: Event emitters inside long-lived streams

If you attach an event handler to a stream or emitter that outlives the request, the handler retains the ALS context of the request that registered it. This is rarely what you want.

// DANGER
const emitter = getGlobalEventBus();
emitter.on('order.completed', (order) => {
  // This handler runs inside the ALS context of the *request that registered it*,
  // not the request that is active when the event fires.
  logger.info('order completed', { orderId: order.id });
});

For events that fire later, remove the listener when the request ends, or read the store only inside short-lived handlers. If the event is global, pass the needed fields in the event payload instead of relying on ambient context.

Combining with OpenTelemetry

If you already have distributed tracing set up, AsyncLocalStorage interoperates cleanly. OpenTelemetry stores the active span in an internal mechanism very similar to ALS. You can bridge the two by copying the traceId into your own store, so every log line contains both your requestId and the OTel trace ID.

// context.js
import { trace } from '@opentelemetry/api';
import { asyncLocalStorage } from './context.js';

export function getRequestContext() {
  const store = asyncLocalStorage.getStore();
  const span = trace.getActiveSpan();
  if (span && store && !store.has('traceId')) {
    store.set('traceId', span.spanContext().traceId);
  }
  return store;
}

Now your logs and your traces share a pivot key. During an incident, you grep a requestId in logs, copy the traceId, and jump straight to the full distributed trace without stitching timestamps by hand.

When not to use it

AsyncLocalStorage is not magic. Do not use it:

  • To replace explicit function arguments for domain logic. A userId that is central to a business calculation should still be a parameter. ALS is for cross-cutting concerns: tracing, logging, deadlines, security context.
  • As a general mutable cache. It is per-async-context, not a thread-local hash table for global state.
  • Inside CPU-bound tight loops with no async boundaries. If there is no await, there is no context boundary to track, and getStore() adds no value.

The practical pattern

For a typical Express or Fastify service, the pattern is:

  1. Create one AsyncLocalStorage instance at module level.
  2. In a middleware, run() with a Map and call next().
  3. Any cross-cutting utility reads from getStore().
  4. Mutate the store only in middleware that runs synchronously before the handler.
  5. Do not pass the store into workers or long-lived event listeners without explicit re-hydration.

The result: your service gains request-scoped logging, query tagging, and deadline tracking without touching a single business-logic signature. The next time you need to add a new observability dimension (a tenantId, a featureFlag, a deadline) you add it in one middleware and one Map key. Every log line and database query picks it up automatically.

A note from Yojji

Keeping request context intact through deep call stacks, database drivers, and logging utilities, without cluttering every function signature, is exactly the kind of infrastructure refinement that separates a working prototype from a maintainable production service.

Yojji is an international custom software development company with teams across Europe, the US, and the UK, building production systems in the JavaScript ecosystem. Their engineers routinely work through these kinds of Node.js runtime details (request lifecycle, observability wiring, and async boundary behavior) to keep backend services predictable under real traffic.