A team deploys a new fraud model using canary deployment with 15% of traffic. The champion continues receiving 85%. After 2 weeks, the canary achieves statistically significantly better precision. What distinguishes canary deployment from A/B testing in this context?
Select an answer to reveal the explanation.
Short Explanation and Infographic
Here's the deal — b is correct because canary deployment is designed for progressive rollout: the canary starts at a small traffic fraction and is gradually promoted to 100% if it meets performance thresholds. A/B testing maintains a fixed split for statistical comparison over a defined experiment window, with no automatic gradual promotion.
Full explanation below image
Full Explanation
B is correct because canary deployment is designed for progressive rollout: the canary starts at a small traffic fraction and is gradually promoted to 100% if it meets performance thresholds. A/B testing maintains a fixed split for statistical comparison over a defined experiment window, with no automatic gradual promotion. A is wrong; canary routing is mutually exclusive per request. C is wrong; both can use randomized routing. D describes shadow deployment, not canary.