哈佛芝加哥研究:LLM 服务一年负载分析

Rohan Paul · @rohanpaul_ai · X·2026-08-18 12:18·6天前
AI 导读

哈佛与芝加哥团队分析 9,174 个模型、6.12B 次请求的一年生产数据,发现高效 LLM 服务更依赖理解流量变化与重复模式,而非单一调度器。99% 的缓存复用来自 15 分钟内的重复请求,均匀负载均衡会削弱该优势。研究建议路由、缓存与容量规划应基于真实流量历史,而非短时或合成基准。

Rohan Paul@rohanpaul_ai
36AI 编辑部评分,满分 100

哈佛芝加哥研究:LLM 服务一年负载分析

2026-08-18 12:18· 6天前
AI 导读

哈佛与芝加哥团队分析 9,174 个模型、6.12B 次请求的一年生产数据,发现高效 LLM 服务更依赖理解流量变化与重复模式,而非单一调度器。99% 的缓存复用来自 15 分钟内的重复请求,均匀负载均衡会削弱该优势。研究建议路由、缓存与容量规划应基于真实流量历史,而非短时或合成基准。

New Harvard+Chicago study.

A year of production data shows that efficient LLM serving depends less on a single clever scheduler than on understanding how traffic changes and repeats.

The researchers studied 6.12B requests across 9,174 models for 1 year and found repeatable patterns that serving systems can use.

Users often come back to the same model with the same growing context. 99% of the reuse they measured came from requests returning within 15 minutes.

So the GPU may already have much of the previous prompt computed and can reuse it instead of doing that work again.

A load balancer that only spreads traffic evenly can weaken this advantage by sending the next turn to another GPU.

The traffic itself also changes over months: popular models turn over, outputs get shorter, and newer users tend to send larger inputs.

That makes short or synthetic workload benchmarks a poor picture of long-running production.

Overall, routing, caching, and capacity planning should use the history and structure of real traffic, rather than treating every request as an isolated job.

– arxiv. org/abs/2608.13573

Title: "A Year in LLM Serving: Workload Evolution, Caching and Load-Balancing"

来源:Rohan Paul· x.com