Dev guideAPI Reference
Dev guideAPI ReferenceUser GuideGitHubNuGetDev CommunityDoc feedbackLog In

How bucketing works

Overview of how bucketing assigns users to a feature rollout or an experiment for Optimizely Feature Experimentation.

📘

Note

If you are an advanced user of experiments, this detailed topic is for you. If you primarily use flag deliveries, this topic is not as relevant.

Bucketing is the process of assigning users to a flag variation according to the flag rules. The Optimizely Feature Experimentation SDKs evaluate user IDs and attributes to determine which variation they should see.

Bucketing is:

  • Deterministic – A user sees the same variation across all devices they use every time they see your experiment, thanks to how we hash user IDs. In other words, a returning user is not reassigned to a new variation.
  • Sticky unless reconfigured – If you reconfigure a "live," running flag rule, for example by decreasing and then increasing traffic, a user may get rebucketed into a different variation.

How users are bucketed

During bucketing, the SDKs rely on the MurmurHash function to hash the user ID and experiment ID to an integer that maps to a bucket range, which represents a variation. MurmurHash is deterministic, so a user ID will always map to the same variation as long as the experiment conditions don’t change. This also means that any SDK will always output the same variation, as long as user IDs and user attributes are consistently shared between systems.

For example, imagine you are running an experiment with two variations (A and B), with an experiment traffic allocation of 40%, and a 50/50 distribution between the two variations. Optimizely will assign each user a number between 0 and 10000 to determine if they qualify for the experiment, and if so, which variation they will see. If they are in buckets 0 to 1999, they see variation A; if they are in buckets 2000 to 3999, they see variation B. If they are in buckets 4000 to 10000, they will not participate in the experiment at all. These bucket ranges are deterministic: if a user falls in bucket 1083, they will always be in bucket 1083.

This operation is highly efficient because it occurs in memory, and there is no need to block on a request to an external service. It also permits bucketing across channels and multiple languages, as well as experimenting without strong network connectivity.

See also Interactions between flag rules.

Changing traffic can rebucket users

The most common way to change "live" traffic for an enabled feature flag is to increase it. In this scenario, you can monotonically increase overall traffic without rebucketing users.

However, if you change traffic non-montonically (for example, decreasing, then increasing traffic), then your users can get rebucketed. In an ideal world, you avoid non-montonical traffic changes for a running experiment, because it can result in statistically invalid metrics. One exception is if you're using our Stats Accelerator (typically as part of a mature progressive delivery culture). If you're using Stats Accelerator or otherwise need to change "live" experiment traffic, you can ensure sticky user variation assignments by implementing a user profile service. For more information, see user profile service. User profile service is compatible with experiments, not with flag deliveries.

Reconfiguring delivery trafficDo users get rebucketed?
Increase overall traffic monotonicallyNo
Existing users aren't rebucketed.
Change traffic non-monotonicallyYes
For example, if you start with 80% of an audience, then reduce the traffic to 50%, then increase back to 80%, users previously exposed to the flag may no longer see it when you increase the percentage again. However, if you toggle the delivery on and off without changing traffic, the same users see the flag.
Reconfiguring experiment trafficDo users get rebucketed?*
Increase overall traffic allocation monotonicallyNo
Pause variations in the experiment (by setting traffic to 0% for the variation)Yes
Change overall traffic allocation non-monotonicallyYes
Change traffic distribution between variations or add/remove variationsYes
Reconfiguring mutually exclusive experiment groupsDo users get rebucketed?*
Increase overall traffic allocation for each experiment monotonicallyNo
Pause/play experiments in the groupNo
Change overall traffic allocation for each experiment non-monotonicallyYes
Change traffic distribution between experiments or add/remove experiments in the exclusion groupYes

/* To avoid rebucketing, implement a user profile service. User profile service is not compatible with rollouts.

Rebucketing example

Let's look at a detailed example of how Optimizely attempts to preserve bucketing if you reconfigure a running experiment.

Imagine you are running an experiment with two variations (A and B), with a total experiment traffic allocation of 40%, and a 50/50 distribution between the two variations. In this example, if you change the experiment allocation to any percentage except 0%, Optimizely ensures that all variation bucket ranges are preserved whenever possible to ensure that users will not be re-bucketed into other variations. If you add variations and increase the overall traffic, Optimizely will try to put the new users into the new variation without re-bucketing existing users.

To continue the example, if you change variation traffic from 40% to 0%, Optimizely will not preserve your variation bucket ranges. After changing the experiment allocation to 0%, if you change it again, perhaps to 50%, Optimizely starts the assignment process for each user from scratch: Optimizely will not preserve the variation bucket ranges from the 40% setting.

To completely prevent variation reassignments, implement sticky bucketing with the User Profile Service, which uses a caching layer to persist user IDs to variation assignments.

End-to-end bucketing workflow

The following table highlights how various user-bucketing methods interact with each other:

User bucketing methodevaluates after these:evaluates before these:
Forced variation

  • N/A


  • User allowlisting

  • User profile service

  • Audience targeting

  • Exclusion groups

  • Traffic allocation

User allowlisting

  • Forced variation


  • User profile service

  • Audience targeting

  • Exclusion groups

  • Traffic allocation

User profile service

  • Forced variation

  • User allowlisting


  • Audience targeting

  • Exclusion groups

  • Traffic allocation

Exclusion groups

  • Forced variation

  • User allowlisting

  • Usr profile service

  • Audience targeting


  • Traffic allocation

Traffic allocation

  • Forced variation
  • User allowlisting

  • User profile service

  • Audience targeting

  • Exclusion groups


  • N/A

🚧

Important

If there is a conflict over how a user should be bucketed, then the first user-bucketing method to be evaluated overrides any conflicting method.

Let us walk through how the SDK evaluates a decision. This chart serves as a comprehensive example that explores all possible factors, including QA tools like specific users and forced variations.

  1. The Decide call is executed and the SDK begins its bucketing process.
  2. The SDK ensures that the flag rule is running.
  3. If the user is in an experiment rule, the SDK compares the user ID to the Allowlisting. The specific users in the list are forced into a variation.
  4. If provided, the SDK checks the User Profile Service implementation to determine whether a profile exists for this user ID. If it does, the variation is immediately returned and the evaluation process ends. Otherwise, proceed to step 5.
  5. The SDK examines audience conditions based on the user attributes provided. If the user meets the criteria for inclusion in the target audience, the SDK will continue with the evaluation; otherwise, the user will no longer be considered eligible for the experiment.
  6. The hashing function returns an integer value that maps to a bucket range. The ranges are based on the traffic allocation breakdowns set in the Optimizely dashboard, and each corresponds with a specific variation assignment.
  7. (Beta) If you use a bucketing ID, the SDK will hash the bucketing ID (instead of the user ID) with the experiment ID and return a variation.
Select image to enlarge

Select image to enlarge