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

推荐订阅源

Google DeepMind News
Google DeepMind News
爱范儿
爱范儿
J
Java Code Geeks
L
LangChain Blog
V
V2EX
大猫的无限游戏
大猫的无限游戏
S
SegmentFault 最新的问题
博客园 - Franky
Microsoft Azure Blog
Microsoft Azure Blog
Jina AI
Jina AI
Blog — PlanetScale
Blog — PlanetScale
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
The Cloudflare Blog
博客园 - 司徒正美
B
Blog
G
Google Developers Blog
Stack Overflow Blog
Stack Overflow Blog
罗磊的独立博客
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
Apple Machine Learning Research
Apple Machine Learning Research
Engineering at Meta
Engineering at Meta
MyScale Blog
MyScale Blog
有赞技术团队
有赞技术团队
Hugging Face - Blog
Hugging Face - Blog

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
A Vercel Sandbox alternative that runs in the EU
Stefan Iancu · 2026-06-24 · via DEV Community

Vercel Sandbox is a clean way to run untrusted code. A Firecracker microVM per sandbox, a Python and a JS SDK, snapshots that persist between runs, and if you already deploy on Vercel it drops straight in. It's a good product.

There's one line in the docs that decides it for a lot of EU teams, and it's easy to skim past: "Currently, Vercel Sandbox is only available in the iad1 region." That's US East, Northern Virginia. Every sandbox you create, every file your agent writes, every snapshot it saves - all of it runs there. There is no EU region to pick.

If you're an EU company shopping for a Vercel Sandbox alternative because of exactly that, this post is the comparison. Where the two line up, where they genuinely differ, and the honest places Vercel wins.

The short verdict

Pick Vercel Sandbox if you already live on Vercel, you want high self-serve concurrency out of the box, and US-region execution is fine for you. Pick orkestr if you're an EU company that needs the agent's code, files, and snapshots to physically stay in Europe - on every plan, by default, without a region you have to go ask for.

The one fact that decides it: where the code physically runs

Most "is it GDPR-friendly" arguments are about control - who can be compelled to hand over data. With Vercel Sandbox you don't even get to the control question, because the location question already answers it. The sandbox provisions in iad1. That's not a default you can override to Frankfurt; it's the only region the service runs in today.

                    WHERE YOUR AGENT'S CODE PHYSICALLY RUNS

  VERCEL SANDBOX                            orkestr
  runs on Vercel infrastructure            EU entity, no US parent
  ┌──────────────────────────────┐         ┌──────────────────────────────┐
  │                              │         │                              │
  │           iad1               │         │        fsn1 + hel1           │
  │   US East · N. Virginia      │         │  Falkenstein & Helsinki (EU) │
  │                              │         │                              │
  │   One region, today.         │         │   EU by default.             │
  │   No EU region to choose.    │         │   Every plan, including free.│
  │                              │         │                              │
  └──────────────────────────────┘         └──────────────────────────────┘
Vercel Sandbox provisions in US-East only. orkestr runs in the EU by default, with no region to negotiate.

Vercel's own docs are upfront about it: "Sandboxes run on Vercel's secure infrastructure, which maintains SOC 2 Type II certification... For specific data residency requirements, consult your plan details or compliance team." SOC 2 is real and worth having. It isn't EU data residency, and for a sandbox running in Virginia under a US company, no certificate changes where the bytes are.

What's genuinely good about Vercel Sandbox

A few things Vercel does are better than what we do, and you should know them before you choose.

It publishes high self-serve concurrency. Vercel lists up to 2,000 concurrent sandboxes on Pro and 10 on Hobby. orkestr's published plan limits start lower - 1 on Starter, 5 on Pro, 15 on Team - with higher concurrency available on request. If a big self-serve fan-out number is what you're optimising for, Vercel lists it today.

It runs longer. Vercel sandboxes can run up to 45 minutes on Hobby and 5 hours on Pro. That's a real fit for long builds and long agent sessions.

Persistence is automatic. Vercel sandboxes are persistent by default - when one stops, the SDK snapshots the filesystem for you and resumes from it next time. No manual snapshot bookkeeping. It's a nice default.

It can run privileged workloads. Vercel lets you run things like Docker, FUSE filesystems, and VPN clients inside the sandbox. If your agent needs a container runtime inside its throwaway box, that's a capability worth naming.

So this isn't "US thing bad, EU thing good." It's a tradeoff. Vercel trades EU residency for scale and depth of integration. orkestr trades the headline concurrency number for code that never leaves Europe.

Where the two are the same

The boring truth is that most of the surface is shared, because this is a problem with a known-good shape.

  • Each sandbox is a hardware-isolated microVM with its own kernel and filesystem - not a shared-kernel container. The isolation boundary is the same class on both.
  • Python and JavaScript SDKs, plus a REST API, with the same create / run / read+write files / snapshot / terminate lifecycle.
  • Pause and resume. Vercel persists by default; orkestr snapshots on pause() and restores on resume(). Same outcome, an agent can park mid-task.

Here's the orkestr Python SDK. If you've written Vercel Sandbox code, the shape will be familiar:

from orkestr import Sandbox

with Sandbox.create(template="python-3.12") as sbx:
    sbx.files.write("/workspace/main.py", "print(sum(range(1_000_000)))")
    result = sbx.exec("python /workspace/main.py")
    print(result.stdout)   # 499999500000

Performance is a wash. Vercel says sandboxes start "in milliseconds" and resume-from-snapshot is faster still. orkestr is around 150ms cold and under 30ms from a warm pool. Both are fast enough that your agent isn't sitting there waiting on a boot. The latency that actually matters is geography: if your users and your model API are on the US east coast, a sandbox in Frankfurt adds a transatlantic hop, and a Virginia sandbox doesn't. That cuts the other way, honestly - it's a fair reason to stay on Vercel if your whole stack is US-centric.

The one piece that is never in the EU, no matter who you pick

An agent is two machines: a model that decides what to do, and a sandbox that runs what it decided. Those are usually different companies. orkestr runs the sandbox. We do not run the model.

So when your agent decides to pip install pandas and parse this file, that decision came from whatever model you pointed it at. If that's a US model API, the prompt and completion are processed under that provider's terms, and that's your data processor to choose and your DPA to sign. What orkestr can promise is the other half: the code that runs, the files it touches, the snapshots it saves. All of that stays on EU hardware. Pick a European model like Mistral and the entire loop is in the EU; pick a US model and only the reasoning step crosses the border while the working data stays home.

This is true of Vercel Sandbox too - it also doesn't run your model. The difference is that with Vercel, both the model call and the sandbox can be on US infrastructure. With orkestr, the sandbox half is settled.

Jurisdiction stacks on top of location

The physical-location problem is the headline, but jurisdiction makes it worse, not better. Vercel Sandbox is operated by Vercel Inc., a US company. Under the US CLOUD Act, a US-incorporated provider can be compelled to produce data it controls, and here the data is also physically in the US. There's no daylight between "where the bytes are" and "whose lawyer answers the subpoena" - they both point at Virginia.

With orkestr, the company that signs your DPA is the company that runs the sandbox, and it's an EU entity with no US parent. EU hosting isn't an enterprise tier or a region you request. It's where everything runs by default, free plan included.

Vercel Sandbox orkestr
Where code physically runs US East (iad1) only, today EU (fsn1 Falkenstein, hel1 Helsinki)
Company jurisdiction US (Delaware) EU
EU data residency Not offered for sandboxes Default, every plan
Subject to US CLOUD Act Yes No
Isolation microVM, hardware-isolated microVM, hardware-isolated
Runtimes Node 22/24/26, Python 3.13 Python 3.12, Node 22, Ubuntu + custom
SDKs Python, JS, CLI Python, JS
Sandbox MCP server No (Vercel MCP is project tooling) Yes
Pause / resume snapshots Yes (persistent by default) Yes
Network egress default Internet on (firewall to close) Off (opt in)
Concurrent sandboxes 10 Hobby / 2,000 Pro 1 / 5 / 15 (more on request)
Max runtime 45 min Hobby / 5 hr Pro configurable timeout
Pricing Active CPU $0.128/hr + memory + creations Free to start; per-second usage

Isolation is a tie, on purpose - both run each sandbox as its own hardware-virtualised microVM. Decide on the rows where the columns actually differ, and for most EU teams the first four rows are the whole decision.

Network egress: opposite defaults

This one matters the moment a model is writing the commands. Both platforms let you control what a sandbox can reach. They just start from opposite ends.

Vercel sandboxes "can make outbound HTTP requests by default" so package installs work, and you lock that down with firewall policies. orkestr starts closed and you open up:

# no egress at all - the safe default for code you haven't read
sbx = Sandbox.create(template="python-3.12", network="off")

# allowlist - package registries and common APIs work, invented domains don't
sbx = Sandbox.create(template="python-3.12", network="restricted")

                    SAME CONTROLS, OPPOSITE STARTING POINT

  VERCEL SANDBOX                            orkestr
  ┌──────────────┐  add firewall            ┌──────────────┐  opt in
  │     open     │ ──────────────▶ closed   │     off      │ ──────────▶ open
  └──────────────┘                          └──────────────┘

  Internet on by default. You add          Nothing leaves by default. You opt
  rules to restrict what it can reach.     into restricted or open egress.
Both let you control egress. Vercel ships open and you close it; orkestr ships closed and you open it.

Neither default is wrong. But when the thing writing the commands is an LLM you haven't audited, default-closed is the safer place to start - a hallucinated curl evil.example.com fails until you decide otherwise.

When you're already on Vercel

There's one more reason Vercel Sandbox is attractive, and it's worth naming: it authenticates through Vercel OIDC tokens tied to your Vercel project. In production on Vercel, that auth is automatic. If your app already lives there, the sandbox is right there with it, no extra account.

That convenience is also the lock-in. The thing that makes Vercel Sandbox effortless if you're on Vercel is the same thing that makes it an odd standalone choice if you're not. orkestr sandboxes are a standalone product with a plain API key - you don't need to host anything else with us to use them.

When to pick which

Pick Vercel Sandbox if: you already deploy on Vercel, you want high self-serve concurrency out of the box, you want 5-hour runtimes or privileged in-sandbox workloads like Docker, and running in US-East is fine for your data.

Pick orkestr if: you're an EU company (or sell to one) and "our agent's code executes in Northern Virginia under a US company" is a sentence you don't want in a procurement doc - and you want EU residency to be the default on the free tier, not a region you have to request.

If that's you, you can start free - no waitlist, no card. Enable sandboxes from the console in one click, then create your first one from the dashboard or the SDK. If you want the longer story, here's why we built an EU sandbox for AI agents and a plain-language take on what a managed sandbox actually is. And if it's US-hosted infrastructure in general that's giving you pause, our Vercel breach checklist is in the same spirit.

FAQ

Can I run Vercel Sandbox in the EU?
Not today. Vercel's docs state sandboxes are "only available in the iad1 region," which is US East (Northern Virginia). There's no EU region to select, and no bring-your-own-cloud path for the sandbox product. If you need EU execution, you need a different provider.

Is Vercel Sandbox GDPR-compliant?
Vercel maintains SOC 2 Type II and can sign a DPA, and plenty of EU companies use Vercel under standard contractual clauses. But the sandbox itself runs in the US under a US entity, which means your agent's code and files are subject to the US CLOUD Act and to a transfer conversation. orkestr removes that conversation by keeping the runtime in the EU under an EU entity.

Is orkestr's isolation weaker than Vercel's?
No. Both run each sandbox as its own hardware-isolated microVM with a dedicated kernel - the boundary that keeps untrusted code from reaching the host or another tenant is the same class on both.

Does my model call stay in the EU?
The sandbox does - its code, files, memory, and snapshots. The model call is separate. If your agent uses a US-hosted LLM, that prompt and completion are processed by the model provider under your DPA with them. Use an EU model and the whole loop stays in Europe. This is true whichever sandbox you pick; neither orkestr nor Vercel runs your model.