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

推荐订阅源

Martin Fowler
Martin Fowler
Engineering at Meta
Engineering at Meta
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
阮一峰的网络日志
阮一峰的网络日志
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
量子位
Jina AI
Jina AI
Microsoft Azure Blog
Microsoft Azure Blog
博客园_首页
L
LangChain Blog
A
About on SuperTechFans
人人都是产品经理
人人都是产品经理
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
美团技术团队
博客园 - 三生石上(FineUI控件)
N
Netflix TechBlog - Medium
D
DataBreaches.Net
P
Proofpoint News Feed
小众软件
小众软件
Vercel News
Vercel News
T
The Blog of Author Tim Ferriss
WordPress大学
WordPress大学
雷峰网
雷峰网
G
Google Developers Blog

Vercel News

Vercel Open Source Program: Winter 2026 cohort How Notion Workers run untrusted code at scale with Vercel Sandbox How we run Vercel's CDN in front of Discourse From idea to secure checkout in minutes with Stripe Building Slack agents can be easy Scaling redirects to infinity on Vercel Advancing Python typing Gamma builds design-first agents with Vercel How Avalara turns pipe dreams into patent-pending with v0 Keeping community human while scaling with agents How OpenEvidence built a healthcare AI that physicians actually trust Security boundaries in agentic architectures Skills Night: 69,000+ ways agents are getting smarter Video Generation with AI Gateway We Ralph Wiggumed WebStreams to make them 10x faster How Stably ships AI testing agents in hours, not weeks How we built AEO tracking for coding agents Anyone can build agents, but it takes a platform to run them Introducing Geist Pixel The Vercel AI Accelerator is back with $6m in credits Making agent-friendly pages with content negotiation The Vercel OSS Bug Bounty program is now available Introducing the new v0 Run untrusted code with Vercel Sandbox, now generally available How Stripe built a game-changing app in a single flight with v0 How Sensay went from zero to product in six weeks AGENTS.md outperforms skills in our agent evals Agent skills explained: An FAQ Testing if "bash is all you need" AWS databases are now live on the Vercel Marketplace and v0
How Fluid compute works on Vercel - Vercel – Vercel
2025-03-03 · via Vercel News

3 min read

Fluid compute is Vercel’s next-generation compute model designed to handle modern workloads with real-time scaling, cost efficiency, and minimal overhead. Traditional serverless architectures optimize for fast execution, but struggle with requests that spend significant time waiting on external models or APIs, leading to wasted compute.

To address these inefficiencies, Fluid compute dynamically adjusts to traffic demands, reusing existing resources before provisioning new ones. At the center of Fluid is Vercel Functions router, which orchestrates function execution to minimize cold starts, maximize concurrency, and optimize resource usage. It dynamically routes invocations to pre-warmed or active instances, ensuring low-latency execution.

By efficiently managing compute allocation, the router prevents unnecessary cold starts and scales capacity only when needed. Let's look at how it intelligently manages function execution.

Link to headingCoordinating function execution

Vercel Functions router applies Fluid principals to optimize execution. It dynamically assigns requests to instances based on real-time metrics such as load, availability, and type.

In turn, Fluid instances process multiple concurrent requests, reducing idle compute cycles and ensuring efficient workload distribution. This interplay between routing intelligence and flexible execution allows Fluid compute to scale responsively, maintaining low-latency performance while preventing over-provisioning and performance degradation.

This optimization is achieved through a secure infrastructure design where instances communicate exclusively through the router via persistent TCP tunnels. Rather than accepting direct traffic, instances establish bidirectional connections with the function router, enabling them to receive incoming invocation data while simultaneously streaming response data back.

This architectural pattern enhances security and enables Vercel Functions router to maintain precise control over workload distribution and scaling decisions.

Link to headingVercel Functions router: Efficient request management

The router optimizes every request in real time—routing efficiently, selecting the best compute, and scaling dynamically with the following process:

1. Routing, security, and caching
The moment a user presses enter, their request is routed to the nearest Vercel Point of Presence (PoP) via Anycast for the lowest possible latency. Before moving forward:

  • The Vercel Firewall inspects traffic, blocking threats like DDoS attacks and suspicious patterns

  • If cached at the edge, the response is served instantly

  • If execution is required, the request moves to the router

2. Compute selection and execution
Vercel Functions router determines the optimal execution region based on proximity, load, and availability. It then selects the best compute instance:

  • In-flight instances (active) are prioritized for efficiency

  • Proactively spawned, pre-warmed instances (currently idle) minimizes cold starts, while bytecode caching reduces their start time

3. Processing and response optimization
With an instance assigned, the function begins execution—running logic, querying databases, or calling APIs. If streaming is enabled, responses start flowing immediately as data becomes available, improving Time to First Byte (TTFB).

4. Adaptive scaling and resource efficiency
To maintain performance and avoid wasting compute, Fluid continuously:

  • Monitors traffic patterns, instance health, and workload fluctuations in real time

  • Proactively scales new instances during surges

  • Gracefully scales down idle instances to optimize resource use

From keystroke to response, Fluid dynamically optimizes execution, intelligently handling every request with speed and efficiency.

Link to headingReducing costs with Fluid

Because Fluid prioritizes existing resources with idle capacity, projects with Fluid enabled have cut compute costs by up to 85%.

Fluid compute is not just about better scaling, it is about smarter resource usage. By dynamically adjusting to traffic and eliminating idle compute time, Fluid compute ensures you only pay for the compute you actually use.

Link to headingEnable Fluid compute on Vercel today

Enable Fluid compute in your Project Settings today—no migrations needed. Available on all plans.

Enable Fluid compute today

Fluid is our fast, cost-efficient compute, available today.

Enable Now

Once enabled, visit your Observability tab to track function performance and compute savings.

Learn more about Fluid in the changelog and documentation.