To read about how to use mutually exclusive groups for web experimentation instead, refer to this help doc.

Setting up mutually exclusive groups
- Define the experiment group: Determine which feature flags (and their experiments) should be mutually exclusive. For example, all experiments modifying the checkout flow could be grouped together.
- Tag the experiment: Use the naming convention “ME-GROUP-{GROUP NAME}” to tag each experiment in the group, such as ME-GROUP-A. This tells Kameleoon to enforce mutual exclusivity within the group.
- You can tag flags at creation, or by clicking an existing flag’s three-dots menu and selecting Manage tags.
Example of a mutually exclusive group
Imagine you are testing different variations of your checkout experience:- Group A: Experiment 1 (new checkout flow) and Experiment 2 (one-click checkout)
- Group B: Experiment 3 (up-sell recommendations) and Experiment 4 (discount banner placement)
- A visitor will see either Experiment 1 or Experiment 2 from Group A, but not both.
- The same visitor may see either Experiment 3 or Experiment 4 from Group B, but not both.
How exposure percentages interact with a MEG
Exposure percentages set on individual experiments are not applied independently to each experiment’s full traffic when those experiments belong to the same mutually exclusive group. The MEG first decides which single experiment a visitor is eligible for within the group, and the experiment’s own exposure percentage is then applied on top of that allocation. Each experiment in a MEG receives roughly an equal share of the eligible group population (for example, one third if the group contains three experiments), regardless of the individual exposure settings.Example
Imagine three experiments in the same MEG, each running on a different page that receives 200,000 requests:| Experiment | Page traffic | Exposure | Exposed visitors |
|---|---|---|---|
| Experiment A | 200k | 10% | 200k × 1/3 × 10% ≈ 6.7k |
| Experiment B | 200k | 30% | 200k × 1/3 × 30% ≈ 20k |
| Experiment C | 200k | 60% | 200k × 1/3 × 60% ≈ 40k |
Because a MEG splits eligible traffic across the group before exposure is applied, MEGs are best suited for experiments that can overlap and need to be made mutually exclusive — typically experiments running on the same page or surface.