Skip to main content

fastapi-jobs

PyPI version Python versions License: MIT

A lightweight, FastAPI-native background job system for the space between FastAPI's built-in BackgroundTasks and Celery.

BackgroundTasks is great for simple fire-and-forget work, while Celery can introduce more infrastructure than a small FastAPI project needs. fastapi-jobs aims to provide the middle ground.

Features

  • Async background jobs
  • FastAPI integration
  • SQLite backend
  • Task registration
  • Job enqueueing
  • Separate worker process
  • Configurable worker concurrency
  • Configurable retries
  • Exponential backoff
  • Task timeouts
  • Crash recovery through lease expiry
  • At-least-once delivery semantics
  • Cancellation of running jobs
  • Completed-job retention and cleanup
  • Lightweight architecture

Quick Start

Install the package:

pip install fastapi-jobs

Create a FastAPI application:

from fastapi import FastAPI

from fastapi_jobs import Jobs, task

app = FastAPI()

jobs = Jobs(
    app,
    database="sqlite:///jobs.db",
)


@task(retries=3, timeout=60)
async def send_email(user_id: int) -> None:
    print(f"Sending email to user {user_id}")


@app.post("/users/{user_id}/welcome")
async def welcome(user_id: int):
    job = await send_email.enqueue(user_id)

    return {"job_id": job.id}

Running the Worker

The API process only enqueues jobs. A separate worker process executes them.

Create a worker:

import asyncio

from fastapi_jobs import Jobs, Worker


jobs = Jobs(database="sqlite:///jobs.db")


if __name__ == "__main__":
    asyncio.run(Worker(jobs.manager).run())

Run the worker:

python worker.py

You can then run your FastAPI application normally:

uvicorn main:app --reload

Concurrency

By default a worker runs one job at a time. Pass max_concurrency to let it hold several jobs in flight:

Worker(jobs.manager, max_concurrency=4)

The worker keeps claiming jobs up to that limit, so a slow job no longer blocks everything else queued behind it. max_concurrency must be at least 1; the default of 1 matches the previous single-job behavior, so existing code that doesn't pass it is unaffected.

How It Works

The basic flow is:

FastAPI Request
      |
      v
 enqueue()
      |
      v
   Database
      |
      v
    Worker
      |
      v
 Execute Task
      |
      v
 Record Result

The worker continuously polls for available jobs and claims them using a lease.

If a worker crashes while processing a job, the lease eventually expires and another worker can pick up the job.

Delivery Semantics

Jobs use at-least-once delivery.

A job can potentially execute more than once.

For example, if a worker successfully completes a task but crashes before recording the result, the job lease will eventually expire. Another worker can then execute the same job again.

Because of this, tasks should be designed to be safe when executed more than once.

For example, instead of blindly creating a payment every time a job runs, use an idempotency key such as the job ID.

@task(retries=3)
async def process_payment(job_id: str, amount: int):
    # Use job_id as an idempotency key
    ...

Exactly-once execution is intentionally not guaranteed.

Retries

Tasks can define the number of retries:

@task(retries=3)
async def send_email(user_id: int): ...

When a task fails, the worker retries it using exponential backoff.

This helps prevent repeatedly hammering an external service when it is temporarily unavailable.

Timeouts

Tasks can also define a timeout:

@task(timeout=60)
async def generate_report(report_id: int): ...

If the task exceeds the configured timeout, the worker terminates the attempt and handles it according to the job's retry configuration.

Retention

By default, completed jobs (SUCCESS, FAILED, CANCELLED) are kept forever. For a long-running process this means the database grows without bound.

Retention is opt-in. Pass retention to a worker to have it periodically delete terminal jobs older than that:

from datetime import timedelta

worker = Worker(
    jobs.manager,
    retention=timedelta(days=7),
    retention_check_interval=3600,  # how often to check, in seconds (default: hourly)
)

PENDING, RETRYING, and RUNNING jobs are never purged, regardless of age. Upgrading to a version of fastapi-jobs that supports retention does not start deleting anything on its own -- it only runs if you explicitly configure it.

If you'd rather control cleanup yourself (a cron job, a management command, a different schedule per environment), call the backend directly instead of configuring it on a Worker:

deleted = await jobs.backend.purge_jobs(older_than=timedelta(days=7))

Cancellation

A PENDING or RETRYING job is cancelled immediately:

job = await manager.cancel(job_id)
# job.status is JobStatus.CANCELLED

A RUNNING job is cancelled cooperatively. Calling cancel() on it flags the job and returns right away with the job still shown as RUNNING:

job = await manager.cancel(job_id)
# job.status is still JobStatus.RUNNING
# job.cancel_requested_at is now set

The worker holding that job's lease notices the flag on its next poll, cancels its local asyncio.Task, and the job settles into CANCELLED once that unwinds -- typically within one poll_interval. Poll manager.get(job_id) (or GET /jobs/{id} if the REST API is mounted) to see it land. A cancelled job is never retried, no matter how many retries it had left.

This only interrupts an await inside the task -- an async def task cancels as soon as it next hits one. A sync task, which runs in a worker thread via asyncio.to_thread, cannot be forcibly stopped: cancelling it marks the job CANCELLED right away, but the thread itself keeps running the function to completion in the background, since Python has no safe way to kill a running thread. Write sync tasks that either finish quickly or check for cancellation themselves if this matters for your use case.

Current Status

fastapi-jobs is published on PyPI and under active development.

Currently implemented:

  • Task registration
  • Job enqueueing
  • Delayed job scheduling (enqueue(..., delay=...))
  • SQLite backend
  • Polling worker with configurable concurrency (max_concurrency)
  • Job leasing
  • Lease expiry
  • Crash recovery
  • Task timeouts
  • Retry handling
  • Exponential backoff
  • Cancellation of pending jobs (immediate) and running jobs (cooperative)
  • Completed-job retention and cleanup, opt-in via Worker(retention=...) or backend.purge_jobs()
  • Optional REST API for job inspection and cancellation (Jobs(app, api=True))

Not implemented yet:

  • Redis backend
  • Web dashboard
  • Cron-style recurring jobs

Requirements

  • Python 3.11+
  • FastAPI

Development

Clone the repository:

git clone https://github.com/stackadnan/fastapi-jobs.git
cd fastapi-jobs

Install development dependencies:

pip install -e ".[dev]"

Run tests:

pytest

Run Ruff:

ruff check .

Run mypy:

mypy fastapi_jobs

Project Goals

The goal of fastapi-jobs is not to replace Celery.

It is intended for FastAPI applications that need more reliability than BackgroundTasks provides, but do not want to introduce a large distributed task processing stack.

The project aims to remain:

  • Simple
  • Fast
  • Python-native
  • Async-friendly
  • Easy to deploy
  • Easy to understand
  • Easy to extend

Roadmap

  • Redis backend
  • PostgreSQL backend
  • Job status API (opt-in REST endpoints)
  • Job cancellation (pending jobs immediately, running jobs cooperatively)
  • Delayed job scheduling
  • Configurable worker concurrency
  • Job retention and cleanup
  • Recurring jobs
  • Web dashboard
  • Dead-letter jobs
  • Job result storage
  • Metrics and observability
  • Production deployment documentation

License

MIT

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fastapi_jobs-0.2.0.tar.gz (28.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

fastapi_jobs-0.2.0-py3-none-any.whl (23.0 kB view details)

Uploaded Python 3

File details

Details for the file fastapi_jobs-0.2.0.tar.gz.

File metadata

  • Download URL: fastapi_jobs-0.2.0.tar.gz
  • Upload date:
  • Size: 28.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for fastapi_jobs-0.2.0.tar.gz
Algorithm Hash digest
SHA256 1fb99369dbbd1c62906f25f07393a3e454af5f7bbc1f80d95c9f3ab130f1a766
MD5 a3bbfc36339668b1be6f47354b469eb4
BLAKE2b-256 15ada1ddf71b8da76df5694aa56616fc06f384f84085a6a9084c739141b3fbba

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastapi_jobs-0.2.0.tar.gz:

Publisher: publish.yml on stackadnan/fastapi-jobs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file fastapi_jobs-0.2.0-py3-none-any.whl.

File metadata

  • Download URL: fastapi_jobs-0.2.0-py3-none-any.whl
  • Upload date:
  • Size: 23.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for fastapi_jobs-0.2.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7955d89b16e9b835db1383e19f110efd3d300749f68def948088d9d2e6aad189
MD5 bfd09ebf8247451e75ed1a86165eee14
BLAKE2b-256 575cf6156f47fc0ab7dcda3af7f1cb1f4125f4144bec7ad90c092cb77e1b0bda

See more details on using hashes here.

Provenance

The following attestation bundles were made for fastapi_jobs-0.2.0-py3-none-any.whl:

Publisher: publish.yml on stackadnan/fastapi-jobs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

0.2.0 This release

2 files

0.1.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page