Fetching from the wire…
Public story · 2026-09-11 · high
Switching from one metadata object per path to indexed JSONL shards dropped P99 latency from 215.8ms to 19.1ms and sped up deploys by up to a quarter.
Why now: Vercel published the writeup dated September 11, 2026.
Vercel's CDN used to store one metadata object per path and fetch the whole thing on every cold lookup. It now packs metadata into JSONL shards of roughly 200 KB, each with an embedded index and base64 byte offsets, so the router can binary-search a shard and parse only the entry it needs, per Vercel's writeup.
The numbers are the story. P99 lookup latency fell from 215.8ms to 19.1ms, a 91% cut. Average latency dropped to 1.81ms. Deploys got 10-25% faster, because deploy time was partly gated on the same lookup path.
Nothing about this is exotic. It's the same lesson object storage teaches everyone eventually: one object per key means every read pays full fetch-and-parse cost even when you want three bytes out of it. Batch the keys, index the batch, and a lookup becomes a seek instead of a round trip.
I've eaten this cost in S3 more than once, storing one JSON blob per record because it was the obvious shape, then watching cold-path latency climb as the key count grew. The fix is always some version of what Vercel did here: group records into shards, build an index you can binary-search, and only deserialize the slice you asked for.
The thing to check is whether a directory full of one-object-per-key files is taxing every cold read without anyone noticing. If P99 latency on a lookup path looks high relative to average, that gap is usually cold fetches of small objects, and shard-plus-index is a known fix, not a novel one.
Each link below shares sources, entities, or timing with this story.
Cursor keeps the harness and inference loop; you supply the execution environment. Each agent request gets a dedicated isolated Firecracker microVM from a scale-to-zero worker pool with no long-lived VMs, with Vercel Functions and Workflow as the control plane for queuing, pro...
Open issues on the AI SDK went from 1,022 to 844 in four weeks. That's the number I'd lead with if I were writing this post, and Vercel did. Vercel published the internals of the system it built to maintain the AI SDK, a repo with over 20 million npm downloads a week, 26,000+...
Six clients. One manifest. Zero vendor lock. Vercel published Agent Plugins 1.0.0 on August 6, an openly licensed spec that bundles Agent Skills and MCP servers behind a single portable manifest. The shape is deliberately boring: a plugin.json requiring only schemaVersion and...
Vercel just shipped the stuff that makes Fly.io and Railway nervous, and they did it in a single push. The Vercel Container Registry is now a thing: an OCI-compliant image registry on Vercel's own infrastructure. You can deploy an HTTP server straight from a Dockerfile or Cont...
Satya Nadella said companies routing everything through a single proprietary lab may not survive. His argument: you hand that lab your most sensitive business context, and the lab can turn it against you as a competitor. His prescription is an orchestration layer — keep the ha...
At Vercel Ship 26 in London today, Guillermo Rauch launched what he's calling the Agent Stack: AI SDK, AI Gateway, Sandbox, Workflow SDK, and Chat SDK, plus a new Vercel Connect and a set of enterprise agent controls. Vercel is repositioning the entire platform around running...
MindPattern daily
One email a day at 7 AM. Sources and a take on every story. Unsubscribe anytime.