dbos-transact-py is a free, open source orchestration & scheduling project written in Python and released under MIT. It has 1,577 GitHub stars, 94 forks and 4 open issues, and was last pushed 5 hours ago. On this registry it ranks #54 of 64 tracked projects in Orchestration & Scheduling, with 5 head-to-head comparisons available. It gained 2 stars over the last 3 tracked days.

What is dbos-transact-py?

What it is

DBOS Transact is an open-source Python library for durable workflows backed by Postgres. It lives in the Python infrastructure and operations ecosystem, under orchestration and scheduling, and is distributed as the dbos package on PyPI under the MIT license. The project lets developers annotate ordinary functions as workflows and steps, then checkpoint state in Postgres so interrupted programs resume from completed work instead of starting over.

The concrete problem it addresses is failure handling in long-running or reliability-sensitive applications. Developers often need complex state management, recovery logic, and external orchestration services to make workflows survive crashes, restarts, or unreliable APIs. DBOS Transact replaces that pattern with a library that stores durable state in Postgres and recovers workflows automatically. This fits payments processing, data pipelines, microservice orchestration, and agentic workflows.

Key capabilities

  • Durable workflows checkpoint Python function state in Postgres and resume from the last completed step after a program restart.
  • Durable queues let a workflow enqueue a single step or an entire workflow for background execution without a separate queueing service or message broker.
  • Queue flow control can limit concurrency per queue or per process, and queued tasks can have timeouts, rate limits, deduplication, and priorities.
  • The library exposes Postgres-backed primitives for notifications, scheduling, event processing, and programmatic workflow management.
  • It is added to an existing Python program by annotating functions with workflow and step decorators, and the README says no additional infrastructure must be configured or managed.

Who uses it and how

  • Teams building payments services can use it to process transactions that need to continue after servers crash mid-operation.
  • Data engineers can build observable and fault-tolerant pipelines that resume from checkpoints instead of restarting from the beginning.
  • Application developers can orchestrate business processes and microservice workflows where steps depend on unreliable or non-deterministic APIs.
  • Builders of AI agents can use durable workflows and queues to run multi-step agent tasks with recovery and background execution.

Getting started

The README points to a quickstart that installs the open-source dbos library and connects it to a Postgres database. Typical use is to add the library to a Python program, annotate functions as workflows and steps, and run the program against Postgres.

When to use it — and when not to

Use DBOS Transact when a Python application already uses Postgres and needs durable workflows, queues, scheduling, or recovery without a separate orchestrator or broker. The README presents it as an alternative to managing your own workflow orchestrator or task queue system and to heavyweight external orchestration services. A self-hoster still must operate the Postgres database and application dependencies, and the project is Python-specific, so non-Python programs cannot use this library directly.

project readme (upstream, from github) — read inline

GitHub Actions PyPI release (latest SemVer) Python Versions License (MIT) Join Discord

DBOS Transact: Lightweight Durable Workflows

Documentation   •   Examples   •   Github   •   Discord

What is DBOS?

DBOS provides lightweight durable workflows built on top of Postgres. Instead of managing your own workflow orchestrator or task queue system, you can use DBOS to add durable workflows and queues to your program in just a few lines of code.

To get started, follow the quickstart to install this open-source library and connect it to a Postgres database. Then, annotate workflows and steps in your program to make it durable! That's all you need to do—DBOS is entirely contained in this open-source library, there's no additional infrastructure for you to configure or manage.

When Should I Use DBOS?

You should consider using DBOS if your application needs to reliably handle failures. For example, you might be building a payments service that must reliably process transactions even if servers crash mid-operation, or a long-running data pipeline that needs to resume seamlessly from checkpoints rather than restart from the beginning when interrupted.

Handling failures is costly and complicated, requiring complex state management and recovery logic as well as heavyweight tools like external orchestration services. DBOS makes it simpler: annotate your code to checkpoint it in Postgres and automatically recover from any failure. DBOS also provides powerful Postgres-backed primitives that makes it easier to write and operate reliable code, including durable queues, notifications, scheduling, event processing, and programmatic workflow management.

Features

💾 Durable Workflows

DBOS workflows make your program durable by checkpointing its state in Postgres. If your program ever fails, when it restarts all your workflows will automatically resume from the last completed step.

You add durable workflows to your existing Python program by annotating ordinary functions as workflows and steps:

from dbos import DBOS

@DBOS.step()
def step_one():
    ...

@DBOS.step()
def step_two():
    ...

@DBOS.workflow()
def workflow()
    step_one()
    step_two()

Workflows are particularly useful for

  • Orchestrating business processes so they seamlessly recover from any failure.
  • Building observable and fault-tolerant data pipelines.
  • Operating an AI agent, or any application that relies on unreliable or non-deterministic APIs.

Read more ↗️

📒 Durable Queues

DBOS queues help you durably run tasks in the background. You can enqueue a task (which can be a single step or an entire workflow) from a durable workflow and one of your processes will pick it up for execution. DBOS manages the execution of your tasks: it guarantees that tasks complete, and that their callers get their results without needing to resubmit them, even if your application is interrupted.

Queues also provide flow control, so you can limit the concurrency of your tasks on a per-queue or per-process basis. You can also set timeouts for tasks, rate limit how often queued tasks are executed, deduplicate tasks, or prioritize tasks.

You can add queues to your workflows in just a couple lines of code. They don't require a separate queueing service or message broker—just Postgres.

from dbos import DBOS

# Register your queues after calling DBOS.launch()
DBOS.register_queue("example_queue")

@DBOS.step()
def process_task(task):
  ...

@DBOS.workflow()
def process_tasks(tasks):
  task_handles = []
  # Enqueue each task so all tasks are processed concurrently.
  for task in tasks:
    handle = DBOS.enqueue_workflow("example_queue", process_task, task)
    task_handles.append(handle)
  # Wait for each task to complete and retrieve its result.
  # Return the results of all tasks.
  return [handle.get_result() for handle in task_handles]

Read more ↗️

⚙️ Programmatic Workflow Management

Your workflows are stored as rows in a Postgres table, so you have full programmatic control over them. Write scripts to query workflow executions, batch pause or resume workflows, or even restart failed workflows from a specific step. Handle bugs or failures that affect thousands of workflows with power and flexibility.

# Create a DBOS client connected to your Postgres database.
client = DBOSClient(system_database_url=system_database_url)
# Find all workflows that errored between 3:00 and 5:00 AM UTC on 2025-04-22.
workflows = client.list_workflows(status="ERROR", 
  start_time="2025-04-22T03:00:00Z", end_time="2025-04-22T05:00:00Z")
for workflow in workflows:
    # Check which workflows failed due to an outage in a service called from Step 2.
    steps = client.list_workflow_steps(workflow)
    if len(steps) >= 3 and isinstance(steps[2]["error"], ServiceOutage):
        # To recover from the outage, restart those workflows from Step 2.
        DBOS.fork_workflow(workflow.workflow_id, 2)

Read more ↗️

🎫 Exactly-Once Event Processing

Use DBOS to build reliable webhooks, event listeners, or Kafka consumers by starting a workflow exactly-once in response to an event. Acknowledge the event immediately while reliably processing it in the background.

For example:

def handle_message(request: Request) -> None:
  event_id = request.body["event_id"]
  # Use the event ID as an idempotency key to start the workflow exactly-once
  with SetWorkflowID(event_id):
    # Start the workflow in the background, then acknowledge the event
    DBOS.start_workflow(message_workflow, request.body["event"])

Or with Kafka:

@DBOS.kafka_consumer(config,["alerts-topic"])
@DBOS.workflow()
def process_kafka_alerts(msg):
    # This workflow runs exactly-once for each message sent to the topic
    alerts = msg.value.decode()
    for alert in alerts:
        respond_to_alert(alert)

Read more ↗️

📅 Durable Scheduling

Schedule workflows using cron syntax, or use durable sleep to pause workflows for as long as you like (even days or weeks) before executing.

You can schedule a workflow by registering it with a cron expression:

@DBOS.workflow()
def example_scheduled_workflow(scheduled_time: datetime, context: Any):
    DBOS.logger.info("I am a workflow scheduled to run once a minute.")

DBOS.launch()

DBOS.apply_schedules([{
    "schedule_name": "example-schedule",
    "workflow_fn": example_scheduled_workflow,
    "schedule": "* * * * *",  # crontab syntax to run once every minute
}])

You can add a durable sleep to any workflow with a single line of code. It stores its wakeup time in Postgres so the workflow sleeps through any interruption or restart, then always resumes on schedule.

@DBOS.workflow()
def reminder_workflow(email: str, time_to_sleep: int):
    send_confirmation_email(email)
    DBOS.sleep(time_to_sleep)
    send_reminder_email(email)

Read more ↗️

📫 Durable Notifications

Pause your workflow executions until a notification is received, or emit events from your workflow to send progress updates to external clients. All notifications are stored in Postgres, so they can be sent and received with exactly-once semantics. Set durable timeouts when waiting for events, so you can wait for as long as you like (even days or weeks) through interruptions or restarts, then resume once a notification arrives or the timeout is reached.

For example, build a reliable billing workflow that durably waits for a notif

readme truncated — read the full docs on github

Frequently asked questions

Is dbos-transact-py free to use?

dbos-transact-py is open source under the MIT licence. There is no licence fee and no seat count — you can self-host it or, where the project offers one, pay a vendor for a managed version instead.

What does dbos-transact-py do?

Database-Backed Durable Python Workflows

What is dbos-transact-py written in?

dbos-transact-py is primarily written in Python. Its source is publicly available at https://github.com/dbos-inc/dbos-transact-py, and it has 1,577 GitHub stars.