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.
The project is comprised of the following maven modules:
core
- the most important module. Defines all PlanOut operations, as well as the central classesNamespace
,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 needscore
module onlycompiler
- 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 exposesPlanout4jRepository
interface which acts as a facade to one or more backends. It depends oncompiler
for parsing the data.api
- this is the primary entry point. It providesNamespaceFactory
interface and several implementations. It depends onconfig
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
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
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:
- File system (implementation)
- has separate properties for read (source) and write (target) use
- Redis (implementation)
Backends come into play in two cases:
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)
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.
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
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.
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).
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.