Menu

Vercel Sandbox now supports up to 32 vCPU + 64 GB RAM configurations - Vercel
📰
0

Vercel Sandbox now supports up to 32 vCPU + 64 GB RAM configurations - Vercel

Vercel News·Tom Lienard·4 days ago
#ZuS2qb4D
#vercel#sandbox#vcpus#large#resources#photo
Reading 0:00
15s threshold

Vercel Sandbox now supports creating sandboxes with up to 32 vCPUs and 64 GB of RAM for Enterprise customers. This enables running large, resource-intensive applications that are CPU-bound or require a large amount of memory.

Get started by setting the resources.vcpus option in the SDK:

import { Sandbox } from "@vercel/sandbox";

const sandbox = await Sandbox.create({

resources: { vcpus: 32 },

});

Or using the --vcpus option in the CLI:

sandbox create --connect --vcpus 32

Learn more about Sandbox in the docs.

Read More