Skip to main content
Version: v1.46.0

JAVA

Maven Central Version

The Java provider for GO Feature Flag is a server provider that allows you to evaluate feature flags in your Java application. It allows you to:

  • Manage the integration of the OpenFeature Java SDK and GO Feature Flag relay-proxy.
  • 2 types of evaluations available:
    • In process: fetch the flag configuration from the GO Feature Flag relay-proxy API and evaluate the flags directly in the provider.
    • Remote: Call the GO Feature Flag relay-proxy for each flag evaluation.
  • Collect and send evaluation data to the GO Feature Flag relay-proxy for statistics and monitoring purposes.
  • Support the OpenFeature tracking API to associate metrics or KPIs with feature flag evaluation contexts.

Install dependencies

The first thing we will do is install the Open Feature SDK and the GO Feature Flag provider.

<dependency>
<groupId>dev.openfeature</groupId>
<artifactId>sdk</artifactId>
<artifactId>1.15.1</artifactId>
</dependency>
<dependency>
<groupId>dev.openfeature.contrib.providers</groupId>
<artifactId>go-feature-flag</artifactId>
<version>0.4.3</version>
</dependency>

Getting started

Initialize the provider

GO Feature Flag provider needs to be created and then set in the global OpenFeatureAPI.

The only required option to create a GoFeatureFlagProvider is the endpoint to your GO Feature Flag relay-proxy instance.

import dev.openfeature.contrib.providers.gofeatureflag;
//...

FeatureProvider provider = new GoFeatureFlagProvider(
GoFeatureFlagProviderOptions.builder()
.endpoint("https://my-instance.gofeatureflag.org")
.build());

OpenFeatureAPI.getInstance().setProviderAndWait(provider);
// ...
Client client = OpenFeatureAPI.getInstance().getClient("my-goff-provider");

// targetingKey is mandatory for each evaluation
String targetingKey = "ad0c6f75-f5d6-4b17-b8eb-6c923d8d4698";
EvaluationContext evaluationContext = new ImmutableContext(targetingKey);

// Example of a boolean flag evaluation
FlagEvaluationDetails<Boolean> booleanFlagEvaluation = client.getBooleanValue("bool_targeting_match", false, evaluationContext);

The evaluation context is the way for the client to specify contextual data that GO Feature Flag uses to evaluate the feature flags, it allows to define rules on the flag.

The targetingKey is mandatory for GO Feature Flag in order to evaluate the feature flag, it could be the id of a user, a session ID or anything you find relevant to use as identifier during the evaluation.

Configure the provider

You can configure the provider with several options to customize its behavior. The following options are available:

namemandatoryDescription
endpointtrueendpoint contains the DNS of your GO Feature Flag relay proxy (ex: https://mydomain.com/gofeatureflagproxy/)
evaluationTypefalseevaluationType is the type of evaluation you want to use.
  • If you want to have a local evaluation, you should use IN_PROCESS.
  • If you want to have an evaluation on the relay-proxy directly, you should use REMOTE.
Default: IN_PROCESS
timeoutfalsetimeout in millisecond we are waiting when calling the relay proxy API. (default: 10000)
maxIdleConnectionsfalsemaxIdleConnections is the maximum number of connections in the connection pool. (default: 1000)
keepAliveDurationfalsekeepAliveDuration is the time in millisecond we keep the connection open. (default: 7200000 (2 hours))
apiKeyfalseIf the relay proxy is configured to authenticate the requests, you should provide an API Key to the provider. Please ask the administrator of the relay proxy to provide an API Key. (This feature is available only if you are using GO Feature Flag relay proxy v1.7.0 or above). (default: null)
flushIntervalMsfalseinterval time we publish statistics collection data to the proxy. The parameter is used only if the cache is enabled, otherwise the collection of the data is done directly when calling the evaluation API. default: 1000 ms
maxPendingEventsfalsemax pending events aggregated before publishing for collection data to the proxy. When event is added while events collection is full, event is omitted. (default: 10000)
disableDataCollectionfalseset to true if you don't want to collect the usage of flags retrieved in the cache. (default: false)
exporterMetadatafalseexporterMetadata is the metadata we send to the GO Feature Flag relay proxy when we report the evaluation data usage.
evaluationFlagListfalseIf you are using in process evaluation, by default we will load in memory all the flags available in the relay proxy. If you want to limit the number of flags loaded in memory, you can use this parameter. By setting this parameter, you will only load the flags available in the list.

If null or empty, all the flags available in the relay proxy will be loaded.

flagChangePollingIntervalMsfalseinterval time we poll the proxy to check if the configuration has changed. It is used for the in process evaluation to check if we should refresh our internal cache. default: 120000

Evaluate your flag

This code block explain how you can create an EvaluationContext and use it to evaluate your flag.

note

In this example we are evaluating a boolean flag, but other types are available.

Refer to the Open Feature documentation to know more about it.

// Context of your flag evaluation.
// With GO Feature Flag you MUST have a targetingKey that is a unique identifier of the user.
EvaluationContext userContext = new MutableContext("1d1b9238-2591-4a47-94cf-d2bc080892f1")
.add("firstname", "john")
.add("lastname", "doe")
.add("email","john.doe@gofeatureflag.org")
.add("admin", true)
.add("anonymous", false);

Boolean adminFlag = featureFlagClient.getBooleanValue("flag-only-for-admin", false, userContext);
if (adminFlag) {
// flag "flag-only-for-admin" is true for the user
} else {
// flag "flag-only-for-admin" is false for the user
}

Breaking changes

1.0.0 - Introduce In Process Evaluation

warning

This version of the provider requires to use GO Feature Flag relay-proxy v1.45.0 or above. If you have an older version of the relay-proxy, please use the version 0.4.3 of the provider.

The version 1.0.0 of the provider introduces the in process evaluation.
This evaluation type is more efficient than the remote evaluation because it doesn't require to call the relay-proxy API for each flag evaluation.

This is a new major version, some features have been added and some have been deprecated.

0.4.0 - Cache Implementation Change: Guava to Caffeine

In this release, we have updated the cache implementation from Guava to Caffeine. This change was made because Caffeine is now the recommended caching solution by the maintainers of Guava due to its performance improvements and enhanced features.

Because of this, the cache configuration on GoFeatureFlagProviderOptions that used Guava's CacheBuilder is now handled by Caffeine.

How to migrate

Configuration cache with Guava used to be like this:

import com.google.common.cache.CacheBuilder;
// ...
CacheBuilder guavaCacheBuilder = CacheBuilder.newBuilder()
.initialCapacity(100)
.maximumSize(2000);

FeatureProvider provider = new GoFeatureFlagProvider(
GoFeatureFlagProviderOptions
.builder()
.endpoint("https://my-gofeatureflag-instance.org")
.cacheBuilder(guavaCacheBuilder)
.build());

OpenFeatureAPI.getInstance().setProviderAndWait(provider);

// ...

Now with Caffeine it should be like this:

import com.github.benmanes.caffeine.cache.Caffeine;
// ...
Caffeine caffeineCacheConfig = Caffeine.newBuilder()
.initialCapacity(100)
.maximumSize(2000);

FeatureProvider provider = new GoFeatureFlagProvider(
GoFeatureFlagProviderOptions
.builder()
.endpoint("https://my-gofeatureflag-instance.org")
.cacheConfig(caffeineCacheConfig)
.build());

OpenFeatureAPI.getInstance().setProviderAndWait(provider);

// ...

For a complete list of customizations options available in Caffeine, please refer to the Caffeine documentation for more details.

Features status

StatusFeatureDescription
Remote EvaluationThe provider is calling the remote server to evaluate the feature flags.
Tracking Flag EvaluationThe provider is tracking all the evaluations of your feature flags and you can export them using an exporter.
Configuration Change UpdatesThe provider is able to update the configuration based on the configuration, it means that the provider is able to react to any feature flag change on your configuration.
Provider Events ReactionsYou can add an event handler to the provider to react to the provider events.
ImplementedIn-progressNot implemented yet

Contribute to the provider

You can find the source of the provider in the open-feature/java-sdk-contrib repository.