Skip to main content
junior
beginner
CI/CD

Progressive Delivery Basics

Question

What is progressive delivery and how does it differ from traditional continuous delivery?

Answer

Progressive delivery is an extension of continuous delivery where new versions are released to a small subset of users first, then gradually rolled out to the full user base while monitoring for problems. Traditional CD typically deploys to all users at once after passing automated tests. Progressive delivery adds a controlled exposure phase between 'deployed' and 'released to everyone.' You ship the code to production but control who sees it using feature flags, canary releases, or traffic splitting. If error rates spike or latency increases for the small group, you stop the rollout and roll back before most users are affected. The key idea is that deploying code and releasing features are two separate steps. You can deploy a feature to production on Monday but only enable it for 1% of users, watch the dashboards for a day, bump to 10%, then 50%, and finally 100%.

Why This Matters

This question checks whether the candidate understands the core principle of progressive delivery: decoupling deployment from release. Strong candidates will mention the feedback loop between exposure and observability. Weak candidates will confuse it with blue-green deployments or describe it as just 'deploying slowly.'

Code Examples

Basic feature flag config separating deploy from release

yaml

Simple progressive rollout check in application code

python
Common Mistakes
  • Describing progressive delivery as just 'slow deployments' without mentioning observability and feedback loops
  • Confusing deploying code with releasing a feature to users
  • Thinking feature flags alone are progressive delivery without the monitoring and gradual rollout process
Follow-up Questions
Interviewers often ask these as follow-up questions
  • What signals would you watch to decide whether to increase the rollout percentage?
  • How is progressive delivery different from a canary deployment?
  • What happens if you deploy a database migration but only 5% of users see the new feature?
Tags
progressive-delivery
feature-flags
ci-cd
deployment
release-management