Feature toggle
A feature toggle,[1] (also feature switch, feature flag, feature flipper, conditional feature, etc.) is a technique in software development that attempts to provide an alternative to maintaining multiple source-code branches (known as feature branches).
Continuous release and continuous deployment provide developers with rapid feedback about their coding. This requires the integration of their code changes as early as possible. Feature branches introduce a bypass to this process. Feature toggles bring developers back to the track, but the execution paths of their features are still "dead" if a toggle is "off". But the effort is low to enable the new execution paths just by setting a toggle to "on".
The technique allows developers to release a version of a product that has unfinished features. These unfinished feature are hidden (toggled) so they do not appear in the user interface. This allows many small incremental versions of software to be delivered without the cost of constant branching and merging.
Another benefit of feature flags are canary launches. A canary launch (aka canary deployment or canary release) is rolling features out to a small number of users to assess the reaction of the overall system. A canary launch allows you to roll out a feature slowly, and measure the reaction from real user “canaries”, looking for early indicators of danger. If a feature is not good, it can be rolled back. Canary launches are a best practice for agile development organizations practicing continuous delivery to move faster. [2]
Whilst the pattern can be implemented very simply in most programming languages, there are libraries [3] available to further simplify usage.
Martin Fowler states that a feature toggle is the second-best solution. The best solution is to find a way to gradually integrate without feature branches or feature toggles.
Feature-toggling is used by many large websites including Flickr,[4] Disqus,[5] Etsy,[6] reddit,[7] Gmail and Netflix.[8]
There are many open source feature toggling and feature flagging solutions for Java, Angular, and Python.
References
- ↑ Martin Fowler 29 October 2010 (2010-10-29). "FeatureToggle". Martinfowler.com. Retrieved 2013-09-27.
- ↑ http://blog.launchdarkly.com/canary-launches-how-and-why-to-canary-release/
- ↑ One of many feature toggle framework list: http://www.beautifulbuilds.com/feature-toggle-frameworks-list/
- ↑ http://code.flickr.net/2009/12/02/flipping-out/
- ↑ http://blog.disqus.com/post/789540337/partial-deployment-with-feature-switches
- ↑ http://codeascraft.com/2011/02/04/how-does-etsy-manage-development-and-operations/
- ↑ https://github.com/reddit/reddit/blob/master/r2/r2/config/feature/README.md
- ↑ http://techblog.netflix.com/2013/11/preparing-netflix-api-for-deployment.html
External links
Tools
- LaunchDarkly - Feature Flags SAAS for all stacks
- FeatureFlags.io - A comprehensive list of feature flagging tools
- Petri, A comprehensive A/B test and feature toggle framework in Java (open source)
- Flip, an open source framework for feature toggles in Java
- FF4J - Feature Flipping for java made easy
- Togglz - Feature Flags for the Java platform
- FeatureToggle .Net - Feature toggles for .Net developers