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

推荐订阅源

博客园 - 聂微东
Y
Y Combinator Blog
WordPress大学
WordPress大学
L
LangChain Blog
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
A
About on SuperTechFans
小众软件
小众软件
有赞技术团队
有赞技术团队
S
SegmentFault 最新的问题
宝玉的分享
宝玉的分享
Recent Announcements
Recent Announcements
GbyAI
GbyAI
I
InfoQ
The GitHub Blog
The GitHub Blog
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
酷 壳 – CoolShell
酷 壳 – CoolShell
罗磊的独立博客
C
Check Point Blog
V
V2EX
Apple Machine Learning Research
Apple Machine Learning Research
月光博客
月光博客
量子位
雷峰网
雷峰网
Hugging Face - Blog
Hugging Face - 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
Fluid compute: Evolving serverless for AI workloads - Ver...
Collier Kirkland · 2025-05-30 · via Vercel News

4 min read

AI’s rapid evolution is reshaping the tech industry and app development. Traditional serverless computing was designed for quick, stateless web app transactions. LLM interactions require a different sustained compute and continuous execution patterns.

This design mismatch presents an opportunity for a new compute model tailored for AI workloads.

Link to headingLLM interactions: A sequence, not a single request

Engaging with an LLM is more than just sending a request and receiving a response. Unlike traditional web apps, where most requests are processed in milliseconds, LLM workloads involve extended execution times and periods of inactivity.

Each interaction follows a multi-step process:

  • Serverless function is invoked: The function initializes and prepares to process the LLM request

  • Function sends request to LLM API: At this stage, the function is actively consuming compute resources

  • Function enters idle state waiting for response: This can take several seconds to minutes, but the function remains running, accumulating billable time despite doing no useful work

  • LLM completes processing and returns response to function: The response is received by the waiting function (if still active)

  • Response is streamed back to the client: If the function timed out during the wait, a new instance must be spun up to handle the response

  • Cycle repeats for subsequent requests: Each new interaction typically spawns a new function instance, even though existing ones may still be available but underutilized

This sequence reveals how architectural assumptions differ between LLM interactions and traditional serverless:

  • Transaction timing: Instead of multi-second LLM processing times, traditional serverless was designed for millisecond responses

  • Execution patterns: Functions were built for single, isolated requests, rather than sequential LLM conversations

  • Resource lifecycle: The traditional model assumes quick completion over sustained interactions

  • Scaling model: Horizontal scaling was optimized for short bursts of activity, not continuous AI workloads

Traditional serverless computing excels at its intended use case: quick, stateless web transactions. LLM interactions simply represent a different computational paradigm that requires purpose-built infrastructure.

Link to headingFluid compute for AI workloads

Fluid, our new compute model, reduces total compute consumption by utilizing existing resources before scaling new ones. Instead of launching a new function for every request, it intelligently reuses available capacity, ensuring that compute isn’t sitting idle. This means:

  • Prioritizing existing resources before spawning new ones: Fluid scales inside a single instance first (many-to-one), avoiding cold starts and extra spin-ups that increase costs

  • Scaling happens inside a function, not just across instances: Compute is shared dynamically instead of spawning unnecessary new functions

  • AI conversations remain fluid and cost-efficient: Users get uninterrupted responses while developers reduce infrastructure inefficiencies

A single instance can now process multiple AI inference requests simultaneously, reducing overhead and enabling more efficient scaling. By dynamically reallocating compute where needed, Fluid ensures your AI workloads run at peak performance with every resource actively contributing to processing.

Additionally, Fluid strategically places resources in regions close to your data, optimizing for both performance and consistency while enabling efficient execution of resource-intensive AI workloads.

With Fluid compute, LLM workloads no longer have to choose between scalability and efficiency; they get both. AI apps remain secure and responsive, costs stay predictable, and every function invocation actively contributes to processing, not just waiting. Instead of paying for idle compute, Fluid compute ensures every second of function time is fully utilized.

See how Fluid compute works on Vercel

Fluid compute boosts serverless performance by reusing idle compute during LLM calls, keeping functions active and scaling dynamically.

Learn more

Link to headingSecure by default

Beyond optimization, Fluid compute is built on a foundation of security and reliability for the demands of modern AI workloads.

  • Edge security with Vercel Firewall: Requests are routed to the nearest Vercel Point of Presence (PoP) and inspected by the Vercel Firewall before reaching the Vercel Functions router. This Layer 7 protection blocks most application-level threats, including DoS attacks, and filters suspicious traffic, ensuring that only legitimate requests reach your apps

  • Secure instance architecture: Fluid compute instances are never directly exposed to the internet. Instead, they connect to the Vercel Functions router through secure, persistent TCP tunnels. All communication, including function invocations and responses, flows through this controlled channel, ensuring strong isolation and precise workload management

  • Enhanced reliability and availability: Fluid automatically fails over across multiple availability zones within a region. For Enterprise customers, Fluid also has multi-region failover capabilities. These safeguards help ensure uptime and keep your apps resilient in the face of localized disruptions

This layered security model ensures that Fluid delivers performance and efficiency without compromising the protection required for sensitive AI workloads.

Link to headingStart building with AI

AI workloads require more than just scale. They require efficiency and security. Fluid compute ensures full resource utilization, ultimately reducing costs while delivering secure, high-performance execution.

It’s the infrastructure AI teams have been looking for: fast, adaptive, and built to support real-time inference and background tasks. Fluid compute is now the default for new projects, and can be enabled for existing projects.

Deploy an AI-powered app with Fluid compute today

Optimize your AI applications with Fluid compute and maximize your compute.

Get started