A pre-launch checklist for production LLM inference
Jun 12, 2026·Alex Chen
inference
production
checklist
Before you point production traffic at a self-hosted inference stack, walk through this list.
The checklist
- P99 latency under sustained load — not just cold p50.
- Cold start behavior when autoscaling from zero.
- KV cache eviction policy under memory pressure.
- Request cancellation — does an aborted client actually free the GPU?
- Token accounting for billing/quota accuracy.
- Structured output failure modes (schema validation, retries).
- Prompt injection surface on any tool-using agent.
- Rollback plan — can you revert a model version in < 60s?
The one people forget
Request cancellation. Many inference servers happily keep generating tokens after the client disconnects. On a bursty workload that's 20–40% wasted GPU time.
What to monitor
- Tokens per second, split by prompt length bucket.
- Queue depth per replica.
- GPU memory headroom at p95.
- Time to first token vs total.