Workers Unbound: Cloudflare Removes the CPU Ceiling
Cloudflare Workers launched in 2017 to give developers a platform where the infrastructure—configuring, maintaining, and scaling—is handled for them. From the first line of code to a globally distributed product, developers run on a network spanning over 200 locations. Today, Cloudflare is announcing Workers Unbound, a new platform entering private beta that lifts the restrictive CPU limits of the classic Workers offering.
Workers Unbound is aimed at workloads that need longer execution times. Classic Cloudflare Workers, now officially referred to as Workers Bundled, remain unchanged for fast, simple edge tasks. With Unbound, Cloudflare targets developers who previously had to choose between running quick tasks on the edge or shipping heavy computation to a centralized cloud. This extended platform is designed to handle intensive applications like image processing and complex algorithms—capabilities that Cloudflare has already unlocked for select enterprise customers and is now opening up more broadly.
The broader goal is to position Workers Unbound as a general-purpose compute platform, not just an edge-specific offering. Cloudflare wants it to be a viable alternative to traditional, centralized serverless platforms—comparable in scope but faster, cheaper, and more flexible.
The Architecture Behind the Performance
Cloudflare argues that most modern serverless platforms are constrained by their cloud computing origins. They inherit containers, which brings significant overhead. Cloudflare instead builds on V8 Isolates, a technology from the Google Chrome team that powers the JavaScript engine in the browser. Isolates provide lightweight contexts that group variables with the code allowed to mutate them. They start very quickly, minimizing cold start times.
The difference in overhead is substantial. Containers effectively run a virtual machine per workload, making it difficult to run many tenants in a centralized environment. A single process on Workers can run hundreds or thousands of isolates, enabling seamless switching between them. That allows code from many different customers to run within a single operating system process, keeping runtime overhead low and supporting multi-tenancy at scale.
Isolates also solve the code distribution problem inherent in a global edge network. Because V8 is embedded with standard JavaScript APIs, worker scripts are lightweight enough to ship to every server in every datacenter. Any server, anywhere, can then serve requests for any customer.
The Cost of Compute
Cloudflare's pricing model stems from this efficiency. The overhead of the JavaScript runtime is paid once, and then nearly limitless scripts can run with minimal individual overhead. The savings are passed down to customers.
The platform also avoids hidden fees. According to Cloudflare, Workers will not charge for extras like API gateway or DNS request fees, which can pad bills on other platforms.
To quantify the comparison, Cloudflare deployed a hello world GraphQL server to both Workers Unbound and AWS Lambda. The median execution time on Lambda was 1.54 ms, while the same workload took 0.90 ms on Workers. After factoring in AWS's additional charges—including API Gateway for internet requests—Cloudflare estimates that Workers Unbound can save up to 75% compared to AWS Lambda, even for this minimal workload.
Private Beta and Rollout
Workers Unbound is entering a private beta. Interested developers can sign up via this form. Cloudflare plans to roll the platform out slowly, iterating based on feedback, and will be making further announcements as part of Serverless Week.



