planout4j

Java port of Facebook's PlanOut A/B testing system with additional functionality

  • 所有者: Glassdoor/planout4j
  • 平台:
  • 许可证: Other
  • 分类:
  • 主题:
  • 喜欢:
    0
      比较:

Github星跟踪图

NOTE

This repo is not being maintained any longer. There is active fork at https://github.com/nkconnor/planout4j

Build Status
Maven Central

PlanOut4J

PlanOut4J is a Java-based implementation of Facebook's PlanOut, an A/B testing framework designed to conduct experiments on the web at scale.
PlanOut4J makes it easy to express, deploy and maintain sophisticated randomized experiments and to quickly iterate on these experiments, while satisfying the constraints of large-scale Internet services with many users.

PlanOut4J's emphasis is to enable persons who don't necessarily have comprehensive engineering background create and maintain experiments easily. To that extent, we utilize PlanOut DSL wrapped into an intuitive YAML format. Here is a simple config file describing a trivial namespace (more about namespaces below)

namespace:
  unit: userid
  segments: 100

experiment_definitions:
  - definition: Default_Experiment
    assign: !planout, button_color = '#000000';
      button_text  = 'Register';
  - definition: Button_Experiment
    assign: !planout, button_color = uniformChoice(choices=['#ff0000', '#00ff00'], unit=userid);
      button_text  = weightedChoice(choices=['Join now!', 'Sign up.'], weights=[0.7, 0.3], unit=userid);

default_experiment: Default_Experiment

experiment_sequence:
  - action: add
    definition: Button_Experiment
    name: Button_Experiment.1
    segments: 40

What's going on here?

Firstly, we need a namespace. One might think of namespaces are containers used to run multiple experiments concurrently without stepping on each others' toes where such interference is undesirable. For a particular user, only a single experiment in a given namespace can be active at any given point in time. However, the same user can participate in multiple experiments from different namespaces. We put experiments that manipulate closely related parameters into the same namespace, thus avoiding something like presenting a user with white text on white background. If we save the above YAML in a file test.yaml we have test namespace.

Within namespace config, we define the name of the input parameter which represents out primary unit of traffic segmentation (userid in this case) as well as the number of segments to split the traffic into (100). Then we define two experiments: Default_Experiment and Button_Experiment. The former is required to give all parameters initial values which are used when a user is not part of any experiment. The lines following !planout, (which represent YAML syntax for assigning a tag and expecting multiline string) are the written in the PlanOut DSL and can be as trivial or as complicated as needed. The latter experiment involves randomly assigning button color and text, with color being uniformly distributed and text having custom weights. In the last section, experiment_sequence, we "instantiate" Button_Experiment and allocate 40% of traffic to it.

Project Structure

The project is comprised of the following maven modules:

  • core - the most important module. Defines all PlanOut operations, as well as the central classes Namespace, NamespaceConfig, Experiment, and others. Does not depend on any other modules. If one wants to use PlanOut4J programmatically (i.e. without external configuration) or one already has a parsed JSON object representing namespace based on the above "schema", then one needs core module only
  • compiler - this module provide java wrapper for PlanOut compiler as well as tools and API to compile namespace YAML (see above) with embedded PlanOut DSL into JSON.
  • config - this module defines API for reading namespace configuration data from / writing to a backend. Currently file system backend and Redis backend (both used internally at Glassdoor) are provided. The module also exposes Planout4jRepository interface which acts as a facade to one or more backends. It depends on compiler for parsing the data.
  • api - this is the primary entry point. It provides NamespaceFactory interface and several implementations. It depends on config for loading up each individual namespace and maintains a cache of those keyed by name. This is what majority of developers will likely use.
  • tools - this contains all command-line tools. Tools are described in details in the usage document.
  • demos - this is what you think it is

Maven

Binary artifacts are hosted at Sonatype (OSSRH) repository and releases are propagated to Maven Central.
Too use PlanOut4J in a project, add the latest version of planout4j-api
to the dependencies in pom.xml, for ex.:

<dependency>
    <groupId>com.glassdoor.planout4j</groupId>
    <artifactId>planout4j-api</artifactId>
    <version>1.1</version>
</dependency>

The current set of snapshot artifacts is available here

Backends and Loading of Namespaces

Backend is an abstraction used to access (read/write) namespace configuration data without concern of the underlying storage mechanism.
Currently there are two types of backends:

Backends come into play in two cases:

  1. NamespaceFactory implementation uses Planout4jConfigRepositoryImpl to fetch the namespace configs (either in their source YAML form or previously compiled to JSON). Examples:
  • Redis backend serving JSON
  • File backend surving original YAML files (compiling on-demamd)
  1. ShipperTool uses Planout4jShipperImpl to get all namespaces from source backend, compile & validate them, and store in target backend. File system - to - File system and File system - to - Redis are reasonable examples of the shipper setup.

Please see the default configuration file to learn about the settings and ways to override them.

Using PlanOut4J

Please see detailed instructions here

Also please take a look at demos

If you have any questions and/or suggestions, please join PlanOut4J Google group

PlanOut4J at Glassdoor

At Glassdoor, we have been using PlanOut4J extensively for several months conducting real-life production experiments at large scale (1 mil parameter lookups per day for each of around 10 namespaces). We are very grateful to Facebook for open-sourcing the original PlanOut and we hope that our java port with additional features will help to extend these robust A/B testing ideas to many teams who use Java as the primary programming language.

More on Configuration

We actually use a pretty interesting configuration pipeline at Glassdoor. It works as following:

  • A dedicated Git repository is maintained for all namespace config (yaml) files
  • The repository is curated by data scientists and product managers
  • When a change is made on "production" branch (presumably via a pull request), a Jenkins job picks it up, and performs the following:
    • compile affected namespace(s) from YAML to JSON (with validation)
    • store the result JSON in Redis with namespace name as a part of the key
  • Our instance of RefreshingNamespaceFactory is configured to use Redis backend and every 2 mins pulls all namespace data from Redis.

This scheme allowed us to achieve high level of automation, good system of checks and balances (git), and fast performance in a distributed environment (Redis, getting data in JSON).

Overriding Parameters

Our web front-end infrastructure contains code that looks for custom planout4j headers. We use this mechanism to be able to override any parameters set in any of the experiments. This seemed to us a cleaner approach as compared to using query string (which is often transformed by existing logic). There are handy browser extensions for manipulating headers.

主要指标

概览
名称与所有者Glassdoor/planout4j
主编程语言Java
编程语言Java (语言数: 1)
平台
许可证Other
所有者活动
创建于2015-04-28 21:12:56
推送于2022-12-14 20:25:12
最后一次提交2017-11-30 08:15:56
发布数3
最新版本名称planout4j-parent-1.2 (发布于 2016-05-19 22:02:12)
第一版名称RELEASE-1.0 (发布于 2015-05-14 12:37:40)
用户参与
星数119
关注者数21
派生数48
提交数84
已启用问题?
问题数31
打开的问题数10
拉请求数19
打开的拉请求数11
关闭的拉请求数8
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?