You can now store up to 10 million vectors in a single Vectorize index, doubling the previous limit of 5 million vectors. This enables larger-scale semantic search, recommendation systems, and retrieval-augmented generation (RAG) applications without splitting data across multiple indexes. Vectorize continues to sup...
Vectorize - Vectorize indexes now support up to 10 million vectors
Cloudflare Developer Platform Changelog · 2026-01-23
Related items
Vectorize - List all vectors in a Vectorize index with the new list-vectors operation
You can now list all vector identifiers in a Vectorize index using the new list-vectors operation. This enables bulk operations, auditing, and data migration workflows through paginated requests that maintain snapshot consistency. The operation is available via Wrangler CLI and REST API. Refer to the list-vectors be...
Workers - Cron triggers are now supported in Python Workers
You can now create Python Workers which are executed via a cron trigger. This is similar to how it's done in JavaScript Workers, simply define a scheduled event listener in your Worker: from workers import handler @ handler async def onscheduled ( event , env , ctx ): print ( "cron processed" ) Define a cron trigger...
Vectorize - Return up to 50 query results with values or metadata
You can now set topK up to 50 when a Vectorize query returns values or full metadata. This raises the previous limit of 20 for queries that use returnValues: true or returnMetadata: "all" . Use the higher limit when you need more matches in a single query response without dropping values or metadata. Refer to the Ve...
Containers - Docker-in-Docker support added to Containers and Sandboxes
Sandboxes and Containers now support running Docker for "Docker-in-Docker" setups. This is particularly useful when your end users or agents want to run a full sandboxed development environment. This allows you to: Develop containerized applications with your Sandbox Run isolated test environments for images Build c...
Workers AI, Realtime - Real-time transcription in RealtimeKit now supports 10 languages with regional variants
Real-time transcription in RealtimeKit now supports 10 languages with regional variants, powered by Deepgram Nova-3 running on Workers AI . During a meeting, participant audio is routed through AI Gateway to Nova-3 on Workers AI — so transcription runs on Cloudflare's network end-to-end, reducing latency compared to...
Workers, Durable Objects - Durable Objects are now supported in Python Workers
You can now create Durable Objects using Python Workers . A Durable Object is a special kind of Cloudflare Worker which uniquely combines compute with storage, enabling stateful long-running applications which run close to your users. For more info see here . You can define a Durable Object in Python in a similar wa...