The Commonplace
Home Papers Evidence Explore Trends Syntheses Digests References Docs 🎲 Workforce Futures
← Papers
Direction, evidence grade, and study type are AI-generated labels (gpt-5-mini), not human-verified. Syntheses are LLM-written. "Tensions" are machine-detected candidates, not confirmed contradictions. A research-acceleration tool, not peer review. How this is built →

Long-lived, tool-using LLM sessions shift bottlenecks away from inference toward tools, state, and communication; simple, workload-informed changes—task-aware scheduling, co-location, state offloading and caching—cut latency by up to 40%, slash memory footprints >4×, and eliminate a large share of redundant external calls.

From LLM Inference to Agentic Workloads: Characterization and Implications for Serving Systems
Chaokun Chang, Yukun Zhou, Kaihua Fu, Dakai An, Tianyu Feng, Hanfeng Lu, Sheng Yao, Pu Guo, Yinghao Yu, Yizhou Shan, Bo Li, Binhang Yuan, Wei Wang · August 15, 2026
arxiv descriptive n/a evidence 7/10 relevance Full text usable extracted full text Source PDF

Structured author observations

Linked only from stored provider relations; the raw author line above is never matched by name.

Arxiv

Latest observation:

  1. Chaokun Chang unresolved corpus identity
  2. Yukun Zhou unresolved corpus identity
  3. Kaihua Fu unresolved corpus identity
  4. Dakai An unresolved corpus identity
  5. Tianyu Feng unresolved corpus identity
  6. Hanfeng Lu unresolved corpus identity
  7. Sheng Yao unresolved corpus identity
  8. Pu Guo unresolved corpus identity
  9. Yinghao Yu unresolved corpus identity
  10. Yizhou Shan unresolved corpus identity
  11. Bo Li unresolved corpus identity
  12. Binhang Yuan unresolved corpus identity
  13. Wei Wang unresolved corpus identity

Semantic Scholar

Latest observation:

  1. Chaokun Chang provider ID
  2. Yukun Zhou provider ID
  3. Kaihua Fu provider ID
  4. Dakai An provider ID
  5. Tianyu Feng provider ID
  6. Hanfeng Lu provider ID
  7. Sheng Yao provider ID
  8. Pu Guo provider ID
  9. Yinghao Yu provider ID
  10. Yizhou Shan provider ID
  11. Bo Li provider ID
  12. Binhang Yuan provider ID
  13. Wei Wang provider ID
AgentSysBench profiles ten agentic LLM applications and production traces to show that non-LLM components (tools, state, communication) often dominate latency, memory, and cost, and demonstrates that task-aware serving, placement, state offloading, and caching materially reduce latency and resource use.

Citation observations

Cumulative provider counts captured on specific dates; providers are never combined.

Agentic applications are shifting AI serving from isolated model inference to long-running workloads in which LLMs coordinate tools, environments, and persistent state. However, the system behavior of these workloads---where latency, cost, and bottlenecks arise---remains poorly characterized, leaving serving systems to rely on assumptions built for conventional inference. We present AgentSysBench, a benchmark suite and measurement toolkit with ten representative agentic applications and unified systems-level instrumentation. Across controlled deployments and production traces, we identify six properties that distinguish agentic workloads from conventional LLM serving: (1) execution is heavyweight and stateful, with non-LLM components dominating latency in 5 of 10 applications and sandbox working-set memory peaking at 28 GB per session; (2) applications compose components with heterogeneous resource affinity---GPU-bound inference, memory-bound retrieval, CPU-bound sandboxes---whose task latencies diverge by up to 32x; (3) bottlenecks shift across requests, models, and deployments; (4) production sessions hold state idle for minutes to hours between active steps; (5) a control-plane tax---auxiliary LLM calls and context overhead from tool schemas and observations---crowds out productive compute and context; and (6) production traces from three applications reveal heavy cross-request redundancy in search queries and web fetches, exposing a large caching opportunity. Four design explorations demonstrate that these findings are actionable: task-aware serving reduces latency by 29--40%, communication-aware placement by up to 4.5x, state offloading reduces memory usage by 4.6x, and tool-result caching removes 35.2% of redundant search calls and saves 19.3% of aggregate search latency.

Summary

Main Finding

Agentic workloads—long-running LLM-driven sessions that orchestrate tools, environments, and persistent state—fundamentally change the cost, latency, and resource profile of AI serving. Model inference is often not the dominant cost: tools, sandboxes, vector DBs, network, and session state frequently dominate latency, memory, and monetary cost. Efficient, economical agent serving therefore requires coordinated management across models, tools, state, and communication rather than model-centric optimization alone.

Key Points

  • Scope and tool: The authors introduce AgentSysBench, a benchmark + measurement toolkit with 10 representative agentic applications (RAG, HuggingGPT, DeepResearch, Mini-SWE, Codex, WebAgent, GUIAgent, Claude Code, Openclaw, Pi-AutoR) and a modular serving stack that exposes hardware (H), component-serving mechanisms (C), and deployment architecture (A).
  • Measurement scale: Controlled experiments covered 4,641 requests, 64,924 LLM calls, 118,274 tool calls; production traces covered 178,799 sessions in one day.
  • Six workload properties that distinguish agentic workloads from conventional LLM inference:
  • Heavyweight, stateful execution: non-LLM components dominate latency in 5/10 apps; sandbox working-set memory can peak at ~28 GB per session.
  • Cross-stack heterogeneity: components have divergent resource affinities (GPU-bound inference, memory-bound retrieval/vector DB, CPU-bound sandboxes, network-bound services); task latencies on a single component can diverge up to 32×.
  • Shifting bottlenecks: dominant bottleneck varies across requests, models, tools, and deployments—averages mask this.
  • Long idle-but-live intervals: sessions often hold state idle for minutes to hours between steps.
  • LLM control-plane tax: auxiliary LLM calls (tool schemas, observations, safety checks) consume context and tokens, crowding out productive compute and adding cost.
  • Cross-request redundancy: production traces show heavy repetition (e.g., 27% of unique search queries recur and account for 67.3% of search API calls; 24% of distinct URLs recur and account for 64% of fetches).
  • Actionable interventions and measured gains:
    • Task-aware (disaggregated) serving: reduces latency by 29–40%.
    • Communication-aware placement (agent-aware co-location): up to 4.5× improvement.
    • State offloading (cold state to cheaper storage): reduces live memory by 4.6×.
    • Tool-result caching: eliminates 35.2% of redundant search calls and reduces aggregate search latency by 19.3%.

Data & Methods

  • Benchmark design goals: representativeness across request distributions (R), tools/environments (T), models/inference policies (M), and orchestration (O); controllable serving factors (H, C, A); unified component-level instrumentation; and complementing controlled runs with production traces.
  • Serving stack: modular, containerized components (LLM engines, embedding services, vector DBs, sandboxes, browsers/GUI, tool servers) that can be co-located or disaggregated to study placement and communication effects.
  • Instrumentation: per-LLM-call, per-tool-invocation, and per-state-operation logging of latency, resource usage (CPU/GPU/DRAM), data movement, live session footprint, token accounting, and cost attribution.
  • Controlled vs production: controlled experiments isolate variables (models, placement, orchestration) to attribute bottlenecks; production traces reveal phenomena that only emerge at scale (idle sessions, cross-request redundancy, realistic arrival patterns).
  • Representative models/orchestration: variety of models (Qwen variants, DS-V4-Pro, Kimi etc.), orchestration patterns (pipeline, plan-exec, ReAct, branching/looping), and arrival processes (one-by-one, Poisson, trace-driven).
  • Key quantitative observations (examples):
    • Non-LLM components dominate latency in 5/10 apps.
    • Sandbox per-session working-set memory peaks ≈28 GB.
    • Per-task latency divergence up to 32× across similar-looking tasks.
    • Controlled experiments: 4,641 requests, 64,924 LLM calls, 118,274 tool calls.
    • Production: 178,799 sessions in one day; search-query redundancy statistics noted above.
    • Optimization results: 29–40% latency reduction (task-aware serving), up to 4.5× (placement), 4.6× memory reduction (state offload), 35.2% fewer redundant searches / 19.3% search-latency saved (caching).

Implications for AI Economics

  • Cost structure shifts beyond token/GPU billing:
    • Non-LLM costs (CPU for sandboxes, DRAM for vector DBs and session state, network egress for web fetches/external APIs) can dominate. Per-request marginal cost accounting must include these resources, not only GPU time or tokens.
    • Idle-but-live sessions tie up memory/disk for long periods; charging only per-second GPU use underestimates provider costs. New pricing/metrics are needed to cover state residency (e.g., per-GB-hour for active session state or tiered storage offload fees).
  • Pricing and product design:
    • Providers should offer differentiated SKUs: GPU-only inference instances are insufficient. Offerings that combine/price CPU, memory, persistent session state, network egress, and caching (or provide managed state-offload + resume primitives) will be valuable.
    • Metering redesign: separate “control-plane” token usage (tool schemas, observation tokens) from “productive” tokens in billing or quota systems to encourage efficient tool interfaces and reduce wasteful context use.
    • Caching as a monetizable feature: caching tool results (search results, fetched pages) offers direct cost reductions for both providers and customers by cutting external API calls and latency. Providers can bundle shared caches or charge lower rates for cacheable workloads.
  • Resource procurement and capacity planning:
    • Heterogeneous resource demand implies procurement should not be GPU-centric. Investment in memory-rich servers, fast local storage, CPU capacity for sandboxes, and network topology (co-location) yields better cost-performance for agentic workloads.
    • Bottlenecks shift per-request and over time; static capacity planning based on averages leads to inefficiencies or SLO violations. Providers should invest in adaptive scheduling, multi-resource placement, and dynamic elasticity.
  • SLA and latency economics:
    • Head-of-line blocking due to heterogeneity (32× latency divergence) implies that single-queue, homogeneous provisioning raises tail latency and increases required over-provisioning to meet SLAs. Multi-queue, task-aware scheduling reduces required capacity and cost to hit the same SLA.
  • External API costs and downstream markets:
    • High redundancy in search/web fetches means substantial external-call cost can be avoided via caching/sharing. This affects both cloud provider economics (less egress, fewer billed third-party calls) and marketplace pricing for search/web APIs (providers could offer tiered caching contracts).
  • Business model and feature opportunities:
    • New managed services: session-state offloading + resumable execution, cross-request shared caches, agent-aware co-location, and multi-resource instance types aimed at agentic workloads.
    • Pricing models: subscription tiers for long-lived agent sessions, pay-per-resumable-session (covers memory + state management), or hybrid pricing (time on GPU + GB-hour for maintained state + per-tool-call).
  • Environmental/energy implications:
    • Long-lived sessions that keep memory/storage hot and interleave many small CPU/network operations may shift energy consumption patterns (less GPU-bound energy, more system/DRAM/network energy). Efficiency gains from offloading/caching can therefore reduce carbon intensity per user task.
  • Strategic implication for customers:
    • Application teams should profile end-to-end agentic workloads (tools, state, external calls) rather than optimize only model selection. Caching frequently repeated queries and compressing/control-budgeting tool interfaces offer immediate, low-risk cost reductions.
  • Risk to naive per-token pricing:
    • Token-based billing that ignores control-plane taxes and tool-call costs can misprice services—customers may be charged heavily for control tokens that add little productive value; providers may be under-recovering costs for memory/network-bound work.

Takeaway: agentic workloads change the economic calculus of AI serving. Both cloud providers and application teams should move from GPU/token-centric designs to multi-resource-aware, state-conscious, and cache-enabled architectures and pricing models to capture large, practical efficiency gains and to properly internalize the true marginal costs of agentic AI.

Assessment

Paper Typedescriptive Evidence Strengthn/a — This is a systems-characterization and benchmarking paper rather than a causal study of economic outcomes; it reports measurements and controlled system experiments instead of causal identification strategies. Methods Rigorhigh — The authors combine controlled experiments with unified, component-level instrumentation and complementary production traces; they vary serving-stack factors (hardware, componentization, placement) and measure large numbers of requests, LLM calls, and tool calls, which supports internally credible system-level inferences though findings depend on chosen apps, models, and implementations. SampleAgentSysBench evaluates ten representative agentic applications (RAG, DeepResearch/AI search, HuggingGPT/multimodal, Mini-SWE/Coding, Codex/Terminal, WebAgent/Browser, GUIAgent, Claude Code/tool-rich assistant, Openclaw/Office, Pi-AutoR/AutoResearch) under a modular serving stack. Controlled experiments: 4,641 benchmark requests, 64,924 LLM calls, 118,274 tool calls. Production traces: 178,799 production sessions in a single day; example trace totals include 373,678 search queries (27% recurring) and 4,389 web fetches (24% recurring). Models and infra referenced include Qwen2.5-7B, Qwen3.7-Max, DS-V4-Pro, Kimi-K2.6, and separate services for embeddings, vector DBs, sandboxes, browsers, etc. Themesadoption productivity GeneralizabilityBenchmark covers ten applications but is not a statistically representative sample of all agentic workloads—findings may depend on chosen app types and orchestration patterns., Results depend on the specific models, embedding/vector DB implementations, sandbox and browser setups, and hardware used; different models or tool implementations may shift bottlenecks., Production traces are drawn from a limited set of real deployments (authors’ collaborators) and one day of sessions; longer-term or different customer workloads may show different idle patterns or redundancy., Optimizations (e.g., co-location benefits, caching ratios) may scale nonlinearly with cluster size and network topology, limiting direct transfer to other cloud providers or architectures., Rapid evolution in LLM architectures, context handling, and tool APIs could change the relative importance of the identified cost centers over time.

Claims (10)

ClaimDirectionOutcomeConfidence & EvidenceDetails
Non-LLM components dominate or co-dominate latency in 5 of the 10 evaluated agentic applications. Task Completion Time negative Share and composition of end-to-end execution latency
Reading fidelity high
Study strength medium
n=4641
5 of 10 applications
0.18
Tasks sharing a component can differ in latency by up to 32×, creating severe head-of-line blocking under a single queue. Task Completion Time negative Task execution latency variation
Reading fidelity high
Study strength medium
n=4641
up to 32× in latency
0.18
The dominant latency bottleneck shifts across requests, models, tools, and deployments. Organizational Efficiency mixed Identity of the dominant component contributing to request latency
Reading fidelity high
Study strength medium
n=4641
0.18
Production sessions often remain idle for minutes to hours between active steps while retaining conversational, tool, and environment state. Organizational Efficiency negative Duration of idle-but-live intervals and retention of session state
Reading fidelity high
Study strength medium
n=178799
minutes to hours
0.18
In a production agentic-search application, 27% of unique search queries recur and account for 67.3% of all search API calls. Organizational Efficiency positive Cross-request redundancy in search queries and search API-call frequency
Reading fidelity high
Study strength medium
n=373678
27% of unique search queries recur; 67.3% of all search API calls
0.18
In a production Openclaw-like application, 24% of distinct fetched URLs recur and account for 64% of fetch invocations. Organizational Efficiency positive Cross-request redundancy in fetched URLs and web-fetch invocation frequency
Reading fidelity high
Study strength medium
n=4389
24% of distinct fetched URLs recur; 64% of fetch invocations
0.18
Task-disaggregated serving reduces latency by 29–40%. Task Completion Time positive End-to-end request latency
Reading fidelity high
Study strength medium
n=4641
29–40% lower latency
0.18
Agent-aware co-location improves performance by up to 4.5×. Organizational Efficiency positive Serving performance under component placement choices
Reading fidelity high
Study strength medium
n=4641
up to 4.5×
0.18
State offloading reduces memory usage by 4.6×. Organizational Efficiency positive Memory usage for retained agent session state
Reading fidelity high
Study strength medium
n=178799
4.6× less memory
0.18
Tool-result caching removes 35.2% of redundant search calls and reduces aggregate search latency by 19.3%. Organizational Efficiency positive Number of redundant search calls and aggregate search latency
Reading fidelity high
Study strength medium
n=373678
35.2% fewer redundant search calls; 19.3% less aggregate search latency
0.18

Notes