(no title)
qianli_cs | 5 months ago
The DBOS workflow execution itself is idempotent (assume each step is idempotent). When DBOS starts a workflow, the "start" (workflow inputs) is durably logged first. If the app crashes, on restart, DBOS reloads from Postgres and resumes from the last completed step. Steps are checkpointed so they don't re-run once recorded.
reillyse|4 months ago
You specifically need exactly once when the action you are doing is not idempotent.