Skip to content

Jun 23, 20261 min read

Shipping Inference server to production

Why the boring 20 percent (deploys, timeouts, backpressure) is the part that ships.

Terminal showing a Rust gRPC server under load

The demo worked on the first try. Production took the next three weeks.

What the demo skipped

  • Timeouts and retries under real network jitter.
  • Backpressure when the queue outruns the model.
  • A deploy story that does not drop in-flight requests.

The fast path is easy. The failure paths are the product.

Read this next