Shadow Deployment
A shadow deployment sends production traffic to a new model in parallel with the live model but never returns the new model's predictions to end users — allowing teams to validate latency, cost, and prediction distribution under real load with zero user risk.
Full definition
Shadow mode logs both models' outputs and compares them offline. It catches issues canary cannot — for example, the new model is faster but produces a 12% higher rate of unsafe outputs that a real A/B would have exposed customers to. Shadow mode is the standard de-risking step before any model with potentially harmful outputs (LLMs, fraud, safety-critical scoring) is canaried.
Why it matters
For models where bad predictions create legal, safety, or trust damage that a 1% canary still expresses, shadow deployment is the only ethical path to live validation. AIDOLS recommends shadow mode for every regulated-industry model before canary.
Example
A health insurer shadows a new claims-triage model for 30 days, discovers it under-flags rare-disease claims by 8%, and corrects training data before any user ever sees a prediction.
Related terms
- Canary DeploymentA canary deployment routes a small slice of production traffic (e.g., 1-5%) to a new model version while the majority continues hitting the stable version, surfacing latency, error, and quality regressions before full rollout.
- A/B Testing for MLA/B testing for ML is the practice of randomly splitting live traffic between a control model and a candidate model to measure the candidate's causal impact on real business metrics — revenue, conversion, retention, defect rate.
- Model EvaluationModel evaluation is the systematic measurement of an AI model's performance, safety, and behavior across representative tasks — using fixed benchmarks, golden datasets, human ratings, and LLM-as-judge methods — both before and after deployment.
- MLOpsMLOps is the discipline of operating machine-learning and AI systems reliably in production — covering data pipelines, model training, deployment, monitoring, drift detection, governance, and incident response — analogous to DevOps for traditional software.
Source & further reading
Primary source: Google Cloud Architecture — MLOps Continuous Delivery (2023).
Citation policy: this entry is part of the AIDOLS AI Implementation Glossary and may be quoted for research, journalism, and education with attribution to aidolsgroup.com/es/glossary/shadow-deployment/.