// Section 4.2 · Protocol
Capacity-Aware Queueing
Priority by complexity, not arrival order.
// 4.2 · capacity-aware queueing · signal 2 of 4
After capability filtering, the surviving node pool has a queue. Requests enter that queue ordered by complexity, not by arrival order. On the live AI path each entry is a whole inference request, dispatched intact to one node; on the general parallelizable-workload path it is a sub-task. Each node holds its own active capacity counter. The scheduler does not over-subscribe a node beyond its declared limit.
Per-node capacity counter
// each node carries its own limit · scheduler respects declared maximum
// capacity counter is per-node · the scheduler skips nd_8e91 entirely while it sits at the max
Priority queue order
// complexity-ranked · not FIFO
// the heaviest request arrived LAST but dispatches FIRST · capacity-aware queueing prevents head-of-line blocking on lower-complexity work