Ilmu Komputer & AI editorial
Denial of Deadline: Network-Driven Accuracy Collapse in Distributed Inference Pipelines
The core problem
Modern inference systems increasingly adopt a two-tier architecture: a fast path that returns predictions within an application's latency deadline, and a slow path that runs higher-compute methods on stronger, remote hardware. A coordination layer routes requests to the slow path and merges its returned predictions with the fast path outputs. This design is attractive because it promises the best of both worlds: timely responses and higher accuracy when the slow path can deliver on time.
The authors identify a previously unrecognized attack surface in this coordination layer. They introduce **shaped workload attacks**, in which an adversary manipulates the timing and shape of its own requests to create contention at shared resources along the slow path. The goal is not to steal data or corrupt models, but to push benign users' slow-path predictions past their latency deadlines. When that happens, the merger discards the late predictions, and the fast path continues to return timely but less accurate outputs. The resulting loss of slow-path accuracy benefits is termed **accuracy collapse**.
This digest follows the IMRAD structure to summarize the threat model, methodology, results
Innovation
The experiments reveal a dramatic impact. In simulation, approximately **4,000 burst-shaped requests** increase benign p99 latency from **92 ms to 2 s**, nearly eliminating the benefit of the slow path's cloud inference. On average, object tracking quality drops by **7.0 HOTA points**.
The degradation varies significantly depending on the video intervals targeted by the attack, ranging from **2.0 to 18.7 HOTA points**. This indicates that adversaries can strategically choose when to attack to maximize damage. Furthermore, certain rare classes suffer disproportionately: for example, **stop signs lose nearly half of their pre-attack prediction accuracy**. This is particularly concerning for safety-critical applications like autonomous driving.
The attack is effective without any access to model weights or victim data, making it broadly applicable and difficult to detect. The fast path continues to return timely outputs, so the system appears to be functioning normally, while the slow path's accuracy benefits are silently lost.
Key quantitative findings:
- Benign p99 latency: 92 ms โ 2 s (โ21.7ร increase)
- Average HOTA drop: 7.0 points
- HOTA drop range: 2.0โ18.7 points
- Stop sig
Why it matters
The results expose a fundamental vulnerability in the emerging two-tier inference architecture. The coordination layer, designed to improve accuracy, becomes a single point of failure under shaped workload attacks. Because the fast path remains timely, traditional latency monitoring may not detect the attack; the system's overall accuracy silently degrades.
The attack's reliance on shared resources along the slow path suggests that resource isolation and robust scheduling are critical defenses. The authors motivate research on attacks and defenses for routing, merging, scheduling, and resource isolation. Potential mitigations include:
- **Admission control** to limit bursty traffic from a single user.
- **Resource isolation** (e.g., dedicated queues or bandwidth reservations) to prevent cross-user contention.
- **Deadline-aware scheduling** that prioritizes benign requests.
- **Merger policies** that can detect and compensate for missing slow-path predictions.
The work also highlights the need for new evaluation metrics that capture accuracy collapse, not just average latency. The taxonomy candidates for this work include Architecture, Cybersecurity, Network, and Cryptography, reflecting its cross-disciplinary nature.
Future research should explore defenses that preserve the benefits of two-tier inference while ensuring robustness against adversarial workload shaping. The authors' findings underscore that security must be considered from the outset in the design of distributed inference pipelines.
Who should read this
Opening member contentโฆ