Skip to main content

Application Management

Deploying Applications

To deploy your application to DBOS Cloud or update an existing application, run this command in its root directory:

dbos-cloud app deploy

Each time you deploy an application, the following steps execute:

  1. Upload: An archive of your application folder is created and uploaded to DBOS Cloud. This archive can be up to 500 MB in size.
  2. Configuration: Your application's dependencies are installed.
  3. Migration: If you specify database migrations in your dbos-config.yaml, these are run on your cloud database.
  4. Deployment: Your application is deployed to a number of Firecracker microVMs also referred to as "executors." By default, these have 1 vCPU and 512MB of RAM. The amount of memory allocated to each microVM is configurable.

After an application is deployed, it is assigned a domain of the form https://<username>-<app-name>.cloud.dbos.dev/. If your account is part of an organization, organization name is used instead of username.

tip
  • Applications should serve requests from port 8000 (Python—the default port for FastAPI and Gunicorn) or 3000 (TypeScript—the default port for Express and Koa).
  • Multiple applications can connect to the same Postgres database server—they are deployed to isolated databases on that server.
  • To change the database server of a deployed application, use dbos-cloud app change-database-instance.

Applications Configuration

You need to provide a valid dbos-config.yaml file when deploying an application to DBOS Cloud. The required fields are:

  • name: Your application name. This is the name with which your application is registered.
  • language: node or python
  • runtimeConfig.start: the command used to start your application. For example, fastapi run

Note that some fields from dbos-config.yaml will be ignored during cloud deployments:

  • database_url and database connection-related fields. DBOS Cloud automatically applies the connection information of your cloud database server.
  • runtimeConfig.admin_port: DBOS Cloud communicates with Transact admin port on port 3001.

Dependency Management

For Python applications, DBOS Cloud installs all dependencies from your requirements.txt file. The maximum size of your application after all dependencies are installed is 2 GB.

Customizing MicroVM Setup

DBOS Pro subscribers can provide a setup script that runs before their application is configured. This script can customize the runtime environment for your application, for example installing system packages and libraries.

A setup script must be specified in your dbos-config.yaml like so:

dbos-config.yaml
runtimeConfig:
# Script DBOS Cloud runs to customize your application runtime.
# Requires a DBOS Pro subscription.
setup:
- "./build.sh"
# Command DBOS Cloud executes to start your application.
start: <your-start-command>

A setup script may install system packages or libraries or otherwise customize the microVM image. For example:

build.sh
#!/bin/bash

# Install the traceroute package for use in your application
apt install traceroute

Ignoring files with .dbosignore

A .dbosignore file at the root of your project instructs the DBOS Cloud CLI to exclude resources from application deployment. The syntax for this file is similar to .gitignore:

  • Patterns are compatible with the fast-glob library
  • Lines ending with / are transformed into a recursive ignore /** to exclude everything within a directory.
  • Lines starting with # are ignored.
  • Some patterns are automatically excluded:
**/.dbos/**
**/node_modules/**
**/dist/**
**/.git/**
**/dbos-config.yaml
**/venv/**
**/.venv/**
**/.python-version

Monitoring and Debugging Applications

Here are some useful tools to monitor and debug applications:

Managing Application Versions

Each time you deploy an application, it creates a new version with a unique ID. You can view all previous versions of your application from the cloud console or list them by running:

dbos-cloud app versions <app-name>

You can redeploy a previous version of your application by passing --previous-version <version-id> to the app deploy command.

dbos-cloud app deploy --previous-version <version-id>

MicroVM Termination

DBOS Cloud may, from time to time, stop your microVMs due to a variety of reasons, including app upgrade or scaling down (see below). When a microVM is stopped, DBOS Cloud performs the following steps:

  1. Stops routing new HTTP traffic to the VM.
  2. Sends SIGTERM to the dbos process (launched by your start command) and waits up to 10 seconds for it to exit.
  3. If the process is still running, terminates it forcefully.

Any PENDING workflows run by the microVM are then recovered on another VM. See below.

Workflow Recovery

When a microVM running in DBOS Cloud stops (either due to a process crash or when scaling down), all of its workflows are automatically recovered to another microVM running the same application version. If no other microVM of that application version exists, DBOS Cloud launches a new one and instructs it to recover the workflows.

When you deploy a new version of your application, DBOS Cloud routes all requests and scheduled workflows to microVMs of the new application version. Then, DBOS Cloud attempts to decommission microVMs running the previous application version. If there are still PENDING or ENQUEUED workflows of that code version, DBOS Cloud leaves some number of microVMs alive to process those workflows until all are complete.

Periodically, DBOS Cloud checks if there are any PENDING or ENQUEUED workflows not assigned to any microVM. If any are found, DBOS Cloud recovers them to a microVM of the appropriate application version (starting one if necessary).

Automatic and Manual Scaling

Accounts on the free 30-day trial are limited to 1 microVM per app. Apps for Pro accounts are auto-scaled. Auto-scaling occurs based on CPU or queue utilization.

For the latter, the queue must have worker_concurrency (or workerConcurrency) set. DBOS Cloud computes the current parallel task capacity - the number of tasks that can be executed simultaneously - using the product of worker_concurrency and the current number of microVMs: capacity = worker_concurrency * num_microvms.

Scaling up occurs when:

  • the average microVM CPU utilization exceeds 85% for several seconds, or
  • the number of enqueued tasks exceeds capacity for at least one of the queues.

Inversely, the app scales down when the average CPU utilization drops below 40% and the number of enqueued tasks drops below capacity for all queues.

To alter the auto-scaling behavior, you can manually set min-executors and/or max-executors using app update (see below).

Updating Applications

To change your executor RAM or the default number of microVMs, run:

dbos-cloud app update <app-name> [options]

See the DBOS Cloud CLI reference for a list of properties you can update. Note that app update does not trigger a redeploy of the code, which you can do with the app deploy command.

Deleting Applications

To delete an application, run:

dbos-cloud app delete <app-name>

You can also drop the application database with the --dropdb argument. As each application has its own isolated database, this does not affect your other applications.

dbos-cloud app delete <app-name> --dropdb
warning

This is a destructive operation and cannot be undone.