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

推荐订阅源

I
InfoQ
G
Google Developers Blog
Engineering at Meta
Engineering at Meta
月光博客
月光博客
博客园 - 聂微东
博客园 - Franky
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
有赞技术团队
有赞技术团队
A
About on SuperTechFans
Microsoft Azure Blog
Microsoft Azure Blog
Blog — PlanetScale
Blog — PlanetScale
U
Unit 42
T
Tailwind CSS Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
云风的 BLOG
云风的 BLOG
S
SegmentFault 最新的问题
F
Fortinet All Blogs
H
Help Net Security
J
Java Code Geeks
酷 壳 – CoolShell
酷 壳 – CoolShell
博客园 - 叶小钗
L
LangChain Blog
Martin Fowler
Martin Fowler
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
p50, p95, p99: What Latency Percentiles Actually Mean for...
Arnav Gupta · 2026-06-26 · via DEV Community

Arnav Gupta

Your monitoring dashboard shows average response time: 45ms. Looks great.

Your users are complaining the app is slow.

Both things are true. Here's why.


Averages hide the worst experiences

Imagine 100 API requests. 99 of them take 10ms. One takes 5000ms.

Average: (99 × 10 + 5000) / 100 = 59.9ms

Your dashboard shows ~60ms average. Looks fine. But one in every 100 users waited 5 seconds. If you have 10,000 daily active users, that's 100 people per day getting a 5-second response.

Averages lie because they let the fast majority drown out the slow minority. Percentiles don't.


What percentiles actually mean

p50 (median): 50% of requests finish faster than this. This is your "typical" user experience. If your p50 is 20ms, most users feel your app as fast.

p95: 95% of requests finish faster than this. 1 in 20 requests is slower. On a busy API handling 1000 requests per minute, that's 50 slow requests every minute.

p99: 99% of requests finish faster than this. 1 in 100 requests is slower. This is where tail latency lives — GC pauses, cold caches, network spikes.

p99.9: 1 in 1000 requests is slower. For high-traffic systems, this still affects real users. For most apps, p99 is enough to care about.

The relationship between these numbers tells you a lot:

  • p50 ≈ p99: Your latency is very consistent. Simple workload, warm cache, no contention.
  • p99 is 10x p50: You have a significant tail. Something slow is happening for 1% of requests — worth investigating.
  • p99 is 100x p50: Something is seriously wrong. GC pauses, lock contention, or a broken dependency.

Why Node.js has a particular p99 problem

Node.js is single-threaded. Everything runs on one event loop. This means:

One slow operation blocks everything.

If a database query takes 2 seconds, no other requests can be processed during that time (unless you're careful with async). In a multi-threaded server, one slow query only affects that thread. In Node, it affects everyone.

This makes p99 disproportionately important for Node.js applications. Your p99 latency doesn't just affect 1% of users — it causes latency spikes for everyone who happens to be waiting behind a slow request.

The good news: Node's async model means you can handle thousands of concurrent requests efficiently when everything is fast. The bad news: the tail hurts more.


How to measure your actual percentiles

If you're running Express, add a percentile tracker:

const latencies = [];

app.use((req, res, next) => {
  const start = Date.now();
  res.on('finish', () => {
    latencies.push(Date.now() - start);
    // keep last 1000 only
    if (latencies.length > 1000) latencies.shift();
  });
  next();
});

function percentile(arr, p) {
  const sorted = [...arr].sort((a, b) => a - b);
  return sorted[Math.floor(sorted.length * p / 100)];
}

// log every minute
setInterval(() => {
  if (latencies.length === 0) return;
  console.log({
    p50:  percentile(latencies, 50),
    p95:  percentile(latencies, 95),
    p99:  percentile(latencies, 99),
    count: latencies.length
  });
}, 60_000);

Run this in production for a day. The gap between your p50 and p99 will probably surprise you.


The real-world numbers

Here's what realistic production p50/p95/p99 latency looks like for common dependencies:

Dependency p50 p95 p99
Postgres (local) 2–5ms 20–50ms 100–300ms
Postgres (remote) 5–15ms 50–150ms 200–800ms
Redis 0.5–2ms 3–8ms 10–30ms
MongoDB 5–15ms 40–80ms 150–400ms
S3 GetObject 20–50ms 100–200ms 400–800ms
Stripe API 100–300ms 500–1000ms 1500–3000ms
OpenAI API 500–1500ms 2000–5000ms 5000–12000ms

Notice the ratios. Postgres p99 is often 40-60x the p50. Redis is more consistent (10-15x). External APIs like Stripe are the worst — p99 can be 10x the p50 and there's nothing you can do about it except handle it gracefully.


What to do with this information

Set timeouts based on p99, not p50.

If your DB p99 is 300ms, your timeout should be at least 400-500ms. Setting it at 100ms means you're timing out 1% of requests unnecessarily — and those timeouts trigger retries, which add load, which makes the DB slower, which triggers more timeouts.

Size your connection pools for the p99 case.

If a DB query takes 300ms at p99, and you're handling 100 concurrent requests, you need at least 30 connections in the pool (100 requests × 300ms / 1000ms). Most developers size pools for the p50 case and wonder why they get connection exhaustion under load.

Build retry backoff around p99, not p50.

Your first retry should wait at least as long as your p99. If you retry after 50ms but your p99 is 200ms, your retry often arrives while the original is still processing — doubling load.

Test with realistic latency.

This is the one most people skip. If you're testing retry logic, timeout handling, or circuit breakers against a flat setTimeout(fn, 200), you're not testing the variance — and the variance is what breaks things.

import { withLatency } from 'slowdep';

// simulate realistic postgres latency in your tests
const db = withLatency(mockDBCall, 'postgres'); // p50:5ms p99:200ms

// now your tests see the actual distribution
// some calls are 3ms, some are 150ms, some are 600ms
// just like production


The mental model

Think of latency like a commute. Your average commute might be 25 minutes. But:

  • p50: 22 minutes (typical day)
  • p95: 40 minutes (traffic, occasional delays)
  • p99: 75 minutes (accident, bad weather, everything went wrong)

If you tell someone "my commute is 25 minutes" and they schedule a meeting 30 minutes after you leave, you'll miss it 5% of the time. That's p95.

Your SLA, your retry timeouts, your user experience — they're all governed by your tail, not your average.

Build for the tail.


If you want to test your Node.js app against realistic latency distributions, I built slowdep — a zero-dependency package that wraps any async function with production-accurate p50/p99 sampling.

github.com/arnnnavvvvv/slowdep