librato / rollout-java

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

This project is a read-only client for rollout, except that it uses Zookeeper as the backend store instead of Redis. At Librato, we use this along side of the rollout-zk plugin.

Getting started

Add the dependency to your pom.xml:

<dependency>
    <groupId>com.librato.rollout</groupId>
    <artifactId>rollout</artifactId>
    <version>0.15</version>
</dependency>

If you don't have it already, also add jackson as a dependency:

<dependency>
    <groupId>com.fasterxml.jackson.core</groupId>
    <artifactId>jackson-databind</artifactId>
    <version>2.8.5</version>
</dependency>

First create your CuratorFramework and pass that into a new RolloutZKClient along with the Zookeeper path used in rollout, then pass that along to a new RolloutClient:

CuratorFramework framework = CuratorFrameworkFactory.builder()
        .connectString("localhost:2181")
        .retryPolicy(new RetryNTimes(1, 100))
        .build();
framework.start();

RolloutClient client = new RolloutZKClient(framework, "/rollout/users");
client.start(); // You must call start for this to connect to Zookeeper and set watches

Now you may use the client to confirm feature flags for any long ID and List<String> of groups for a given user:

if (client.userFeatureActive("some_feature", myUser.getId(), myUser.getGroups()) {
    /* do something */
}

Testing

First, you must have Zookeeper running locally on localhost:2181.

mvn test

About

License:Other


Languages

Language:Java 100.0%