docs/multi-agent/federation.md
Federation enables peer-to-peer synchronization of beads databases between multiple workspaces using Dolt remotes. Each workspace maintains its own database while sharing work items with configured peers.
Federation uses Dolt's distributed version control capabilities to sync issue data between independent teams or locations. Key benefits:
Edit .beads/config.yaml or ~/.config/bd/config.yaml:
federation:
remote: dolthub://myorg/beads # Primary remote (optional)
sovereignty: T2 # Data sovereignty tier
Or via environment variables:
export BD_FEDERATION_REMOTE="dolthub://myorg/beads"
export BD_FEDERATION_SOVEREIGNTY="T2"
| Tier | Description | Use Case |
|---|---|---|
| T1 | No restrictions | Public data |
| T2 | Organization-level | Regional/company compliance |
| T3 | Pseudonymous | Identifiers removed |
| T4 | Anonymous | Maximum privacy |
Use bd federation add-peer to register remote peers:
bd federation add-peer <name> <endpoint>
| Format | Example | Description |
|---|---|---|
| DoltHub | dolthub://org/repo | DoltHub hosted repository |
| Google Cloud | gs://bucket/path | Google Cloud Storage |
| Amazon S3 | s3://bucket/path | Amazon S3 |
| Local | file:///path/to/backup | Local filesystem |
| HTTPS | https://host/path | HTTPS remote |
| SSH | ssh://host/path | SSH remote |
| Git SSH | git@host:path | Git SSH shorthand |
# Add a staging environment on DoltHub
bd federation add-peer staging dolthub://myorg/staging-beads
# Add a cloud backup
bd federation add-peer backup gs://mybucket/beads-backup
bd federation add-peer backup-s3 s3://mybucket/beads-backup
# Add a local backup
bd federation add-peer local file:///home/user/beads-backup
# Add a partner organization
bd federation add-peer partner-town dolthub://partner-org/beads
Peers configured with --user (and optionally --password, otherwise
prompted interactively) store SQL credentials AES-256 encrypted, locally.
Stored credentials are used automatically during sync:
bd federation add-peer town-gamma 192.168.1.100:3306/beads --user sync-bot
For scripting, use the --json flag:
bd --json federation add-peer staging dolthub://myorg/staging-beads
# {"added":"staging","url":"dolthub://myorg/staging-beads","has_auth":false,"sovereignty":""}
List configured peers:
bd federation list-peers
Use bd federation sync to pull from and push to peer towns, and
bd federation status to check sync state without transferring data.
# Sync with all peers
bd federation sync
# Sync with a specific peer
bd federation sync --peer town-beta
# Handle conflicts
bd federation sync --strategy theirs # or 'ours'
# Check status (ahead/behind, reachability, conflicts)
bd federation status
bd federation status --peer town-beta
Without --strategy, a sync that hits merge conflicts pauses and reports the
conflicting tables for manual resolution instead of auto-resolving.
| Pattern | Description | Use Case |
|---|---|---|
| Hub-spoke | Central hub, satellites sync to hub | Team with central coordination |
| Mesh | All peers sync with each other | Decentralized collaboration |
| Hierarchical | Tree of hubs | Multi-team organizations |
add-peer registers a Dolt remote (similar to git remote add)bd federation sync pushes and pulls commits between peersWhen run against a Dolt SQL server, federation uses two ports: MySQL (3306) for multi-writer SQL access, and remotesapi (8080) for peer-to-peer push/pull:
┌─────────────────┐ ┌─────────────────┐
│ Workspace A │◄───────►│ Workspace B │
│ dolt sql-server│ sync │ dolt sql-server│
│ :3306 (sql) │ │ :3306 (sql) │
│ :8080 (remote) │ │ :8080 (remote) │
└─────────────────┘ └─────────────────┘
Issues track their SourceSystem to identify which federated system created
them. This enables proper attribution and trust chains across organizations.
Remote connectivity is validated on first push/pull operation, not when adding the peer. This allows configuring remotes before infrastructure is ready.
A claim lease (bd ready --claim + bd heartbeat, reaped by bd reclaim) is
only meaningful on the replica that granted it. The leases table is
clone-local and never replicates; what crosses the bridge is the claim's
visibility — status/assignee on the issue row — and that is stale on
every other replica by up to one sync interval.
Two rules follow, and a federated deployment owes both:
bd reclaim --older-than grace shorter than the cadence at which replicas
exchange state is meaningless across the bridge: the remote view is a full
interval old by construction, so a reaper over there would be judging
liveness from data older than the lease itself. bd reclaim defaults its
grace to 2× the lease TTL; raise the TTL (or the grace) above your sync
interval, never shrink the interval to fit them.bd reclaim skips a lease granted elsewhere, naming
it on stderr. Reap dead workers on the machine that hired them.The guard is opt-in: it arms only where you name this replica.
export BEADS_NODE_ID=mini # per-machine; or `bd config set node_id mini`
Two rules about what to name, both load-bearing:
node_id names the STORE, not the host. One value per beads database.
Hosts that are clients of the same dolt sql-server (BEADS_DOLT_SERVER_HOST,
a systemd/Docker server, Hosted Dolt, a VPS) are one replica no matter how
many machines they are — give them all the same value, or leave it unset. Give
them distinct ids and you rebuild the very fail-closed regression described
below: a supervisor would match no worker's lease and reclaim 0 forever. Name a
replica only where there is a real sync interval between it and the others.node_id is per-machine, so it must never be committed. The project
.beads/config.yaml is a git-tracked file. A node_id committed there
propagates one machine's identity to every clone that pulls it, and then every
comparison matches: the guard is fully armed and fully inert, and laptop
reaps mini's leases exactly as if they were local — the precise hazard this
feature exists to close, now happening while you believe you are protected.
That is worse than not setting it at all. bd config set node_id therefore
writes the user-global ~/.config/bd/config.yaml, alongside the other
per-machine state (sync-state.json, push-state.json, redirect). Use the
env var or that command; never hand-add node_id to .beads/config.yaml.There is deliberately no hostname fallback. The hostname answers the wrong
question — it names the client process's machine, not the store — and
guessing gets it wrong in the topologies that most need automated reclaim:
with a shared or remote dolt sql-server (BEADS_DOLT_SERVER_HOST, Hosted
Dolt, a VPS) many hosts are clients of ONE store with no sync interval
between them, so a per-hostname identity would stop a supervisor reaping any
worker's lease at all; in a container the hostname is a per-run container ID;
on macOS the transient hostname follows the network. Each of those would
strand work on a deployment with no federation at all — a worse failure than
the one this guard prevents.
So an unset identity degrades to the old behavior (every lease treated as local) rather than failing closed: an upgrade, and any single-store deployment, can never strand a lease the reaper could previously recover. Leases granted before this feature landed likewise carry no replica and stay reclaimable until a heartbeat re-stamps them with a configured node.
bd reclaim --any-replica disarms the guard. It is for a replica that is
permanently gone (or a node that was renamed and now sees its own old leases
as foreign) — not a normal setting, since only the granting machine has a
first-hand view of whether the holder is alive.
The following operation has infrastructure support but is not yet exposed as a command:
bd federation push <peer> / bd federation pull <peer> - single-direction
sync with one peer. bd federation sync already covers the bidirectional
case.Federation commands require the Dolt backend with direct database access. Ensure you have the Dolt backend configured for federation operations.
A peer with that name is already configured. Use a different name or check
existing peers with bd federation list-peers.
Ensure your endpoint matches one of the supported formats above. The scheme
must be one of: dolthub://, gs://, s3://, file://, https://, ssh://,
or git SSH format (git@host:path).
bd doctor --deep
cmd/bd/federation.gointernal/storage/versioned.gointernal/storage/dolt/store.go