Celld is an open-source daemon designed to run Cloudflare Workers and Durable Objects on user-owned machines. This allows developers to deploy and manage these serverless components within their own infrastructure, providing more control over the environment.
The core architecture of Celld involves treating each Durable Object as its own SQLite database. These individual databases are then replicated to an S3-compatible bucket, which serves as the durable source of truth. This design eliminates the need for a centralized control plane or consensus mechanism, as nodes coordinate directly through the object storage bucket using compare-and-swap operations to manage object ownership.
Each Celld node embeds the V8 JavaScript engine to execute Wrangler bundles, which are the deployment artifacts for Cloudflare Workers. The system is designed for sharding by construction, as each object's independent database minimizes contention and blast-radius failures often associated with shared databases. Idle objects can also hibernate to conserve resources.
Celld provides an installer script for direct binary installation, with provenance verification available via `gh attestation verify`. It also supports deployment via Docker, with images available for Linux x86-64 and ARM64. Users can configure Celld to connect to any S3-compatible bucket and specify network settings for node communication.
✨ This summary was generated by AI from the outlets' reporting listed below. It is not independently verified and may contain errors — check the original sources. How BrevFeed works →
One email each morning: the day's tech stories, clustered across outlets and summarized. No account needed.
One email a day. Unsubscribe in one click, any time.
Spend a few minutes, get the whole day. Every topic's top stories in one hands-free rundown — listen, watch, or read the transcript.
▶ Play today's briefNew every morning, and the back catalogue is archived by date.
Celld is an open-source daemon that allows users to run Cloudflare Workers and Durable Objects on their own infrastructure. It uses individual SQLite databases for each object, replicated to an S3-compatible bucket, eliminating the need for a control plane or consensus mechanism.