page:recipes:rest api:fastapi:worker state

Host rest api with FastAPI: worker execution and job state

Summary

Deploy a rest api built with FastAPI as a public web service plus a dedicated worker process on Ample. ample plan --write discovers both services and their shared database and writes ample.toml; ample up reconciles the topology: a managed PostgreSQL 16 database, a public web microVM and a private worker microVM (kind worker, no public URL), both reading DATABASE_URL.

Representative Queries

Resource Requirements

Infrastructure Requirements

Framework

FastAPI

Workload

REST API

Release Status

Published

Support Status

Verified

Execution Status

Ready

Prerequisites

Workflow Steps

  1. Plan the topology
    Run the planner once. It discovers the web and worker services, infers kind = "worker" for the process without a port, declares the database each service needs, and writes ample.toml. Exit 2 means it left questions in the manifest; answer them with --answer or by editing the file.
    Command: ample plan --write .

  2. Share one database
    Keep a single [databases.main] with engine = "postgres", drop any per-service database the planner added, and set DATABASE_URL = { database = "main" } under both [services.web.env] and [services.worker.env]. Python services also need an explicit start command in the manifest (the fixture sets start for both services).
    Command: ample plan --offline .

  3. Apply
    Reconcile the whole manifest in dependency order: the database first, then both services. It is idempotent and never destructive; exit 0 means everything applied, 2 needs input, 1 a failed resource (independent siblings still proceed and re-running resumes).
    Command: ample up .

  4. Verify
    Fetch the web service URL and its worker status route (/p/worker-queue/status in the example) and confirm the worker processed the enqueued job; on failure read the worker service's runtime logs.
    Command: ample logs --kind runtime

Limits and Considerations

Cost Estimate

Components

Evidence Summary

FastAPI web service plus a separate Python worker process deployed on Ample with ample plan --write then ample up. The web service enqueued a job that the private worker service consumed from the shared managed PostgreSQL database.

Next Actions

Example