Skip to content

Commit dd4f3d3

Browse files
authored
forgot to add our friends at oban (supabase#31090)
forgot to add our friend at oban
1 parent f414db3 commit dd4f3d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/www/_blog/2024-12-10-durable-workflows-in-postgres-dbos.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ The process is simple, but writing a _robust_ program for this is surprisingly d
5050
- You get to step 2, “Check Inventory”, and you're out of stock. You need to wait 24 hours for the new inventory before you can ship it. You need that “step” to sleep for a day.
5151
- Your program crashes during step 3, “Ship Order”, and it doesn't record that you've shipped the inventory. You end up sending the same order twice.
5252

53-
A Durable Workflow Engine helps with these problems (and more). There are a few on the market that provide different architectures like [Trigger.dev](https://trigger.dev/), [Inngest](https://www.inngest.com/), [Windmill](https://www.windmill.dev), [Temporal](https://temporal.io/), and [AWS Step Functions](https://aws.amazon.com/step-functions/).
53+
A Durable Workflow Engine helps with these problems (and more). There are a few on the market that provide different architectures like [Oban](https://oban.pro/), [Trigger.dev](https://trigger.dev/), [Inngest](https://www.inngest.com/), [Windmill](https://www.windmill.dev), [Temporal](https://temporal.io/), and [AWS Step Functions](https://aws.amazon.com/step-functions/).
5454

5555
DBOS offers a relatively unique approach to Workflows, storing the state in your own Postgres database. Let's explore how DBOS does it.
5656

0 commit comments

Comments
 (0)