Skip to main content

Activation strategies

Overview

An activation strategy determines who should get a feature. They allow you to enable and disable features for certain users without having to redeploy your application. For example, you can release features only to users with a specific user ID, email, IP address, and more. You can implement gradual rollouts to specific user segments, for example, those on a specific subscription plan or region. You can also use them to schedule feature releases or make features available for a limited time.

An activation strategy is assigned to one feature flag in one environment. A feature flag is enabled in a given context (for example, user or application) if at least one of its activation strategies resolves to true.

When adding a strategy to a flag, you can choose from several strategy types, such as a gradual rollout. Depending on the strategy type, you can further refine the configuration using rollout percentage, targeting, and variants.

Feature flags can have multiple activation strategies. Unleash evaluates each strategy independently, enabling the flag if any resolves to true. This behavior is equivalent to the OR logical operator.

For example, to roll out a feature to 75% of users while granting access to internal users, you can add two activation strategies as follows:

  1. Gradual rollout to 100% with a constraint on the email address.
  2. Gradual rollout to 75% (of all users).

A feature flag with two strategies

Rollout percentage

The rollout percentage determines the proportion of users exposed to a feature. It uses a normalized MurmurHash of a user’s unique ID, ensuring consistent and random feature distribution. Stickiness maintains a stable user experience across sessions.

Targeting

Segmentation and constraints allow you to define conditions for your activation strategies so that they will only be evaluated for users and applications that match those criteria. Constraints are individual conditional statements, while segments are a reusable set of constraints that you can apply to multiple strategies.

Constraints

Availability

Version: 4.16+

Constraints are conditional rules that determine whether a strategy applies, based on fields from the Unleash context. Constraints can reference both standard context fields and custom context fields.

An activation strategy can have as many constraints as needed. When an activation strategy has multiple constraints, then every constraint must be evaluated to true for the strategy to be evaluated. This behavior is equivalent to the AND logical operator.

You can use Playground to experiment with different strategy and constraint configurations and how they would evaluate in a given context.

For example, if you have two constraints: one where the user email must have the domain "@mycompany.com" and one where the user must have signed up for a beta program, then the strategy would only be evaluated for users with "@mycompany.com" emails that have signed up for the beta program.

YouTube video player 1 thumbnail
Click to load video

Constraint structure

A constraint has three parts:

  • A context field: The context field to use for evaluation.
  • An operator: One of the constraint operators.
  • Values: A value or list of values to use in the evaluation of the constraint.

These parts turn the constraint into an expression that evaluates to true or false. Here are a few example constraints:

Context fieldOperatorValuesDescription
userIdSTR_ENDS_WITH@example.com, @mycompany.comEvaluates to true for users whose user IDs end with @example.com or @mycompany.com.
currentTimeDATE_AFTER2022-06-05 21:43:22ZEvaluates to true if the current time is after 2022-06-05 21:43:22Z.
planINPremium, PlusEvaluates to true if the custom context field plan is either 'Premium' or 'Plus'.

Constraint operators

Constraint operators help you define the conditional statements that get evaluated as part of the constraint. Basic operators are available in all versions and SDKs. All other operators require Unleash version 4.9+ and SDK compatibility.

All constraints can be negated. For example:

OperatorValueContext fieldResult
STR_ENDS_WITH"@user.com""hello@user.com"true
NOT STR_ENDS_WITH"@user.com""hello@user.com"false

Basic operators

OperatorDescription
INThe context field is equal to any of the provided values; case sensitive.
NOT_INThe context field is not equal to any of the values provided; case sensitive.

Advanced operators

Numeric operators

Numeric operators compare the numeric value of context fields with the provided value. Numeric operators only accept single values.

OperatorThe context field is
NUM_EQThe context field is equal to the provided value.
NUM_GTThe context field is strictly greater than the provided value.
NUM_GTEThe context field is greater than or equal to the provided value.
NUM_LTThe context field is strictly less than the provided value.
NUM_LTEThe context field is less than or equal to the provided value.
Date and time operators

All date and time operators require the currentTime context field, and the currentTime context field can only be used with date and time operators. With these operators, you can enable a feature before or after a specified time or make it available for a specific time span by combining the two operators.

Date and time operators only support single values.

OperatorDescription
DATE_AFTERcurrentTime is a date after the provided value.
DATE_BEFOREcurrentTime is a date before the provided date.
String operators

String operators accept multiple values and can be set to be case-sensitive or case-insensitive.

OperatorDescription
STR_CONTAINSThe context field contains any of the provided string values.
STR_ENDS_WITHThe context field ends with any of the provided string values.
STR_STARTS_WITHThe context field starts with any of the provided string values.
Versioning (SemVer) operators

SemVer operators are used to compare version numbers such as application versions or dependency versions. SemVer operators only support single values.

The value must start with and contain at least major, minor, and patch versions. For example, 1.2.3. Optionally, you can also define pre-release version information by adding a hyphen and series of full-stop separated identifiers after the patch version. For example, 1.2.3-rc.2. Values with pre-release versions are considered less than versions without a pre-release in accordance with the SemVer specification, item 11.

OperatorDescription
SEMVER_EQThe context field is equal to the provided value.
SEMVER_GTThe context field is strictly greater than the provided value.
SEMVER_LTThe context field is strictly less than the provided value.

Best practices

Backend SDKs fetch the full feature flag configuration associated with your API key from Unleash. You can use API keys scoped to specific projects or environments to optimize payload size.

However, every value that you add to your feature flag constraints, increases the payload size. We recommend avoiding large constraint value lists. For example, instead of adding many user IDs or emails to the constraint value list, consider what properties those users share. This typically helps define and use a custom context field instead.

Add an activation strategy

To add an activation strategy with a constraint to a feature flag, do the following:

  1. Open the Admin UI and go to the feature flag you'd like to add a strategy to.
  2. Select the environment you want to configure and click Add strategy.
  3. Select your desired strategy type and click Apply or Configure.
  4. In the Targeting tab, go to the Constraints section, and click Add constraint.
  5. Select a context field to constrain on, for example, email.
  6. Set your desired operator, for example, STR_ENDS_WITH.
  7. Enter a value that the operator should evaluate, such as @user.com, and click Add values. Then click Done.
  8. Click Save strategy.

A feature flag with two strategies

Client-side implementation

Activation strategies are defined on the server but implemented client-side. The client determines whether a feature should be enabled based on the activation strategies.

All backend SDKs and Unleash Edge implement the default activation strategy. The frontend SDKs do not perform evaluations themselves. Instead, they rely on Unleash Edge to handle the implementation and evaluation.

When using strategies with constraints, the client must provide the current Unleash context to the flag evaluation function for the evaluation to be done correctly. All official Unleash client SDKs support the option to pass dynamic context values to the isEnabled() function (or the SDK's equivalent).

If the constraint uses a standard Unleash context field, set the context field to the required value. If the constraint uses a custom context field, use the Unleash context's properties field. Use the name of the custom context field as a key and set the value to your desired string.

Unleash SDKs expect all context values to be strings. If you use an operator that acts on non-string values, such as numeric operators or date and time operators, the SDKs attempt to convert the string into the expected type. If the conversion fails, the constraint evaluates to false.

Strategy types

When you add an activation strategy to a flag, you can choose from several options, depending on how you want to target and roll out your feature.

Default strategy

The default activation strategy is a type of gradual rollout strategy that you can configure per project and environment. It defines your most common configuration and is available as a quick option when adding strategies to flags.

Configure the default strategy

  1. Go to the project where you want to configure the default strategy.
  2. Open Settings and select Default strategy.
  3. Choose the environment you want to edit.
  4. Click Edit default strategy for <environment name>.
  5. Configure your rollout, targeting, and variants, then click Save strategy.

Add the default strategy to a flag

To add your project’s default strategy, click Add strategy and select Project default.
In environments without an active strategy, you’ll also see a suggested option to apply your default strategy directly.

Standard strategies

Gradual rollout

Roll out a feature to a percentage of your users while ensuring each user has a consistent experience. You can combine gradual rollout with targeting rules to support most rollout scenarios.

Standard on/off

Turn the feature on or off for your entire user base. For more control, we recommend using a gradual rollout strategy set to 100% instead.

Release templates

Release templates are a collection of activation strategies that let you reuse predefined rollout configurations across multiple flags. They make it easier to standardize rollout processes and reduce manual setup.

Advanced strategies

IPs

The remoteAddress strategy activates a feature flag for specific IP addresses.

Parameters:

  • IPs – List of IPs to enable the feature for.

Hosts

The applicationHostname strategy activates a feature flag for specific hostnames.

Parameters:

  • hostNames – List of hostnames to enable the feature for.

Custom strategies

note

Whenever possible, we recommend using a standard gradual rollout strategy with strategy constraints instead of defining a custom strategy. They offer similar flexibility without requiring custom code distribution within your SDKs.

Custom activation strategies let you define your own activation strategies to use with Unleash.

A strategy creation form. It has fields labeled &quot;strategy name&quot; — &quot;TimeStamp&quot; — and &quot;description&quot; — &quot;activate toggle after a given timestamp&quot;. It also has fields for a parameter named &quot;enableAfter&quot;. The parameter is of type &quot;string&quot; and the parameter description is &quot;Expected format: YYYY-MM-DD HH&quot;. The parameter is required.

When creating a custom strategy, you must set a name, optionally add a description, and define one or more parameters. The parameters are passed as arguments to your activation strategy and are available to your custom implementation in the SDK.

Parameters

A strategy with five parameters, one of each type.

Parameters define the inputs available to your strategy. Each parameter can be marked as required or optional. This setting helps users understand which fields they must complete, but users can still save the strategy without filling out required parameters.

Each parameter includes:

  • A name: Must be unique within the strategy.
  • An optional description: Explains the purpose or expected format.
  • A type: Determines the input field shown in the Admin UI and the value type in your code.

Each parameter type affects both the Admin UI control and the value representation in the JSON payload returned from the Unleash server. Actual data types depend on your SDK’s language.

By default, all parameter values are empty strings: "". If you don’t set a value, the SDK receives an empty string.

Type nameCode representationExample valueUI control
stringstring"a string"A standard input field
percentagestring representing a number between 0 and 100 (inclusive)"99"A value slider
liststring (values are comma-separated)"one,two"A multi-input text field
numberstring"123"A numeric text field
booleanstring: one of "true" or "false""true"An on/off toggle

Implementation

note

If the strategy isn’t implemented in your backend SDK, all checks using it return false because the SDK doesn’t recognize the strategy.

Custom strategies are defined on the Unleash server, but implemented in your backend SDK. All official Unleash backend SDKs provide a way to implement custom strategies. When implementing your custom strategy, you have access to both the strategy parameters and the Unleash context. See your SDK’s documentation for language-specific examples.