This provider allows for using LaunchDarkly with the OpenFeature SDK for Java.
This provider is designed primarily for use in multi-user systems such as web servers and applications. It follows the server-side LaunchDarkly model for multi-user contexts. It is not intended for use in desktop and embedded systems applications.
LaunchDarkly is a feature management platform that serves trillions of feature flags daily to help teams build better software, faster. Get started using LaunchDarkly today!
This version of the LaunchDarkly provider works with Java 11 and above.
Your project will need compatible versions of the LaunchDarkly Server-Side SDK for Java as well as the OpenFeature java-sdk.
Example gradle dependencies:
implementation group: 'com.launchdarkly', name: 'launchdarkly-java-server-sdk', version: '[7.1.0, 8.0.0)'
implementation 'dev.openfeature:sdk:[1.7.0,2.0.0)'
First, install the LaunchDarkly OpenFeature provider for the Server-Side SDK for Java as a dependency in your application using your application's dependency manager.
<dependency>
<groupId>com.launchdarkly</groupId>
<artifactId>launchdarkly-openfeature-serverprovider</artifactId>
<version>0.1.0</version> <!-- use current version number -->
</dependency>
implementation group: 'com.launchdarkly', name: 'launchdarkly-openfeature-serverprovider', version: '0.1.0'
// Use current version number in place of 0.1.0.
import dev.openfeature.sdk.OpenFeatureAPI;
import com.launchdarkly.sdk.server.LDClient;
import com.launchdarkly.openfeature.serverprovider.Provider;
public class Main {
public static void main(String[] args) {
OpenFeatureAPI.getInstance().setProvider(new Provider("my-sdk-key"));
// Refer to OpenFeature documentation for getting a client and performing evaluations.
}
}
Refer to the SDK reference guide for instructions on getting started with using the SDK.
For information on using the OpenFeature client please refer to the OpenFeature Documentation.
LaunchDarkly evaluates contexts, and it can either evaluate a single-context, or a multi-context. When using OpenFeature both single and multi-contexts must be encoded into a single EvaluationContext
. This is accomplished by looking for an attribute named kind
in the EvaluationContext
.
There are 4 different scenarios related to the kind
:
- There is no
kind
attribute. In this case the provider will treat the context as a single context containing a "user" kind. - There is a
kind
attribute, and the value of that attribute is "multi". This will indicate to the provider that the context is a multi-context. - There is a
kind
attribute, and the value of that attribute is a string other than "multi". This will indicate to the provider a single context of the kind specified. - There is a
kind
attribute, and the attribute is not a string. In this case the value of the attribute will be discarded, and the context will be treated as a "user". An error message will be logged.
The kind
attribute should be a string containing only contain ASCII letters, numbers, .
, _
or -
.
The OpenFeature specification allows for an optional targeting key, but LaunchDarkly requires a key for evaluation. A targeting key must be specified for each context being evaluated. It may be specified using either targetingKey
, as it is in the OpenFeature specification, or key
, which is the typical LaunchDarkly identifier for the targeting key. If a targetingKey
and a key
are specified, then the targetingKey
will take precedence.
There are several other attributes which have special functionality within a single or multi-context.
- A key of
privateAttributes
. Must be an array of string values. Equivalent to the 'privateAttributes' builder method in the SDK. - A key of
anonymous
. Must be a boolean value. Equivalent to the 'anonymous' builder method in the SDK. - A key of
name
. Must be a string. Equivalent to the 'name' builder method in the SDK.
The LaunchDarkly supports Initialization and Shutdown using the OpenFeature API. The provider begins initialization as soon as it is constructed, and the underlying LaunchDarkly SDK will block execution based on the configured start wait time. If you wish to defer the blocking behavior, then you can use the startWait
function when building the LDConfig
.
OpenFeature will report when the provider is ready, and additionally the setProviderAndWait
function of the OpenFeature
API can be used to wait until the provider is ready, or it has encountered a permanent error.
It the provider has been shutdown, because the OpenFeature API has been shutdown, or because the provider was no longer in use by the OpenFeature API, then the underlying LaunchDarkly SDK will be closed.
This is an important consideration if you are using the getLdClient
method of the provider to access the underlying SDK instance.
EvaluationContext context = new ImmutableContext("the-key");
EvaluationContext context = new ImmutableContext("org-key", new HashMap(){{
put("kind", new Value("organization"));
}});
EvaluationContext context = new ImmutableContext(new HashMap() {{
put("kind", new Value("multi"));
put("organization", new Value(new ImmutableStructure(new HashMap(){{
put("name", new Value("the-org-name"));
put("targetingKey", new Value("my-org-key"));
put("myCustomAttribute", new Value("myAttributeValue"));
}})));
put("user", new Value(new ImmutableStructure(new HashMap(){{
put("key", new Value("my-user-key"));
put("anonymous", new Value(true));
}})));
}});
EvaluationContext context = new ImmutableContext("org-key", new HashMap(){{
put("kind", new Value("organization"));
put("myCustomAttribute", new Value("myAttributeValue"));
put("privateAttributes", new Value(new ArrayList<Value>() {{
add(new Value("myCustomAttribute"));
}}));
}});
EvaluationContext evaluationContext = new ImmutableContext(new HashMap() {{
put("kind", new Value("multi"));
put("organization", new Value(new ImmutableStructure(new HashMap(){{
put("name", new Value("the-org-name"));
put("targetingKey", new Value("my-org-key"));
// This will ONLY apply to the "organization" attributes.
put("privateAttributes", new Value(new ArrayList<Value>() {{
add(new Value("myCustomAttribute"));
}}));
// This attribute will be private.
put("myCustomAttribute", new Value("myAttributeValue"));
}})));
put("user", new Value(new ImmutableStructure(new HashMap(){{
put("key", new Value("my-user-key"));
put("anonymous", new Value(true));
// This attribute will not be private.
put("myCustomAttribute", new Value("myAttributeValue"));
}})));
}});
Read our documentation for in-depth instructions on configuring and using LaunchDarkly. You can also head straight to the complete reference guide for this SDK.
The authoritative description of all properties and methods is in the java documentation.
We encourage pull requests and other contributions from the community. Check out our contributing guidelines for instructions on how to contribute to this SDK.
- LaunchDarkly is a continuous delivery platform that provides feature flags as a service and allows developers to iterate quickly and safely. We allow you to easily flag your features and manage them from the LaunchDarkly dashboard. With LaunchDarkly, you can:
- Roll out a new feature to a subset of your users (like a group of users who opt-in to a beta tester group), gathering feedback and bug reports from real-world use cases.
- Gradually roll out a feature to an increasing percentage of users, and track the effect that the feature has on key metrics (for instance, how likely is a user to complete a purchase if they have feature A versus feature B?).
- Turn off a feature that you realize is causing performance problems in production, without needing to re-deploy, or even restart the application with a changed configuration file.
- Grant access to certain features based on user attributes, like payment plan (eg: users on the ‘gold’ plan get access to more features than users in the ‘silver’ plan). Disable parts of your application to facilitate maintenance, without taking everything offline.
- LaunchDarkly provides feature flag SDKs for a wide variety of languages and technologies. Check out our documentation for a complete list.
- Explore LaunchDarkly
- launchdarkly.com for more information
- docs.launchdarkly.com for our documentation and SDK reference guides
- apidocs.launchdarkly.com for our API documentation
- blog.launchdarkly.com for the latest product updates