Rethinking Dev-Test-Staging-Production Pipelines for Safety

TL;DR

Traditional Dev-Test-Staging-Production pipelines give a false sense of security because staging environments do not truly reflect production, leading to missed issues and wasted resources. Modern teams should focus on releasing to small user groups in production and using real feedback to guide rollouts. Consider shifting from heavy pre-release testing to faster, data-driven feedback in production to improve safety and efficiency.

21 February 2025
Written by Martin Hinshelwood
1 minute read
Comments
Subscribe

For years, we convinced ourselves that Dev-Test-Staging-Production pipelines kept us safe. If we just had one more layer of validation and one more environment to test in, we’d catch the problems before they hit production.

Except… that was a lie.

Staging environments aren’t production. They’re expensive illusions of safety. The data is different. The scale is different. The behaviours are different. And when failures inevitably show up in production anyway, teams scramble, wondering why their extensive pre-release testing didn’t catch the issue.

Modern software delivery isn’t about pretending production doesn’t exist; it’s about embracing it. Audience-based deployment (sometimes called ring-based deployment) is the smarter approach: releasing features to small, targeted user groups first, monitoring real-world behaviour, and expanding based on what the data tells us.

You don’t need more pre-production gates. You need faster feedback in production.

Are you still clinging to staging environments? What’s stopping you from moving forward?

Comments
Subscribe

What to read next

Signal Product Development DevOps

Staging Environments Do Not Prevent Production Failures

Staging environments can’t fully replicate production, often leading to false confidence. Real risk reduction comes from safe, incremental …

Read article
Signal Engineering Excellence DevOps

Do More Staging Environments Really Reduce Deployment Risk

Adding more staging environments does not reduce deployment risk; true safety comes from automated testing, continuous integration, and …

Read article
Signal Engineering Excellence DevOps

Why Engineering Teams Use Staging Environments for Risk Reduction

Explores how staging environments aim to reduce risk in software development, their hidden costs, and modern alternatives like feature flags …

Read article
Article Engineering Excellence DevOps

Testing in Production Maximises Quality and Value

Explains how audience-based deployment and testing in production enable faster feedback, safer rollouts, and higher software quality by …

Read article
Signal DevOps Engineering Excellence

There a common belief that rollback is the ultimate safety net

Rollback is often riskier than rolling forward, especially for stateful apps. Safer deployment relies on progressive delivery and …

Read article
Signal Engineering Excellence DevOps

Best Branching Strategies for Development Teams Explained

Explains why environment-based branching slows development, and recommends using feature flags and progressive rollouts for simpler, faster, …

Read article