product updateAmazon Web Services

AWS Overhauls Bedrock AgentCore Runtime, Cuts Cold Starts to Flat 2 Seconds Regardless of Image Size

TL;DR

Amazon has released an updated Bedrock AgentCore runtime that holds cold start latency at roughly 2 seconds regardless of container image size, versus up to 30 seconds on the previous version. The update also changes memory billing to track real-time usage instead of peak allocation.

3 min read
0

Amazon has shipped a new version of the Amazon Bedrock AgentCore runtime, the managed compute layer for deploying AI agents, with two changes aimed directly at production workloads: flat cold-start latency and usage-based memory billing.

The numbers

According to AWS, the company tested an empty echo agent (one that returns input with no model or tool calls, isolating platform overhead) across five image sizes from 200 MB to 2 GB, sending 5,000 cold invocations per agent per runtime version. Results, measured client-side from an EC2 instance in us-west-2 calling agents in us-east-1 over the public internet:

  • New runtime: P75 cold start latency of approximately 2 seconds, flat across all image sizes from 200 MB to 2 GB.
  • Original runtime: latency scaled with image size, from roughly 5.4 seconds up to nearly 30 seconds.

AWS says the improvement comes from a snapshot-based startup model: the platform prepares an environment once, snapshots it, and restores that snapshot for each new instance rather than repeating a full boot-and-initialize sequence on every cold start.

On the memory side, AWS says the new runtime starts each session from a smaller baseline memory profile and pages in additional memory on demand as the workload requires it, rather than holding a full provisioned footprint for the session's duration. Based on AWS's stated analysis of allocation patterns across billions of sessions, the runtime now reclaims memory once it goes cold and is unlikely to be reused, instead of holding it until the session ends. AWS says billing now tracks these reclamation events over a session's lifetime rather than tracking the peak memory watermark, as the original runtime did.

Why AWS made these changes

AWS frames the update around a shift in how agents are used: from short chat-style exchanges to long-running, ambient agents that operate for hours with intermittent activity, sometimes triggered by other agents or events rather than direct user requests. AWS says this shift exposed two gaps in the original AgentCore runtime — memory billed at peak usage even when idle, and cold-start latency that grew with image size and worsened under bursty traffic, which AWS says forced customers to build workarounds like pre-warmed spare environments to avoid delays.

The underlying serverless model is unchanged: pay-per-use billing with scale-to-zero when agents are idle. AWS states the goal is to keep that consumption model intact while extending it to cover both quick interactive sessions and longer, more autonomous agent runs. Pricing for the new runtime was not disclosed in AWS's announcement.

What this means

Cold-start latency and memory over-provisioning are the two costs that make serverless agent infrastructure expensive to run at scale, and both have been cited by developers as reasons to build custom orchestration layers instead of relying on managed platforms. AWS's benchmark — a flat ~2-second P75 cold start independent of image size — is a meaningful claim if it holds under real production traffic with actual model and tool calls, rather than the empty echo agent used in AWS's own test. Independent verification against real-world agent workloads, and disclosure of updated pricing, will determine whether this closes the gap with self-managed alternatives or simply shifts complexity from customers to AWS's infrastructure.

Related Articles

product update

Wood Mackenzie Builds Shared Agentic Platform APEX on Amazon Bedrock AgentCore

Wood Mackenzie built APEX (Agentic Platform for Energy eXperience) on Amazon Bedrock AgentCore to give three separate applications a shared runtime for identity, guardrails, memory, and scaling instead of each rebuilding the same infrastructure. The company says 88% of its internal AI proofs-of-concept never reach wide deployment, a gap it attributes to architecture rather than model quality.

product update

AWS Details How Amazon Bedrock Prompt Caching Cuts Input Token Costs by Up to 90%

Amazon Bedrock's prompt caching feature can cut input token costs by up to 90% on cache hits by storing repeated context like documents, system prompts, and tool definitions. AWS outlines six implementation patterns and pricing details, including a 25% premium for cache writes and 90% discount on cache reads.

product update

Google Relaunches CC as a Family-Management AI Agent Running on Gemini and Antigravity

Google has repositioned CC, its email-and-calendar AI agent, as a household management tool for families. The updated agent, powered by Gemini and Google's Antigravity framework, can handle permission slips, meal plans, and shared calendars for up to six family members, but remains limited to U.S. adults with personal Gmail accounts.

product update

Meta Brings Muse AI Agent to Mac, Enabling Actions Across Files, Mail and Calendar

Meta has launched a Mac desktop version of Muse, its AI assistant that can act on files, messages, calendar, notes and mail within native apps. The release follows Muse's mobile and web debut earlier this month, which topped U.S. App Store charts.

Comments

Loading...