Загрузка видео...

Не удалось загрузить видео

На главную

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 просмотров • 5 дней назад •via X (Twitter)

Комментарии: 18

Фото профиля D. Sokolov
D. Sokolov5 дней назад

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
Cloudflare Developers5 дней назад

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
D. Sokolov5 дней назад

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

Фото профиля zanoum
zanoum5 дней назад

Cloudflare always rocking

Фото профиля Colbert
Colbert5 дней назад

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
Cloudflare Developers5 дней назад

We thought so!

Фото профиля DataEatsWorld
DataEatsWorld5 дней назад

can you stop to do cool stuff ?

Фото профиля Cloudflare Developers
Cloudflare Developers5 дней назад

What do you mean?

Фото профиля DataEatsWorld
DataEatsWorld5 дней назад

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
Mena Botrous5 дней назад

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
lin qi4 дней назад

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

Фото профиля Ricci Research
Ricci Research5 дней назад

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
Cloudflare Developers5 дней назад

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
John Rood5 дней назад

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
Cloudflare Developers5 дней назад

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
ucixrn5 дней назад

Cool

Фото профиля Abd Mcs
Abd Mcs5 дней назад

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

Фото профиля Dhravya Shah
Dhravya Shah5 дней назад

oh what

Похожие видео