Loading video...

Video Failed to Load

Go Home

Real-time updates for Cloudflare Workflows using Durable Objects: - create Workflow with UUID - create Durable Object (same UUID) - create update method - browser opens socket connection to Durable Object Each Workflow step calls the `update` method of the DO

18,919 views • 5 days ago •via X (Twitter)

18 Comments

D. Sokolov's profile picture
D. Sokolov5 days ago

worth flipping one assumption: don’t call update on every step. Push only human-meaningful checkpoints (started / waiting / failed / done). Otherwise the progress UI becomes a log firehose and the DO is just an expensive console.log.

Cloudflare Developers's profile picture
Cloudflare Developers5 days ago

Yes absolutely. You can imagine the stereotypical path is one update for step, but obviously only for the ones that make sense for th euser

D. Sokolov's profile picture
D. Sokolov5 days ago

euser is the end user or user from EU? different users:))

zanoum's profile picture
zanoum5 days ago

Cloudflare always rocking

Colbert's profile picture
Colbert5 days ago

This pattern is super clean. Using DOs as the glue for real-time state updates makes the whole workflow feel much more responsive for the end user.

Cloudflare Developers's profile picture
Cloudflare Developers5 days ago

We thought so!

DataEatsWorld's profile picture
DataEatsWorld5 days ago

can you stop to do cool stuff ?

Cloudflare Developers's profile picture
Cloudflare Developers5 days ago

What do you mean?

DataEatsWorld's profile picture
DataEatsWorld5 days ago

I meant the opposite: stop making cool stuff, I cannot keep up. @HoldsUpApp runs on Workers, D1, Workflows and one container, and this is the piece I was missing for live pipeline progress.

Mena Botrous's profile picture
Mena Botrous5 days ago

the shared uuid makes this click for me. every step can report through the same durable object, so the browser gets one live view of the run.

lin qi's profile picture
lin qi4 days ago

can anyone help me solve this problem, I can't visit any website with cf.

Ricci Research's profile picture
Ricci Research5 days ago

Sharing a UUID between the Workflow and the Durable Object is a neat trick — it turns "where do I put the progress state" into a naming convention instead of a service. The interesting question is what happens on retry: if a step re-runs, does the DO get the update twice, and is `update` idempotent by design or by discipline?

Cloudflare Developers's profile picture
Cloudflare Developers5 days ago

The basic implementation would see the same update twice. BUT that shouldn't matter if it's the same status right? The user wouldn't know the difference

John Rood's profile picture
John Rood5 days ago

the socket should be disposable. persist a monotonic event cursor in the Durable Object and replay missed workflow updates after reconnect. otherwise every laptop sleep turns a correct workflow into a lying progress UI.

Cloudflare Developers's profile picture
Cloudflare Developers5 days ago

I think that's one piece we didn't cover in the short tweet. The concept of saving the latest status to key/value store in DO. Then, share that status immediately on new connections. That what you mean?

ucixrn's profile picture
ucixrn5 days ago

Cool

Abd Mcs's profile picture
Abd Mcs5 days ago

I love the video format. It’s pleasant to watch it on the phone without having to rotate

Dhravya Shah's profile picture
Dhravya Shah5 days ago

oh what

Related Videos