InterviewStack.io LogoInterviewStack.io

End-to-End ML System Design Questions

Designing a complete machine learning system from problem to production. Covers the components and architecture of a production ML system, data flow from ingestion to serving, scalability, and integration of models into a larger product. Emphasizes the whole-system design tradeoffs that appear in ML system-design interviews.

MediumTechnical
27 practiced

Your training pipeline spends more time reading and preprocessing examples than updating weights. Data arrives in many small files from object storage, and every epoch redoes expensive transformations. How would you redesign the input path so the GPUs stay busy while preserving reproducibility and debuggability?

HardSystem Design
30 practiced

An inference service must handle bursty traffic for a large model with a strict p95 latency target and a limited GPU budget. How would you scale serving so that you keep latency under control without wasting capacity during quiet periods?

MediumTechnical
30 practiced

Your spot instance training jobs are frequently interrupted, and rerunning from scratch is too expensive. How would you design checkpointing and restart behavior so that recovery is fast, state is consistent, and the training run remains reproducible?

HardTechnical
33 practiced

A multi-node training job is stable on a small cluster, but when you scale to dozens of workers the loss becomes noisy and final quality drops. Assume the code path is identical. What classes of issues would you investigate to separate a true optimization problem from a distributed systems problem?

HardTechnical
24 practiced

A release improved model quality, but in production the p99 latency doubled and autoscaling did not trigger. The average CPU on the pods still looks normal. How would you trace the request path end to end to isolate whether the slowdown comes from feature retrieval, preprocessing, batching, model execution, or a downstream dependency?

Unlock Full Question Bank

Get access to all 11 End-to-End ML System Design interview questions and detailed answers.

Sign in to Continue

Join thousands of developers preparing for their dream job.