Video yükleniyor...

Video Yüklenemedi

Ana Sayfaya Dön

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 görüntüleme • 5 gün önce •via X (Twitter)

18 Yorum

D. Sokolov profil fotoğrafı
D. Sokolov5 gün önce

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 profil fotoğrafı
Cloudflare Developers5 gün önce

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 profil fotoğrafı
D. Sokolov5 gün önce

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

zanoum profil fotoğrafı
zanoum5 gün önce

Cloudflare always rocking

Colbert profil fotoğrafı
Colbert5 gün önce

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 profil fotoğrafı
Cloudflare Developers5 gün önce

We thought so!

DataEatsWorld profil fotoğrafı
DataEatsWorld5 gün önce

can you stop to do cool stuff ?

Cloudflare Developers profil fotoğrafı
Cloudflare Developers5 gün önce

What do you mean?

DataEatsWorld profil fotoğrafı
DataEatsWorld5 gün önce

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 profil fotoğrafı
Mena Botrous5 gün önce

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 profil fotoğrafı
lin qi4 gün önce

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

Ricci Research profil fotoğrafı
Ricci Research5 gün önce

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 profil fotoğrafı
Cloudflare Developers5 gün önce

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 profil fotoğrafı
John Rood5 gün önce

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 profil fotoğrafı
Cloudflare Developers5 gün önce

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 profil fotoğrafı
ucixrn5 gün önce

Cool

Abd Mcs profil fotoğrafı
Abd Mcs5 gün önce

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

Dhravya Shah profil fotoğrafı
Dhravya Shah5 gün önce

oh what

Benzer Videolar