21
How would you make a model rollback safe?
Tap to write answer
0 words | 0 charsPress Enter ↵ to reveal
Your Attempt
0 wordsRefined Model Answer
ReferenceI would keep the previous model version available and make routing versioned so traffic can move back quickly if something breaks. The serving system should support canary rollout, shadow traffic, and a fast switch to a stable model. The reason I choose this approach is that ML deployments need the same rollback discipline as software deployments, plus extra attention to quality and compatibility. I would also think about prompt compatibility, embedding changes, and downstream consumers. If the interviewer wants more detail, I would discuss rollback testing before full release.