AWS AgentCore Runtime V2 Changes the Economics of Long-Running AI Agents
Amazon Bedrock AgentCore Runtime V2, announced September 18, 2026, changes agent startup and memory accounting by restoring prepared snapshots and reclaiming unused memory instead of holding a session at its peak footprint.
Amazon Bedrock AgentCore Runtime V2 changes the infrastructure economics of long-running AI agents by restoring prepared runtime snapshots and reclaiming memory as sessions stop using it, rather than repeatedly initializing full environments and holding memory at the session's peak. AWS announced the new runtime on September 18, 2026; developers opt into it with platformVersion: V2, while V1 remains the default when that field is omitted. AWS
What changed in AgentCore Runtime V2
AgentCore Runtime is the managed compute layer inside Amazon Bedrock AgentCore. The V2 change is not a new model. It changes how the execution environment starts and how its memory is accounted for.
The central sequence is:
prepare healthy agent environment
↓
capture snapshot
↓
restore snapshot for new instances
↓
page memory in as needed
↓
reclaim memory when it becomes cold
AWS says the new runtime is designed for agents that may run interactively, for long periods, or as unattended workloads triggered by events.
Why snapshots matter for cold starts
In the earlier runtime, starting an instance required the platform to initialize the environment again. AWS measured P75 cold-start latency rising from roughly 5.4 seconds to nearly 30 seconds across the tested 200 MB to 2 GB image range.
For V2, AWS prepared the environment once, captured a snapshot after initialization, and restored that snapshot for each new instance. In AWS's test of an empty echo agent, the reported P75 cold-start latency stayed around 2 seconds across the same image-size range.
Those are platform measurements, not end-user response times. AWS's test intentionally used an echo agent that made no model or tool calls so that the measurement isolated the runtime startup path. A real agent will normally spend additional time in model calls, tools, network requests, and its own application code.
The memory model also changes
V2 starts sessions with a smaller resident memory footprint and loads more memory as the workload touches it. When memory becomes unused, the platform can reclaim it rather than retaining the peak allocation until the session ends.
That changes the shape of resource accounting:
| Runtime behavior | V1 | V2 |
|---|---|---|
| Startup | initialize environment | restore prepared snapshot |
| Image-size effect on reported cold start | increases with tested image size | largely flattened in AWS test |
| Memory | peak-shaped session footprint | grows and can be reclaimed |
| Platform selection | default | explicit V2 opt-in |
The useful abstraction is therefore not simply "faster serverless agents." It is a runtime that separates the size of the software environment from the amount of memory actively needed by a session.
V2 is not a drop-in semantic change
The snapshot model changes how initialization code should be written. AWS's documentation says the first healthy /ping is used to determine when the environment is ready for snapshotting, and the snapshot then becomes the starting point for later instances.
That means initialization that assumes it runs from a completely fresh process on every instance needs review.
There are also current V2 constraints. AWS documents smaller environment-variable limits than V1 for direct code and container deployments, and CloudFormation and the AWS CDK cannot currently set platformVersion directly. Creation and updates can also take several minutes because snapshot preparation happens before the runtime becomes ready.
These are important operational differences because they mean a team should test an existing agent rather than treating V2 as a transparent performance switch.
The pricing story is more subtle than "cheaper"
AWS says V2 bills based on memory actively used and reclaims memory as the session releases it. That can reduce the amount of memory-hours consumed by workloads whose live footprint fluctuates substantially.
But lower resource consumption does not automatically mean a lower invoice for every workload. The economics depend on workload shape, memory residency, invocation frequency, CPU use, session duration, and AWS's applicable V2 rates.
A useful comparison therefore looks like:
cost per successful task
=
model + tools + runtime CPU + active memory + retries
rather than comparing the runtime's memory rate in isolation.
Why this matters for agent architecture
The shift comes as agent applications move away from short request-response interactions toward longer workflows. Coding agents, research agents, and enterprise automation can run many tool calls over minutes or hours.
That makes the execution layer part of the product's performance model.
The Observatory's OpenAI Agents API analysis tracks a related architectural shift: model providers are increasingly exposing the agent harness itself as a managed platform primitive. AgentCore V2 is another version of that movement, but at a lower infrastructure layer—runtime startup, memory, isolation, and lifecycle rather than primarily orchestration APIs.
The security boundary matters too. The Observatory's GitSpawn analysis shows why background execution infrastructure can become an attack surface even when a model-level permission system looks sound. A managed runtime does not remove that class of concern; it changes where developers need to inspect the boundary.
What to measure before migrating
Teams evaluating V2 should preserve a baseline and measure the same workload on both versions.
At minimum, record:
- P50 and P95 task latency;
- cold-start latency separately from model latency;
- memory residency over a session;
- runtime CPU usage;
- model and tool-call time;
- retries and failed initializations;
- cost per completed task;
- and any behavior changes caused by snapshot-based initialization.
This follows the same measurement principle used in the Observatory's AI evaluation framework: optimize the outcome that matters, not one local metric.
What AWS's results do and do not establish
Observed: AWS announced AgentCore Runtime V2 on September 18, 2026 and documents it as an explicit platformVersion choice. AWS documentation
Reported by AWS: In its controlled echo-agent test, V2 produced approximately 2-second P75 cold starts across 200 MB to 2 GB images, compared with roughly 5.4 to nearly 30 seconds for the prior runtime. AWS
Unknown: Those results do not establish a universal end-to-end latency or cost improvement for every agent workload. Real applications include model calls, network latency, tools, storage, and application-specific initialization.
Operational limitation: V2 currently has documented configuration and infrastructure-as-code differences from V1, so migration requires testing rather than a blind version flip.
Why this is meaningfully new
The Observatory already covers the rise of managed agent execution. AgentCore V2 adds a different system layer: the runtime is adapting its resource model to the temporal shape of agent workloads. The important signal is not merely that AWS made cold starts faster. It is that agent infrastructure is beginning to treat memory, initialization state, and lifecycle as workload-dependent resources instead of fixed container properties.
Limitations
This article relies primarily on AWS's announcement and technical documentation, with independent coverage used for corroboration. AWS's performance numbers are vendor measurements using a deliberately minimal test agent. Pricing and resource behavior can change, and the documented V2 constraints should be rechecked before production migration.
Sources and further reading
Evidence
Sources & further reading
Primary sources, official disclosures, and external research used to ground this report.
- AWS — The new AgentCore runtimeaws.amazon.com
Primary September 18, 2026 announcement describing V2 memory reclamation, snapshot-based startup, measured cold-start results, pricing model, and planned capabilities.
- AWS — AgentCore Runtime technical documentationdocs.aws.amazon.com
Primary technical documentation for platform versions, V2 snapshot behavior, supported Regions, configuration, lifecycle, and current limitations.
- AWS — AgentCore Runtime release notesdocs.aws.amazon.com
Primary release history for AgentCore, including September 2026 runtime and evaluation changes.
- Tech & Business — AgentCore Runtime coveragetechandbusiness.org
Independent September 18, 2026 coverage corroborating the V2 availability, snapshot model, regions, and reported cold-start range.
Keep Exploring
Related observations.
OpenAI's Agents API Moves Long-Running Agent Infrastructure Into the Platform
The important change in OpenAI's Agents API is not another model endpoint. It is the decision to expose the execution harness itself as a managed platform primitive.
OpenAI's New Misalignment Framework Turns Rogue Model Behavior Into a Trackable Incident Class
OpenAI is moving model misalignment reporting from occasional research disclosures toward an ongoing incident process. The important signal is the reporting mechanism itself—and its limits.
Gemini 3.8 Live Changes the Voice-Agent Contract
The important change in Gemini 3.8 Live is not simply better voice quality. It is that conversation, reasoning, and tool execution can now overlap.