惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

IT之家
IT之家
Recent Announcements
Recent Announcements
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
The GitHub Blog
The GitHub Blog
MyScale Blog
MyScale Blog
爱范儿
爱范儿
GbyAI
GbyAI
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
美团技术团队
Y
Y Combinator Blog
博客园 - 叶小钗
Apple Machine Learning Research
Apple Machine Learning Research
Martin Fowler
Martin Fowler
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
罗磊的独立博客
M
MIT News - Artificial intelligence
博客园 - Franky
V
Visual Studio Blog
I
InfoQ
V
V2EX
Hugging Face - Blog
Hugging Face - Blog
腾讯CDC
博客园 - 司徒正美
L
LangChain Blog

The Register - Special Features

Troops’ phones gave away location data to foreign adversaries Qualcomm picks bad time to pitch a $300 laptop platform AI agents get their own phone directory built atop DNS Carnival confirms ShinyHunters cruised off with 6M customer records after April breach Google engineer accused of turning Year in Search secrets into Polymarket payday Are we human? India's cyber agency sets clock at 12 hours to tackle exploited bugs as AI turns up the heat Broadcom gets early start on WiFi 8 with next-gen wireless routing kit Are we human? Microsoft Excel champ proves he still has the formula Anthropic co-founder hallucinates ghost in the machine Anthropic co-founder hallucinates ghost in the machine NASA plans Moon Base buildout with rovers, drones, cargo landers MyPillow must decide whether to be firm or soft as ransomware crims demand pay Starship shows it can deploy satellites, but Moon mission clock still ticks Huawei's chip law looks less like Moore and more like marketing Experts pour cold borscht on Farage's Russian hack claim Logitech unveils a cushioned mouse for all-day use AI eyes scanning for bugs create a worrisome Linux security trend A Russian speaker and jailbroken Gemini went on a hacking spree and emptied at least one MAGA victim's crypto wallets AI datacenter boom collides with US grid reality Media giant settles for $930k amid user-snooping allegations AT&T sues to ditch Cali copper phone lines to save billions FBI warns of Kali365 as device code phishing soars Techie claims Trump Mobile website was leaking thousands of people's data BOFH: Vibe-coded solutions arrive for problems nobody has Dems slam Trump for making cybersecurity hold out the tin cup while splurging on ballroom and Jan. 6 'slush fund' Google explains how it will infuse ads into AI answers AI is getting pricey, but relief is coming, but not for you Deus ex machina: Half of US Christians trust AI's spiritual advice
AWS debuts Lambda MicroVMs with up to 8 hours runtime
Tim Anderson · 2026-06-23 · via The Register - Special Features

DEVOPS

Suitable for running untrusted code, AI agents, or any long-running task

AWS has introduced Lambda MicroVMs, built on its Firecracker virtual machine monitor, which can run isolated Linux containers with runtimes of up to eight hours, in contrast to the 15-minute limit on containers in Lambda functions.

MicroVMs form a new core feature of Lambda, the AWS serverless platform. Developers provide a Dockerfile defining a container along with application artifacts, and upload it to Amazon S3. Lambda builds this into a Firecracker snapshot, which can then be run with multiple instances if needed. 

AWS presents the primary purpose of MicroVMs as providing an isolated environment for running code, such as inspecting potentially malicious packages, scanning for vulnerabilities, or running AI-generated code while guarding against prompt injection and insecure output. They are also suitable for running code as part of a CI/CD process.

Developers have noted that the new feature has plenty of uses beyond code isolation. "This lets you run anything you like and for up to 8 hours all while giving you full shell access to the VM and unopinionated HTTP ingress. All while still getting the benefits of SnapStart and true consumption-based pricing as opposed to wall-time pricing. It's a complement to functions," said one.

Another obvious use case is for AI agents, though the company already offers AgentCore Runtime, which looks a lot like MicroVMs. Both have a maximum lifetime of eight hours, for example. MicroVMs are more generalized, though, and unlike the AgentCore Runtime, a MicroVM can be suspended and resumed. AWS does provide a skill for its Agent Toolkit that uses MicroVMs, making this a simpler alternative to the AgentCore runtime. AWS also provides a guide to using MicroVMs for AI agents managed by Anthropic Claude.

Using AWS Lambda MicroVMs as sandboxes for Anthrophic Claude managed agents

Using AWS Lambda MicroVMs as sandboxes for Anthrophic Claude managed agents
AWS

A MicroVM has several possible states, including running, suspended, and terminated. It can automatically scale up to four times the base specification, and automatically suspend when there is no traffic. When it resumes, for example in response to a new network request, its state is preserved.

MicroVM pricing is based on per-second usage of vCPU, RAM (provisioned in a 2:1 GB ratio to vCPU), snapshot storage, and data transfer. When a MicroVM is suspended, the compute charges cease. At the time of writing, it appears that MicroVMs are only available in US East, US West, Tokyo, and Ireland regions, and only Arm-based AWS Graviton instances are supported.

Although a MicroVM is an isolated VM, this is only one element of using AI securely, since it may need network access to other resources.

The ability to run a container on Lambda for more than 15 minutes has been a common request that MicroVMs now address. The feature provides a serverless, ephemeral environment that is nevertheless suitable for relatively long-running tasks or a full day of coding, with its relatively high compute price mitigated by scaling down to just snapshot storage costs when not in use. ®