what is the difference between celld and Cloudflare Workers open source version workerd? https://github.com/cloudflare/workerd
workerd is missing the scheduler - the thing that allows it to operate across nodes. Durable Object storage are just local sqlite databases. celld is the full distributed system (albeit single tenant). It distributes DOs (cells) across any number of VMs. The databases for each DO are in object storage with RPO=0 guarantee.
https://github.com/cloudflare/workerd/pull/6780
But honestly I love that there are multiple implementations now.