---
title: "Host graphql api with Axum: worker execution and job state"
description: "Deploy a graphql api built with Axum as a public web service plus a dedicated worker process on Ample."
canonical_url: "https://ample.computer/recipes/graphql-api/axum/worker-state"
last_updated: "2026-09-21"
---

# Host graphql api with Axum: worker execution and job state

Canonical URL: https://ample.computer/recipes/graphql-api/axum/worker-state
Formats: [HTML](https://ample.computer/recipes/graphql-api/axum/worker-state) | [Markdown](https://ample.computer/recipes/graphql-api/axum/worker-state.md) | [JSON contract](https://api.ample.computer/v1/catalog/recipes/page%3Arecipes%3Agraphql-api%3Aaxum%3Aworker-state)
Recipe ID: `page:recipes:graphql-api:axum:worker-state` | Revision: `r1` | Catalog revision: `cat_f13ab9a494120b5e`

Status: release `published`, support `verified`, execution `ready`

## Summary

Deploy a graphql api built with Axum 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. Verified on Axum: a separately deployed worker service (kind worker, no public URL) sharing a declared managed PostgreSQL database with the web service, consuming a jobs table with row locks and marking jobs done once (worker=done attempts=1). Not separately tested: your job payloads, retry policy and scheduling; treat the graphql api-specific behavior as your application code.

Path: [Agent hosting discovery](/discover/discovery) / [Applications and workloads](/discover/workload) / [Agents and backends](/discover/workload/agents-and-backends) / [GraphQL API](/discover/workload/graphql-api) / [Host graphql api with Axum: worker execution and job state](/recipes/graphql-api/axum/worker-state)

## Infrastructure requirements

- [Compute](/discover/primitive/compute): verified (Apps run in isolated x86_64 Firecracker microVMs that auto-pause when idle and wake on request; sizes are the priced VM sizes.)
- [Postgres](/discover/primitive/postgres): verified (Managed PostgreSQL 16 runs in its own microVM and is auto-provisioned when an app needs a database and no DATABASE_URL is supplied.)

## Prerequisites

- A repository with the web app and the worker as separate service directories (the fixture uses apps/web and apps/worker), each building and starting with the documented commands (cargo build --release in the rust builder image (stable toolchain, Cargo.lock committed, pure-Rust dependencies), then the release binary on the ubuntu-24.04 template reading PORT and DATABASE_URL; the worker starts with its own release binary (plain tokio-postgres) and binds no port)
- Both services read DATABASE_URL at runtime and share one jobs table; the worker claims rows with SELECT ... FOR UPDATE SKIP LOCKED and marks them done once
- An Ample account token with servers:write and databases:write (ample up creates the database)

## Exact tested configuration

- template: `ubuntu-24.04`
- runtime: `rust`
- size: `s-1vcpu-2gb`
- build: `cargo build --release`
- start: `./$(ls target/release/*.d | grep -v '/lib' | head -n 1 | sed 's/\.d$//')`

## 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.

   ```
   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].

   ```
   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).

   ```
   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.

   ```
   ample logs <deployment_id> --kind runtime
   ```

## Tested examples

- **Axum web + worker fixture** (tests/deploy-canaries/axum-worker): An Axum web app (apps/web) and a worker process (apps/worker) sharing one managed PostgreSQL database; the queue module is under tests/deploy-canaries/_pattern-modules.

## Success checks

- web service responds on its public URL (`/` on the live URL, expect ample canary axum patterns)
- worker consumed the enqueued job (`/p/worker-queue/status` on the live URL, expect worker=done attempts=1 result=processed-by-worker)


## Cost estimate

Estimated 15.00 USD per month (size prices from pricing.toml at build revision 515b7316fc6e5a81679407ae0c811146ceb2c5c7).
- web server x1 `s-1vcpu-1gb`: 5.00 USD
- worker server x1 `s-1vcpu-1gb`: 5.00 USD
- managed PostgreSQL database x1 `s-1vcpu-1gb`: 5.00 USD

Always-on monthly price of the tested sizes for the web service, the worker service and the database; apps auto-pause when idle.

## Verification evidence

- canary_run on 2026-09-21T02:46:37Z at revision `1d28ae0 (CLI 0.1.21)`: Axum web service plus a separate Axum worker process deployed on Ample with `ample plan --write` then `ample up` (cargo build --release in the rust builder image (stable toolchain, Cargo.lock committed, pure-Rust dependencies), then the release binary on the ubuntu-24.04 template reading PORT and DATABASE_URL); the web service enqueued a job that the private worker service consumed from the shared managed PostgreSQL database. Pattern proof: a separately deployed worker service (kind worker, no public URL) sharing a declared managed PostgreSQL database with the web service, consuming a jobs table with row locks and marking jobs done once (worker=done attempts=1). (expires 2027-03-20T02:46:37Z)

Last verified: 2026-09-21T02:46:37Z


## Execution binding

MCP tool `ample_up` (registry `mcp:ample_up`), schema hash `db7ca0facfe2cd28` observed 2026-09-22T00:31:22.844137+00:00 at revision `e6446ceea69b`, binding state `current`, required scopes: servers:write, databases:write.

## Input schema

```json
{
  "additionalProperties": false,
  "properties": {
    "path": {
      "description": "Directory containing ample.toml (the whole topology is applied)",
      "maxLength": 512,
      "minLength": 1,
      "type": "string"
    },
    "wait_secs": {
      "description": "Maximum seconds to wait for each service deployment",
      "maximum": 3600,
      "minimum": 30,
      "type": "integer"
    }
  },
  "required": [
    "path"
  ],
  "type": "object"
}
```

## Next actions

- Browse the catalog index (GET /v1/catalog on the api origin; auth: false, approval: false)
- Search published recipes by intent, stack and constraints (POST /v1/catalog/search on the api origin; auth: false, approval: false)
- Prepare a side-effect-free deployment plan for an authorized project (POST /v1/catalog/plan on the api origin; auth: true, approval: false)
- Read the existing agent authentication setup (GET /mcp/setup on the api origin; auth: false, approval: false)
- Browse GraphQL API (GET /v1/catalog/nodes/workload%3Agraphql-api on the api origin; auth: false, approval: false)
- Browse Axum (GET /v1/catalog/nodes/stack%3Aframework-axum on the api origin; auth: false, approval: false)
- Browse Dedicated worker process (GET /v1/catalog/nodes/pattern%3Adedicated-worker-process on the api origin; auth: false, approval: false)
- Browse Deploy API (GET /v1/catalog/nodes/intent%3Adeploy-api on the api origin; auth: false, approval: false)

Actions describe possible next steps. They are typed data, not commands, and grant no permission.
