No results for ""
EXPAND ALL
  • Home
  • API docs

Randomization units

Read time: 5 minutes
Last edited: Aug 15, 2024

Overview

This topic explains what randomization units are and how to use them in LaunchDarkly Experimentation.

An experiment's randomization unit is the context kind the experiment uses to assign traffic to each of its variations. For example, if you choose the user context kind as an experiment's randomization unit, then the experiment will divide contexts into the experiment's variations by individual users.

Randomization units in experiments

Before you begin an experiment, you must:

  • choose an industry-standard randomization unit for the experiment,
  • map the randomization unit to an appropriate context kind,
  • map the context kind to the appropriate metrics, then
  • add the randomization unit to the experiment.

These steps are explained below.

Industry standard randomization units

There are six industry-standard randomization units that you can use in Experimentation:

  • user
  • user-time
  • guest
  • guest-time
  • organization
  • request

LaunchDarkly limits experiments to randomizing by these six industry-standard units because other units might result in invalid results. If you have a context kind that doesn't logically map to one of these industry-standard units, it may not be appropriate to use as a randomization unit. For examples of common context kind mapping, read the table in Map randomization units to context kinds.

For example, if you tried to use "country" as a randomization unit, your experiment would serve the same variation to everyone in a particular country. If your experiment had end users in the United States, Mexico, and Canada, the experiment might serve variation A to all end users in the United States and Canada, and variation B to all end users in Mexico. This could result in significantly uneven numbers of end users in each variation, and each variation would not include a random sampling of end users. At the end of the experiment, there would be no way to tell if variation A or B performed better in any given country.

Instead, if you wanted to view results by country, you could slice your results by context attribute. To learn more, read Slicing experiment results.

Map randomization units to context kinds

The built-in user context kind is automatically mapped to the user standard randomization unit. If you have created additional context kinds you want to use in experiments, then you must first map them to one of the standard randomization units. Multiple context kinds can be mapped to the same standard randomization unit. To learn how, read Creating context kinds.

Here is an example of mapping a new context kind of "customer" to the randomization unit "user":

The "New context kind" dialog with the randomization unit mapping field called out.
The "New context kind" dialog with the randomization unit mapping field called out.


This table includes the industry-standard randomization units and example context kinds that might be associated with them:

Standard randomization unitExample context kind mappingsDescription
Useruser, member, customerFor each person that encounters your feature, randomly choose a variation for that particular person
User-Timeuser+hour-of-day, user+day-of-week

Takes the form of a composite key of user-key and time-at-some-granularity
For each person that encounters your feature at a particular time of day or on a particular day of the week, randomly choose a variation for that person/time combination
Guestdevice, cookie, session, logged-out user, guest, non-authorized userFor each non-logged-in person that encounters your feature, randomly choose a variation for that particular guest
Guest-timeguest+hour-of-day, guest+day-of-week

Takes the form of a composite key of guest-key and time-at-some-granularity
For each non-logged-in person that encounters your feature at a particular time of day or on a particular day of the week, randomly choose a variation for that guest/time combination
Organizationorganization, company, businessFor each organization that encounters your feature, randomly choose a variation for that organization
RequestHTTP request, operation, transaction, interactionFor each particular action that someone performs on your platform, randomly choose a variation for that particular request, operation, or action
Experiments must use valid randomization units

If you're unsure of which randomization unit to map to your context kind, start a Support ticket for help.

Map randomization units to metrics

When you create a metric, you must map the new metric to a context kind you have marked as available for experiments:

The "Metric information" panel with the randomization unit mapping field called out.
The "Metric information" panel with the randomization unit mapping field called out.

This context kind determines which randomization units the metric is compatible with. To learn more, read Metrics.

Choose randomization units for experiments

Finally, when you create an experiment, you will choose a randomization unit that determines both:

  • which context kind the experiment will allocate traffic to different variations by, and
  • which metrics you can use in the experiment.

In this example, the experiment has a randomization unit of user. It is compatible with the chosen metric, because the metric can measure events from user context kinds.

The experiment creation screen with the randomization unit for the experiment called out.
The experiment creation screen with the randomization unit for the experiment called out.

Using randomization units with multi-contexts

Expand the example below to see how you can use different randomization units within the same experiment.

Using randomization units with multi-contexts

Imagine users Anne and Jesse both work for the same organization, and are part of an experiment comparing two variations. Both Anne and Jesse are each part of a different multi-context, with different user keys but the same organization key.

Here is what their multi-contexts would look like:

"context": {
"kind": "multi",
"user": {
"key": "user-key-anna", // Anna has a unique user key
"name": "Anna",
},
"organization": {
"key": "org-key-global-health", // The org key is the same in both multi-contexts
"name": "Global Health Services",
}
}
"context": {
"kind": "multi",
"user": {
"key": "user-key-jesse", // Jesse has a unique user key
"name": "Jesse",
},
"organization": {
"key": "org-key-global-health", // The org key is the same in both multi-contexts
"name": "Global Health Services",
}
}

There are two ways you could randomize the multi-contexts in an experiment:

  • if you randomize by user, Anna could be assigned to one variation, and Jesse could be assigned to the other variation because they have different user keys
  • if you randomize by organization, Anna and Jesse will both always be assigned to the same variation because they share the same organization key