AI inference glossary
Benchmark metrics

Tail latency

Also known as p90, p99, percentile latency

In plain English

Tail latency describes the slowest requests rather than the typical one, because the unlucky few are what users actually notice.

Technical definition

Tail latency is the latency at a high percentile of the request distribution, such as p90 or p99, rather than the mean or median.

Engineering details

A percentile answers a different question from an average. A p90 of five seconds means one request in ten waited at least that long, and that request may be the one blocking an agent from continuing. Distributions in real serving are heavily skewed, so the mean can sit far below the tail and hide it completely.

Why it matters

Capacity planning is usually written against a percentile, not an average, because a service that is fast on average and slow at the tail still fails its users. Optimizations can also improve the mean while worsening the tail, which a single-number summary would report as an unambiguous win.

How to read it in InferenceX

InferenceX reports percentile-qualified metrics and labels the percentile on the axis, so p90 TTFT and mean TTFT are never mixed on one comparison. Agentic runs are especially skewed, because end to end latency scales with output length and the longest generations dominate the tail.