Cross-datacenter PDD for agentic LLM serving

机器之心 · wechat · 2026-07-20

Agentic infra hits the real bottleneck: inference latency

This long WeChat article explains why agent workloads change the economics of inference: users don’t wait for a single reply, they wait through many tool calls and rounds, so small per-step delays compound into minutes of degradation.

It introduces PDD (Prefill-RelayDecode-MainDecode), a cross-datacenter, heterogeneous PD-disaggregation design for LLM serving. The article argues that PD separation is necessary because prefill is compute-heavy while decode is memory/bandwidth-heavy, and that heterogeneous chips can each do what they’re best at.

Why cross-cluster matters

How PDD works

KV cache is sent on two paths: fast local RDMA to RLD, and slower WAN/TCP to MD. RLD emits EagerOutputTokens while waiting for MD.

When MD finally receives the context, it does not need the full incremental KV cache. Instead, RLD sends only the token IDs, and MD recomputes the missing KV locally. The article says this keeps the handoff payload tiny and avoids unstable WAN transfer spikes.

Key measurements and claims

What the company is doing

The piece frames the company’s strategy as an “AgenticInfra” stack with three layers:

It also says the company is building infrastructure agents for ops, cluster maintenance, and operator generation, aiming for a closed loop where infrastructure becomes self-optimizing.

Original post →

More from coding & agent

coding & agent channel →