Does your team use them? If not, why not?
Ask HN: Does your team use feature flags?
1–10 of 143 posts
Re: Ask HN: Does your team use feature flags?
#2Re: Ask HN: Does your team use feature flags?
#3Re: Ask HN: Does your team use feature flags?
#4Re: Ask HN: Does your team use feature flags?
#5Put simply it disconnects merge and deploy from launch. This is very useful when your changes rely on other teams or third parties having gone live. Having a feature flag (we call them toggles) lets you get it into production turned off, without having to coordinate deploys with other systems.
The downsides are it is extra development overhead and adds tech debt (you should go back in and remove the toggles after a successful launch). Generally we try to devise a solution that can be deployed safely without a feature flag but they are often required.
Re: Ask HN: Does your team use feature flags?
#6It's also a life saver when issues arise, though the correct term for this is "operational toggles". Flip a switch when functionality is causing issues and it's gone.
Re: Ask HN: Does your team use feature flags?
#7The team uses them. Outside of looking for bugs I still have not been convinced that it is useful to check if blue versus green button has useful conversion rates.