Skip to content

PoC: GitLab A/B testing

Shinya Maeda requested to merge poc-gitlab-ab-testing into master

What does this MR do?

How Unleash Variant works

VariantDefinition:
  - name: String
    weight: Int               # This weight is controlled by the Unleash Context (e.g. 'userId')
    payload: String
    overrides:
      - context_name: String (Enum: 'userId', 'sessionId', 'remoteAddress', etc)
        values: Array<String>

Process:

  1. Evaluates overrides. If matches, returns the name.
  2. Evaluates weight.
  3. If it doesn't match, it falls back to a default.

Example:

- name: 'blue'
  weight: 50
  payload:
    color: blue
  overrides:
    - context_name: String (Enum: 'userId', 'sessionId', 'remoteAddress', etc)
      values: Array<String>
- name: 'red'
  weight: 50
  payload:
    color: red
  overrides:
    - context_name: String (Enum: 'userId', 'sessionId', 'remoteAddress', etc)
      values: Array<String>

screenshot_176

References

Screenshots (strongly suggested)

Does this MR meet the acceptance criteria?

Conformity

Availability and Testing

Security

If this MR contains changes to processing or storing of credentials or tokens, authorization and authentication methods and other items described in the security review guidelines:

  • Label as security and @ mention @gitlab-com/gl-security/appsec
  • The MR includes necessary changes to maintain consistency between UI, API, email, or other methods
  • Security reports checked/validated by a reviewer from the AppSec team
Edited by Shinya Maeda

Merge request reports