// Section 2.2 · Concepts
The coordination layer in detail
Coordination is centralised at launch, by design.
// 2.2 · the coordinator in detail · four logical services
Coordination is centralised at launch. That is a deliberate trade-off: ship a working network with one moving part, rather than a partial multi-validator system on day one. The coordinator is described honestly as a single point of failure until decentralised validator quorums land.
Four logical services
// intake · segmenter · scheduler · validator
Accepts requests, verifies $PRLX payment, enqueues for routing.
For genuinely parallelizable workloads, splits the task graph into independent sub-tasks. AI inference is dispatched whole, not segmented.
Matches each unit of work to a node using the four scheduling signals (§IV).
Reconstructs Proof-of-Execution commitments, re-dispatches a sampled fraction, settles payment.
Topology is deployment-time
// behaviour is canonical · topology is a deployment decision
All 4 services in one binary, one host. Suitable for a single-host deployment.
Each service its own pod, shared cluster. Launch production scale.
Services federated across regions. Planned, when quorum validators come online.
Topology progression
// the coordinator becomes a quorum
Documented single point of failure. Sampled re-dispatch is the only honesty check.
Coordinator runs as a multi-instance service. Decentralised validator quorum overlays the re-dispatch layer.
Coordinator quorum federates across regions. On-chain dispute resolution for validator disagreement.
Caveat·Honest trade-off at launch