diff --git a/README.md b/README.md index 49c2ec6f..f26c87c6 100644 --- a/README.md +++ b/README.md @@ -32,6 +32,7 @@ Here are some of the benefits of using this library: * [Built-in Feature Filters](#built-in-Feature-Filters) * [Targeting](#targeting) * [Targeting Exclusion](#targeting-exclusion) +* [Variants](#variants) * [Caching](#caching) * [Custom Feature Providers](#custom-feature-providers) @@ -139,6 +140,25 @@ A `RequirementType` of `All` changes the traversal. First, if there are no filte In the above example, `FeatureW` specifies a `RequirementType` of `All`, meaning all of it's filters must evaluate to true for the feature to be enabled. In this case, the feature will be enabled for 50% of users during the specified time window. +### Status + + +`Status` is an optional property of a feature flag that controls how a flag's enabled state is evaluated. By default, the status of a flag is `Conditional`, meaning that feature filters should be evaluated to determine if the flag is enabled. If the `Status` of a flag is set to `Disabled` then feature filters are not evaluated and the flag is always considered to be disabled. + + +``` +"FeatureX": { + "Status": "Disabled", + "EnabledFor": [ + { + "Name": "AlwaysOn" + } + ] +} +``` + +In this example, even though the `AlwaysOn` filter would normally always make the feature enabled, the `Status` property is set to `Disabled`, so this feature will always be disabled. + ### Referencing To make it easier to reference these feature flags in code, we recommend to define feature flag variables like below. @@ -636,6 +656,157 @@ When defining an Audience, users and groups can be excluded from the audience. T In the above example, the feature will be enabled for users named `Jeff` and `Alicia`. It will also be enabled for users in the group named `Ring0`. However, if the user is named `Mark`, the feature will be disabled, regardless if they are in the group `Ring0` or not. Exclusions take priority over the rest of the targeting filter. +## Variants + +When new features are added to an application, there may come a time when a feature has multiple different proposed design options. A common solution for deciding on a design is some form of A/B testing, which involves providing a different version of the feature to different segments of the user base and choosing a version based on user interaction. In this library, this functionality is enabled by representing different configurations of a feature with variants. + +Variants enable a feature flag to become more than a simple on/off flag. A variant represents a value of a feature flag that can be a string, a number, a boolean, or even a configuration object. A feature flag that declares variants should define under what circumstances each variant should be used, which is covered in greater detail in the [Allocating a Variant](./README.md#allocating-a-variant) section. + +``` C# +public class Variant +{ + /// + /// The name of the variant. + /// + public string Name { get; set; } + + /// + /// The configuration of the variant. + /// + public IConfigurationSection Configuration { get; set; } +} +``` + +### Getting a Feature's Variant + +A feature's variant can be retrieved using the `IVariantFeatureManager`'s `GetVariantAsync` method. + +``` C# +… +IVariantFeatureManager featureManager; +… +Variant variant = await featureManager.GetVariantAsync(MyFeatureFlags.FeatureU); + +IConfigurationSection variantConfiguration = variant.Configuration; + +// Do something with the resulting variant and its configuration +``` + +### Setting a Variant's Configuration + +For each of the variants in the `Variants` property of a feature, there is a specified configuration. This can be set using either the `ConfigurationReference` or `ConfigurationValue` properties. `ConfigurationReference` is a string path that references a section of the current configuration that contains the feature flag declaration. `ConfigurationValue` is an inline configuration that can be a string, number, boolean, or configuration object. If both are specified, `ConfigurationValue` is used. If neither are specified, the returned variant's `Configuration` property will be null. + +``` +"Variants": [ + { + "Name": "Big", + "ConfigurationReference": "ShoppingCart:Big" + }, + { + "Name": "Small", + "ConfigurationValue": { + "Size": 300 + } + } +] +``` + +### Allocating a Variant + +The process of allocating a variant to a specific feature is determined by the `Allocation` property of the feature. + +``` +"Allocation": { + "DefaultWhenEnabled": "Small", + "DefaultWhenDisabled": "Small", + "User": [ + { + "Variant": "Big", + "Users": [ + "Marsha" + ] + } + ], + "Group": [ + { + "Variant": "Big", + "Groups": [ + "Ring1" + ] + } + ], + "Percentile": [ + { + "Variant": "Big", + "From": 0, + "To": 10 + } + ], + "Seed": "13973240" +}, +"Variants": [ + { + "Name": "Big", + "ConfigurationReference": "ShoppingCart:Big" + }, + { + "Name": "Small", + "ConfigurationValue": "300px" + } +] +``` + +The `Allocation` setting of a feature flag has the following properties: + +| Property | Description | +| ---------------- | ---------------- | +| `DefaultWhenDisabled` | Specifies which variant should be used when a variant is requested while the feature is considered disabled. | +| `DefaultWhenEnabled` | Specifies which variant should be used when a variant is requested while the feature is considered enabled and no variant was allocated to the user. | +| `User` | Specifies a variant and a list of users for which that variant should be used. | +| `Group` | Specifies a variant and a list of groups the current user has to be in for that variant to be used. | +| `Percentile` | Specifies a variant and a percentage range the user's calculated percentage has to fit into for that variant to be used. | +| `Seed` | The value which percentage calculations for `Percentile` are based on. The percentage calculation for a specific user will be the same across all features if the same `Seed` value is used. If no `Seed` is specified, then a default seed is created based on the feature name. | + +In the above example, if the feature is not enabled, `GetVariantAsync` would return the variant allocated by `DefaultWhenDisabled`, which is `Small` in this case. + +If the feature is enabled, the feature manager will check the `User`, `Group`, and `Percentile` allocations in that order to allocate a variant for this feature. If the user being evaluated is named `Marsha`, in the group named `Ring1`, or the user happens to fall between the 0 and 10th percentile calculated with the given `Seed`, then the specified variant is returned for that allocation. In this case, all of these would return the `Big` variant. If none of these allocations match, the `DefaultWhenEnabled` variant is returned, which is `Small`. + +Allocation logic is similar to the [Microsoft.Targeting](./README.md#MicrosoftTargeting) feature filter, but there are some parameters that are present in targeting that aren't in allocation, and vice versa. The outcomes of targeting and allocation are not related. + +### Overriding Enabled State with a Variant + +You can use variants to override the enabled state of a feature flag. This gives variants an opportunity to extend the evaluation of a feature flag. If a caller is checking whether a flag that has variants is enabled, then variant allocation will be performed to see if an allocated variant is set up to override the result. This is done using the optional variant property `StatusOverride`. By default, this property is set to `None`, which means the variant doesn't affect whether the flag is considered enabled or disabled. Setting `StatusOverride` to `Enabled` allows the variant, when chosen, to override a flag to be enabled. Setting `StatusOverride` to `Disabled` provides the opposite functionality, therefore disabling the flag when the variant is chosen. A feature with a `Status` of `Disabled` cannot be overridden. + +``` +"Allocation": { + "Percentile": [{ + "Variant": "On", + "From": 10, + "To": 20 + }], + "DefaultWhenEnabled": "Off", + "Seed": "Enhanced-Feature-Group" +}, +"Variants": [ + { + "Name": "On", + "ConfigurationValue": true + }, + { + "Name": "Off", + "ConfigurationValue": false, + "StatusOverride": "Disabled" + } +], +"EnabledFor": [ + { + "Name": "AlwaysOn" + } +] +``` + +In the above example, the feature is enabled by the `AlwaysOn` filter. If the current user is in the calculated percentile range of 10 to 20, then the `On` variant is returned. Otherwise, the `Off` variant is returned and because `StatusOverride` is equal to `Disabled`, the feature will now be considered disabled. + ## Caching Feature state is provided by the IConfiguration system. Any caching and dynamic updating is expected to be handled by configuration providers. The feature manager asks IConfiguration for the latest value of a feature's state whenever a feature is checked to be enabled.