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), such that the feature can be tested, even before it is completed and ready for release. Feature toggle is used to hide, enable or disable the features, during run time. For example, during the development process, the developer can enable the feature for testing and disable it for remaining users.[2]

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.[3] Feature toggles are an important technique used for the implementation of continuous delivery.

The technique allows developers to release a version of a product that has unfinished features. These unfinished features 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. Feature toggles may allow shorter software integration cycles.[4] A team working on a project can use feature toggle to speed up the process of development, that can include the incomplete code as well.

Implementation

Feature toggles are essentially variables that are used inside conditional statements. Therefore, the blocks inside these conditional statements can be toggled 'on or off' depending on the value of the feature toggles. A block of code which has been toggled 'off' is similar to it being commented out. This allows developers to control the flow of their software and bypass features that are not ready for deployment.

The main usage of feature toggles is to avoid conflict that arises due to merging changes in software at the last moment before release. Although this can lead to toggle debt. Toggle debt arises due to the dead code present in software after a feature has been toggled on permanently and produces overhead. This portion of the code has to be removed carefully as to not disturbing other parts of the code.

There are two main types of feature toggles. One is a release toggle which the developer determines to either keep or remove before a product release depending on its working. The other is a business toggle which is kept because it satisfies a different usage compared to that of the older code.

Feature toggle can be used in the following scenarios:[2]

  1. Adding a new feature to an application.
  2. Enhancing an existing feature in an application.
  3. Hiding or disabling a feature.
  4. Extending an interface.

Feature toggles can be stored as:[2]

  1. Row entries in a database.
  2. Defining feature toggle in the configuration file.

Feature groups

Feature groups consist of feature toggles that work together. This allows the developer and to easily manage a set of related toggles.[5]

Canary release

Another benefit of feature flags is canary launches. A canary release (or canary launch or canary deployment) allow developers to incrementally test features by a small set of users. If a feature's performance is not satisfactory, then it can be rolled back, without any adverse effects.[6]

Whilst the pattern can be implemented very simply in most programming languages(e.g. Java,[7][8] Angular JS,[9] PHP,[10] JavaScript,[11] etc. ) there are libraries [12] available to further simplify usage.

Martin Fowler states that a feature toggle "should be your last choice when you're dealing with putting features into production". Instead, it is best to break the feature into smaller parts that each can be implemented and safely introduced into the released product without causing other problems.[1]

Feature-toggling is used by many large websites including Flickr,[13] Disqus,[14] Etsy,[15] reddit,[16] Gmail[17] and Netflix.[18]

There are many open source feature toggling and feature flagging solutions for different programming languages and platforms.

See also

References

This article is issued from Wikipedia - version of the 11/4/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.