Async task manager for Python 3.14+ using RabbitMQ and Valkey
Project description
SwarmQ
Async-first Python task queue on RabbitMQ + Valkey.
Status: Phase 3 + E2E hardening complete; Phase 5 in progress (metrics + health endpoints landed, hot-reload + agent-docs to come). 1280+ tests across unit / integration / e2e / chaos / property / fuzz / stress suites. Not yet production-tested by anyone but the author.
Quick Start
# 1. Start RabbitMQ + Valkey (compose file lives in this repo)
docker compose up -d
# 2. Define a task
cat > myapp/tasks.py <<'EOF'
from swarmq import Task, TaskInfo
class SendEmail(Task):
task_info = TaskInfo(name="send_email", queues=["default"])
async def run(self, to: str, subject: str) -> str:
# ... your code here ...
return f"sent to {to}"
EOF
# 3. Tell SwarmQ where the broker and backend live
export SWARMQ_BROKER_URL="amqp://guest:guest@localhost:5672/"
export SWARMQ_BACKEND_URL="valkey://localhost:6379/0"
# 4. Run a worker
swarmq worker --module myapp.tasks --queues default --concurrency 10
The worker handles SIGTERM / SIGINT for graceful shutdown. Multiple
queues: --queues default,emails,priority. Structured logs:
--log-format json.
Hello World — Client side
import asyncio
from swarmq import SwarmQ, RabbitMQBroker, ValkeyBackend
import myapp.tasks # noqa — auto-registers SendEmail
async def main():
app = SwarmQ(
RabbitMQBroker("amqp://guest:guest@localhost:5672/"),
ValkeyBackend("valkey://localhost:6379/0"),
queues=["default"],
)
async with app:
task_id = await app.schedule(
"send_email", to="op@example.com", subject="hi",
)
result = await app.get_result(task_id, timeout=10)
print(result) # sent to op@example.com
asyncio.run(main())
Reusing an existing connection pool (producer)
If your app already holds its own RabbitMQ connection and/or Valkey client, hand them to SwarmQ instead of a URL — SwarmQ reuses them rather than opening a second, parallel connection to the same server. You can pass either a high-level client/connection or a low-level pool, and mix sources per backend:
import aio_pika
import valkey.asyncio
from swarmq import SwarmQ, RabbitMQBroker, ValkeyBackend
# objects your app already owns
connection = await aio_pika.connect_robust("amqp://guest:guest@localhost:5672/")
valkey_client = valkey.asyncio.Valkey.from_url("valkey://localhost:6379/0")
app = SwarmQ(
RabbitMQBroker(connection=connection), # or connection_pool=<aio_pika.pool.Pool>
ValkeyBackend(client=valkey_client), # or pool=<valkey ConnectionPool>
# no broker_url / backend_url needed when a connection object is injected
)
async with app:
await app.schedule("send_email", to="op@example.com", subject="hi")
# closing `app` does NOT close `connection` or `valkey_client` — your app keeps them
Things to know:
- Ownership: SwarmQ never closes a connection/client/pool you inject — it belongs to your app. SwarmQ does close the publish channel it opens on a borrowed RabbitMQ connection (that channel is SwarmQ's).
- Producer-only: injection is for the task-sending path. Calling
start_worker()on an injected broker/backend raisesConfigurationError— workers are spawned as subprocesses and reconstruct their broker/backend fromSWARMQ_BROKER_URL/SWARMQ_BACKEND_URL, which a borrowed connection can't cross. - Robustness is yours: an injected Valkey client/pool does not
inherit SwarmQ's retry / health-check policy, and an injected aio-pika
connection should be a robust one (
connect_robust) for SwarmQ's channel-reconnect handling to behave as designed. - Same namespace assumed: the injected object must point at the same server and logical namespace (RabbitMQ vhost, Valkey DB) the rest of your config expects — SwarmQ does not validate this, and a mismatch silently sends/reads tasks in the wrong namespace.
What's in the box
Core (Phase 1+2+3)
- At-least-once delivery with Quorum-Queue durability and
x-delivery-limit=20against pathological redelivery loops. - Retries with exponential / linear / fixed backoff +
configurable
max_retries,NoRetry,Retry(delay=...). - DLQ routing for retry-exhaustion +
swarmq dlq list/inspect/ retry/purgeCLI for operator recovery. - Middleware stack with 6 hooks (pre/post enqueue, pre/post execute, on_error, on_retry).
- Signals — 14 lifecycle events with
@app.on_signal(...)decorator. - Rate limiting — Cloudflare 2-period sliding window via Lua
(
TaskInfo(rate_limit="100/m")). - Locking — mutex + semaphore via Valkey atomic primitives, with
format-string keys (
lock="user:{user_id}"). - Unique tasks — dedup by canonical-encoded args, with
unique_until="start"or"completion". - Cancellation — pre-pickup + during-execution via
Client.cancel(task_id), dedicatedTASK_CANCELLEDsignal. - Scheduler — cron, delayed (
eta=...), recurring with leader-election failover. - Progress tracking —
Task.update_progress(current, total, msg)Client.get_progress/Client.watch_progressAsyncIterator.
- CLI —
swarmq worker,swarmq schedule,swarmq dlq *,swarmq inspect.
Workflow primitives
chain/group/chordwithSignaturebuilding blocks (Task.s(),sig("name"), immutableTask.si()) and operator syntax (A.s() | B.s(),group(...) | merge.s()). Flat-DAG composition with construction-time limits (max_workflow_depth=10,max_group_size=1000).- Fire-and-forget
apply()returns a reattachable handle:await app.apply(chain(...))→handle.get(timeout=...),cancel(),children, stableworkflow_idreattach viaapp.workflow(id). - Worker-driven orchestration — workers advance the workflow on each
task completion (chain result-injection, atomic+idempotent chord
fan-in via Lua). Fail-fast with liveness: a failed step marks the
workflow failed and wakes
get()instead of hanging.
result = await (await app.apply(
chord(group(Download.s(u) for u in urls), Merge.s())
)).get(timeout=30)
Operations (Phase 4 + Phase 5)
- Multi-process workers (
--processes N) — supervisor starts N subprocesses, restarts crashed workers (5/hr rolling-window limit), reloads on SIGHUP viaos.execvp. SIGHUP replays thesys.argvsnapshot captured at supervisor start (by design — in-process argv-mutation cannot influence the re-exec vector). Sichere Launch-Entrypoints (Container CMD, systemd ExecStart) bleiben die Trust-Grenze für das initiale argv. - Autoscaling (
--autoscale=MIN,MAX) — queue-depth-driven scale up/down with 30s cooldown, 60s idle window, and a 30s minimum worker age that suppresses spawn→immediate-kill churn when a crashed worker is restarted during an idle period. - Prometheus metrics (
pip install swarmq[metrics]) — 7 metrics exposed on/metrics, drop-in no-op when the dep is absent. - Health endpoints —
/health(liveness) +/ready(broker + backend reachable, structured 503 body). - Hot reload (
--reload,pip install swarmq[reload]) — file- watch trigger that fires the existing SIGHUP drain-and-execvpe pipeline. Developer-only (WARNING log on every start); seewebsite/guides/hot-reload.md.
Reliability hardening (E2E + Chaos suites)
- Channel-recreate survives RabbitMQ broker restarts mid-publish.
- Pub/Sub resubscribe survives Valkey restarts mid-stream.
- Toxiproxy chaos suite verifies behavior under network latency, bandwidth limits, slicer (packet loss), full disconnect, and partial partitions.
- Property-based tests on dedup-hash, serialization, backoff, rate-limiter; fuzz-tests on message parsers and external publishers.
Configuration
Worker behaviour is configured via env vars and CLI flags (CLI flag wins where both are set).
| Variable / flag | Default | Purpose |
|---|---|---|
SWARMQ_BROKER_URL |
required | AMQP URL for RabbitMQ |
SWARMQ_BACKEND_URL |
required | Valkey/Redis URL for results |
--queues a,b,c |
default |
Queues to consume |
--concurrency N |
10 |
Max parallel tasks per worker |
--log-level |
INFO |
DEBUG / INFO / WARNING / ERROR |
--log-format |
human |
human or json |
Other env vars: SWARMQ_RESULT_TTL, SWARMQ_QUEUES,
SWARMQ_CONCURRENCY, SWARMQ_LOG_LEVEL, SWARMQ_LOG_JSON. Full
list in src/swarmq/config.py.
What's planned next
Phase 4 operator features complete (Priorities, Expiry, Burst,
ProcessManager, Autoscaling). Phase 5 Wave 1 complete (Metrics,
Health, Hot reload). Workflow primitives (chain / group / chord
- Signatures) implemented — see "Workflow primitives" above.
Machine-readable agent spec (R5.5) implemented — generated JSON for
errors, config, CLI, and message schemas plus an
llms.txtindex underreference/agent/spec/, kept in sync with the code by tests (python -m swarmq.agent_spec). Remaining — bulk-throughput optimisation (schedule_manyfast path) — seedocs/brainstorms/implementation-order-requirements.md.
Project layout
src/swarmq/
app.py SwarmQ application
worker.py Consumer loop
client.py Schedule API + result retrieval
task.py Task base + TaskInfo
middleware.py Middleware base + chain
signals.py Signal enum + dispatcher
limits.py RateLimiter + parser
locking.py Mutex / semaphore
cancellation.py Cancel-flag protocol
progress.py ProgressInfo (R3.7)
scheduler.py Embedded cron + delayed scheduler
metrics.py Prometheus exporter (R5.1)
health.py /health + /ready (R5.2)
cli.py argparse entrypoint
lua/ Lua scripts loaded into Valkey
broker/rabbitmq.py
backend/valkey.py
tests/
unit/ ~895 fast, no infra
integration/ broker + backend, real Docker
e2e/ full client + worker round-trip
chaos/ toxiproxy + container restarts (opt-in, nightly)
property/ hypothesis property-based (opt-in)
fuzz/ byte + JSON fuzz (opt-in)
stress/ high-parallelism (opt-in)
soak/ 1h leak detection (opt-in, weekly)
docs/
brainstorms/ requirements (per feature)
plans/ implementation plans (per feature)
solutions/ postmortem-style learnings
testing/ test strategy + feature-parity matrix
Development
# Fast dev loop — unit only
uv run --extra test pytest tests/unit -q
# E2E suite (needs docker compose up -d)
SWARMQ_TEST_RABBITMQ_PORT=5673 SWARMQ_TEST_VALKEY_PORT=6380 \
uv run --extra test pytest tests/e2e -q
# Chaos suite (starts its own toxiproxy stack per test class)
uv run --extra test pytest tests/chaos -q -m chaos
# E2E feature-combinations suite (31 combos × 3 failure tiers)
# Tier-1 only — no Toxiproxy needed, runs as part of the regular e2e
# suite above. Tier-2/3 (chaos-marked) needs the Toxiproxy stack:
docker compose -f docker-compose.yml -f docker-compose.chaos.yml up -d
uv run --extra test pytest tests/e2e/combinations -v -m chaos
# Property + fuzz
uv run --extra test pytest tests/property tests/fuzz -q -m "property or fuzz"
Three-tier CI in .github/workflows/: pre-merge (≤5 min, every PR),
nightly (chaos + stress + fuzz), weekly (mutation + 1h soak).
For coding conventions and TDD discipline see AGENTS.md.
License
MIT.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file swarmq-0.1.0.tar.gz.
File metadata
- Download URL: swarmq-0.1.0.tar.gz
- Upload date:
- Size: 195.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Linux Mint","version":"22.3","id":"zena","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
cf02ddc45e2fbfa63e6d893fb9f54d58d20eac146d21e92d0cfcd9fa3dbac87f
|
|
| MD5 |
e8e15e2754a1afa0b466ed2036cf96b3
|
|
| BLAKE2b-256 |
a8f35deba7d424e720ae00e06a3dced2de30f76024696fe1734449fc8129fb8b
|
File details
Details for the file swarmq-0.1.0-py3-none-any.whl.
File metadata
- Download URL: swarmq-0.1.0-py3-none-any.whl
- Upload date:
- Size: 222.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.11.6 {"installer":{"name":"uv","version":"0.11.6","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Linux Mint","version":"22.3","id":"zena","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4d96db6193fb8eeec8a7726b5dff705789dfa56852fa3a590e8fb55f52c64ce5
|
|
| MD5 |
315d6e89adbfdf749ec49ecf2f25df02
|
|
| BLAKE2b-256 |
8ca69d3ff30aca64351f05478476651944fe9e2ad98747240296c33e40733a84
|