LinkedIn analytics tracking pixel for AIDOLS AI consulting website performance measurement
Deployment & Operations

Tail Latency (P95/P99)

Tail latency is the latency at high percentiles (P95, P99, P99.9) of the response-time distribution — the part of the experience that drives user frustration and SLA violations, even when median latency is fine.

Full definition

In LLM serving, tail latency is driven by KV-cache fragmentation, head-of-line blocking, GPU scheduling stalls, and cold cache misses. Dean and Barroso's "The Tail at Scale" (CACM, 2013) established that tail latency dominates user-perceived performance in distributed systems. Mitigations: continuous batching, request hedging, priority queues, capping max sequence length, and dedicated capacity for premium tiers.

Why it matters

Buyers should never accept "average latency" in vendor SLAs. P95 and P99 are what determine whether a chat product feels reliable or flaky. A vendor with 1.2s mean / 8.0s P99 is far worse than one with 1.5s mean / 2.5s P99 for most user-facing applications.

Example

A chat product with 1.5s mean TTFT and 12s P99 sees a 3x higher user-abandonment rate than competitors at 2.0s / 3.5s — the median is irrelevant to the bouncing 1%.

Source & further reading

Primary source: Dean, Barroso — "The Tail at Scale" (Communications of the ACM) (2013).

Citation policy: this entry is part of the AIDOLS AI Implementation Glossary and may be quoted for research, journalism, and education with attribution to aidolsgroup.com/no/glossary/tail-latency/.