Parallel / Swarm / Networked Architectures
> Contrast with supervisor: no central decider. Agents read a shared event bus, pick up work asynchronously, write results back. LangGraph explicitly supports "Swarm Architecture" for decentralized, dynamic environments. Matrix (arXiv:2511.21686) represents both control and data flow as serialized messages passed through distributed queues to eliminate the orchestrator bottleneck. The tradeoff is explicit: determinism and traceability for scalability. Swarm fits tasks with many independent sub-problems; it does not fit tasks that need a single coherent plan.
Type: Learn + Build
Languages: Python (stdlib, threading, queue)
Prerequisites: Phase 16 · 05 (Supervisor Pattern), Phase 16 · 04 (Primitive Model)
Time: ~75 minutes
Problem
Supervisor scales to a few workers. What about hundreds? The supervisor itself becomes the bottleneck: every decision about who does what funnels through one agent. One slow plan step stalls the whole system.
Swarm architectures flip the design. Instead of a central planner dispatching work, workers pick work off a shared queue. The "coordination" is baked into the event bus semantics. No orchestrator; the system scales until the queue does.
Concept
The shape
┌──── shared queue ────┐
│ │
┌────────┼────────┐ ◄──────┬───┘
▼ ▼ ▼ │
Worker Worker Worker Worker
A B C D
│ │ │ │
└────────┴────────┴─────────┘
│
▼
results pool
No orchestrator. Each worker repeats: pull a task, process, write result (and optionally enqueue follow-ups).
When swarm fits
- Many independent tasks. Scraping, transforming, classifying. Tasks do not depend on each other.
- Variable-duration work. If some tasks take 100ms and others take 10s, a swarm balances load automatically — fast workers pull next jobs. A supervisor has to anticipate duration.
- Throughput over determinism. You care about total completion time, not strict ordering.
When swarm fails
- Ordered workflows. If step 3 needs step 2's output, a swarm risks step 3 firing before step 2 is done.
- Global-plan tasks. Complex research questions benefit from a planner. A swarm of researchers produces independent facts, not a coherent report.
- Debugging. With no central log and asynchronous work, reproducing a bug is expensive.
Matrix (arXiv:2511.21686)
Matrix is the 2025 paper that takes swarm to its natural conclusion: both control flow and data flow are serialized messages on distributed queues. No central coordinator. Fault tolerance comes from message durability. Scalability is the message broker's problem, not the system's.
Contribution: a programming model where multi-agent coordination is "what message topic does this agent subscribe to?" rather than "which agent does the supervisor pick next?" This makes the system look like a pub/sub event mesh.
LangGraph's Swarm Architecture
LangGraph 2025 docs explicitly describe "Swarm Architecture" as one of the multi-agent patterns: agents are nodes, but edges form a directed graph with cycles and any node can be activated from the pool. A worker picks from available work by condition, not by supervisor assignment.
Failure mode: starvation and hot-spotting
If all workers pull the fastest-available task, long-running tasks never get picked until they are the only ones left. Classic queue starvation.
Mitigations:
- Priority queues with explicit aging (increase priority with wait time).
- Worker specialization: some workers only take "long" tasks.
- Back-pressure: limit how many fast tasks enter the queue.
The content-based routing link
Swarm pairs naturally with content-based routing (Lesson 22). Instead of a generic queue, have one queue per message type. Specialist workers subscribe only to their type. This is the basis for message-bus architectures that scale to thousands of agents.
Build It
code/main.py implements a swarm of 4 worker threads pulling from a shared queue.Queue. Tasks have variable durations (some fast, some slow). The demo contrasts:
- Sequential baseline: one worker processes all tasks serially.
- Fixed assignment: each task pre-assigned to a specific worker (supervisor-style).
- Swarm: workers pull from a shared queue.
Swarm balances load automatically; fixed assignment leaves fast workers idle when their assigned task is slow.
Run:
python3 code/main.py
Output shows per-worker task counts (swarm distributes unevenly but optimally) and wall-clock times.
Use It
outputs/skill-swarm-fit.md evaluates whether a task should use swarm vs supervisor. Inputs: task independence, duration variance, ordering requirements, debuggability needs.
Ship It
Checklist:
- Priority queue with aging. Prevent long-task starvation.
- Worker idempotency. A task may be pulled more than once if a worker crashes mid-run. Workers must be idempotent.
- Durable queue. Use Kafka, Redis Streams, or a database-backed queue for production.
queue.Queueis in-memory only. - Observability per task. Every task has a trace ID; every worker logs start/end with it.
- Back-pressure. If the queue grows faster than workers drain it, slow the producer.
Exercises
- Run
code/main.py. How much faster is swarm than sequential on the variable-duration workload? How much faster than fixed assignment? - Add a priority queue variant (use
queue.PriorityQueue). Assign priority by task "importance" field. Observe whether low-priority tasks ever starve under continuous load. - Implement a hot-spot detector: log when any worker processes 3× more tasks than the slowest worker. What does that indicate about task-duration distribution?
- Read the Matrix paper (arXiv:2511.21686) abstract and Section 3. Identify one specific tradeoff Matrix accepts (scalability gain) and one it gives up (traceability, determinism).
- Convert the swarm demo to use a
queue.Queueof (task_type, payload) tuples, with workers subscribing only to specific types. What routing rules make sense when tasks are heterogeneous?
Key Terms
| Term | What people say | What it actually means |
|---|---|---|
| Swarm architecture | "Decentralized agents" | Workers pull from shared queue; no central orchestrator. |
| Event bus | "Agents subscribe to topics" | Message broker that routes tasks to workers by type or content. |
| Starvation | "Task never runs" | Low-priority task never gets picked because higher-priority work arrives continuously. |
| Hot-spotting | "One worker drowns" | Load imbalance where one worker gets most tasks. |
| Back-pressure | "Slow down the producer" | Mechanism that signals upstream to stop producing when the queue fills up. |
| Idempotent worker | "Safe to re-run" | A task processed twice produces the same result. Required because workers may crash mid-run. |
| Durable queue | "Survives crashes" | Queue backed by disk or replicated storage; tasks are not lost when a worker crashes. |
| Matrix framework | "Full message-passing swarm" | Both data and control flow are serialized messages on distributed queues. |
Further Reading
- LangGraph workflows and agents — Swarm Architecture — explicit swarm support
- Matrix — A Decentralized Framework for Multi-Agent Systems — full message-passing swarm
- Anthropic engineering — why supervisor not swarm in Research — why a specific production system explicitly chose supervisor over swarm
- AutoGen v0.4 actor-model docs — the event-driven actor rewrite, closer to swarm than v0.2's GroupChat