6-Dec

The Cloud

Unleashing speed and flexibility from the cloud

Feature toggling, or feature flags, is a fairly well known concept in the world of modern system development. It provides the foundation for separating launching a feature from the physical deployment of code, enabling things like A/B testing, piloting and a faster development process. With a few clicks, you can get going with a streamlined feature toggling setup in no time using hosted cloud services.

5 min read

·

By Torstein Gjengedal

·

December 6, 2019

The concept of feature toggling is pretty straightforward: Evaluating a boolean expression decides whether some (in most cases) new code should be executed or if we should go with the existing old code:

if (doTheNewStuff == true) {
  doTheNewStuff();
} else {
  doTheOldstuff();
}

Simple as it is, this technique essentially opens the door for having code that is unused, or even still a work in progress as part of the production code. In many cases, this is an essential tool to avoid long living feature branches and go for trunk-based development - a key part of succeeding in continuous delivery. If that’s not enough, adding some smartness to the toggle evaluation helps with things like A/B testing, pilot testing / canary releases and gradual rollouts.

A dead simple toggle may be implemented as

if (false) {
  doTheNewStuff();
} else {
  doTheOldstuff();
}

This will hide the new stuff until ready for launch, but it will require a (really, really small) commit, build and deploy to do so. And it does not allow for configuring different setup in different environments, i.e. running the new stuff in a test environment and not in production – at least not in the same version of the code base.

if (theNewStuffIsSwitchedOn()) {
  doTheNewStuff();
} else {
  doTheOldstuff();
}

This minor adjustment gives the magic touch. Now, we have the flexibility to evaluate the toggle in any way we see fit, by changing the implementation of the evaluation function. The toggle may be simply bound to some config setting, i.e. for turning on for test but off for prod - a frequently used, and in many cases sufficient, approach. But the function may also be true for specific users, a certain percent of users, certain devices or whatnot.

However, implementing rules like these at every point of evaluation in every app may quickly turn into a mess of many toggles with lots of duplicated, or slightly different, implementations – as well as being boring and cumbersome. When reaching that point, it may be time to look out for help. There are quite a few libraries or services ready to use. The organisation where I work have been using Unleash for the last year and a half, where it has rapidly become a core tool for many dev teams – so I’ll use that as an example.

Unleash allows you to define your toggles in a dedicated, central system, using a nice and simple web UI. You define your toggle with the name of your choice, and assigns it one or more evaluation strategies. These strategies define how the toggle should be evaluated, and any parameters it needs for doing so. Unleash comes with a set of pre-defined strategies, like

  • The simple, but handy default strategy – either on or off
  • userWithId - on for specific users, configured with user ids for the users in question.
  • gradualRolloutUserId - on for a specific percentage of users (based on hashing the user id)
  • gradualRolloutSessionId – as above, but based on a session cookie (handy for systems without login)

In addition to the built-in strategies, you can easily define your own, like turning on for certain environments (i.e. test), for people at a certain location or any other criteria that you’re able to evaluate. Finally, a toggle can use a combination of strategies, like “on for a certain percentage of users, plus always on for user a and b”.

There is an online demo of unleash available if you want to check it out.

Unleash provides client libraries for various languages, to use in your app’s code. This is where the actual evaluation of the toggles will take place, according to the defined strategies. The built-in strategies comes with the library, but in many cases you’ll have to pass some contextual information for it to work (i.e. the id of the logged in user for the userWithId strategy.) For your custom strategies, you’ll have to provide the entire evaluation implementation. At the point of evaluation, your code will be quite simple, like

if (unleash.isEnabled(“theNewStuff”) {
  doTheNewStuff();
} else {
  doTheOldstuff();
}

Communication between the client (your app) and the unleash server is asynchronous, meaning that the toggles have minimal effect on performance (unless the evaluation itself is slow), and that your app will still work if you lose connection to the unleash server. The client library caches the toggle strategies and settings. Evaluating a toggle that is not yet defined, will be false.

The client also reports metrics back to the unleash admin app, where you can see the number of times a certain toggle have been evaluated true or false within the last hour, and which apps that use each toggle.

Wrapping up, feature toggling is first and foremost an enabler for getting code into production fast, avoiding long lasting feature branches and increasing speed. Additionally, it provides lots of flexibility of how to launch and test new features, being it in the dedicated test environment or in production itself.

If you’re ready to take the step into the modern world of flexible feature toggling, Unleash is available as a hosted service at unleash-hosted.com. However, you can host it yourself for free if you’d like. Or, you might want to check out other hosted services in the feature toggle space, like LaunchDarkly, FeatureFlow or Feature Ops.

Now, go and enable the speed toggle for your team :)

Up next...

Loading…

Loading…

Loading…