Cloudflare Worldedge community field guide

RETROSPECTIVE EDITION / 2025-01

Workflows:長い task を再開可能にする

durable step は retry、waiting、external approval を明示的な execution history にします。

ISSUE
13 / 32
初回公開
SOURCE CHECK
Archive integrity

edition month は curriculum 上の位置です。本文の初回公開日は 2026-08-10 で、過去の公開・活動記録を装いません。

01 / DECISION

この primitive を選ぶ時

multi-step operation が時間、transient failure、human-in-the-loop pause を越える必要がある時に使います。

02 / ARCHITECTURE

最小で説明可能な path を作る

named idempotent step、serializable output、bounded retry、terminal state、安全な status surface を設計します。

  1. 01contract を定義

    multi-step operation が時間、transient failure、human-in-the-loop pause を越える必要がある時に使います。

  2. 02primitive を一つ追加

    named idempotent step、serializable output、bounded retry、terminal state、安全な status surface を設計します。

  3. 03failure evidence を残す

    middle step failure、delay 後の resume、external event、単一 final effect と inspectable history を確認します。

03 / REPRODUCE

confidence の前に evidence

middle step failure、delay 後の resume、external event、単一 final effect と inspectable history を確認します。

npx wrangler workflows list

04 / BOUNDARY

Production boundary

各 step に idempotency strategy がなければ retry は side effect を重複します。workflow は authorization の代替ではありません。

05 / FIRST-PARTY SOURCES

一次資料を authoritative に保つ

product behavior、limit、pricing、availability は変わります。実行前に source を再確認してください。

01 / SOURCECloudflare Workflowshttps://developers.cloudflare.com/workflows/