Movatterモバイル変換


[0]ホーム

URL:


Dev guideRecipesAPI ReferenceChangelog
Dev guideAPI ReferenceRecipesChangelogUser GuideGitHubDev CommunityOptimizely AcademySubmit a ticketLog InFeature Experimentation
Dev guide
All
Pages
Start typing to search…

Initialize the Java SDK

How to initialize the Optimizely Feature Experimentation Java SDK in your application.

Use the Optimizely Builder to initialize the Java SDK and instantiate an instance of the Optimizely client class that exposes API methods like the Decide methods.

Version

v4.0.0 and higher

Description

The SDK provides a default implementation, but you may want to override the optional parameters for your production environments.

For example, you can override the defaults to

Parameters

The following table lists the optional builder methods:

Parameter

Description

withConfigManager(ProjectConfigManager)

ProjectConfigManager object to manage project configuration. You should provide an instance ofHttpProjectConfigManager or your own custom object.

If this is not set, the parameter uses staticProjectConfig without polling datafile periodically.

withEventProcessor(EventProcessor)

EventProcessor object to process events. You should provide an instance ofBatchEventProcessor withAsyncEventHandler or your own custom object.

If this is not set, the parameter usesForwardingEventProcessor withNoopEventHandler() by default.

*withUserProfileService(UserProfileService)

UserProfileService object to support persistent variation assignments.

If this is not set, persistent decisions are not supported.

withErrorHandler(ErrorHandler)

ErrorHandler object to handle errors.

withDatafile(String)

The JSON string representing the project.

If an instance ofProjectConfigManager is not provided. You must use this datafile to initialize theProjectConfig statically.

withDefaultDecideOptions(List<OptimizelyDecideOption>)

An array ofOptimizelyDecideOption enums.

When the Optimizely client is constructed with this parameter, it sets default decide options which are applied to the Decide calls made during the lifetime of the Optimizely client. Additionally, you can pass options to individual Decide methods (does not override the defaults).

For example code, seeOptimizelyDecideOption.

withOdpManager(OdpManager)

OdpManager contains the logic supporting Real-Time Audiences for Feature Experimentation-related features, including audience segments.

The Java SDK enables the Real-Time Audiences for Feature Experimentation methods by default. But, the methods do nothing unless you have enabled and configured theReal-Time Audiences for Feature Experimentation integration.

To optionally disable Real-Time Audience for Feature Experimentation completely, seeOdpManager.

Returns

An instantiated instance of the Optimizely class.

Example

The following example shows how to initialize the Optimizely Feature Experimentation Java SDK using the builder options.

Optimizely Feature Experimentation provides default implementations ofHttpProjectConfigManager,BatchEventProcessor, andAsyncEventHandler.

ProjectConfigManager configManager = HttpProjectConfigManager.builder()    .withSdkKey(sdkKey)    .withDatafile(datafile)    .build();EventHandler eventHandler = AsyncEventHandler.builder()    .withQueueCapacity(20000)    .withNumWorkers(1)    .build();EventProcessor batchProcessor = BatchEventProcessor.builder()    .withBatchSize(50)    .withEventHandler(eventHandler)    .withFlushInterval(TimeUnit.MINUTES.toMillis(1))    .build();Optimizely optimizely = Optimizely.builder()    .withConfigManager(configManager)    .withEventProcessor(batchProcessor)    .build();

Exceptions

ConfigParseException – The SDK could not parse the datafile because it is malformed or has an incorrect schema.

HttpProjectConfigManager

Whenever the experiment configuration changes, the SDK uses automatic datafile management (ADM) to handle the change for you.

HttpProjectConfigManager is an implementation of the abstractPollingProjectConfigManager. Thepoll method is extended and makes an HTTPGET request to the configured URL to asynchronously download the project datafile and initialize an instance of theProjectConfig.

By default,HttpProjectConfigManager blocks until the first successful datafile retrieval, up to a configurable timeout.

Set the frequency of the polling method and the blocking timeout withwithPollingInterval() andwithBlockingTimeout(), pulling the default values from global properties.

The following example shows how to initialize theHttpProjectConfigManager with builder options.

ProjectConfigManager projectConfigManager = HttpProjectConfigManager.builder()    .withSdkKey(sdkKey)    .withDatafile(datafile)    .withPollingInterval(1, TimeUnit.MINUTES)    .withBlockingTimeout(10, TimeUnit.SECONDS)    .build();

SDK key

The SDK key composes the outbound HTTP request to the default datafile location on the Optimizely CDN.

Polling interval

The polling interval specifies a fixed delay between consecutive HTTP requests for the datafile.

Initial datafile

You can provide an initial datafile through the builder to bootstrap theProjectConfigManager to use it immediately without blocking execution. The initial datafile also serves as a fallback datafile if an HTTP connection cannot be established. This is useful in mobile environments where internet connectivity is not guaranteed.

The preceding datafile is discarded after the first successful datafile poll.

Builder methods

You can use the following builder methods to customize theHttpProjectConfigManager configuration.

MethodDefault valueDescription
withDatafile(String)nullInitial datafile, typically sourced from a local cached source.
withUrl(String)nullURL override location used to specify custom HTTP source for the Optimizely Feature Experimentation datafile.
withFormat(String)https://cdn.optimizely.com/datafiles/%s.jsonParameterized datafile URL by SDK key.
withPollingInterval(Long, TimeUnit)5 minutesFixed delay between fetches for the datafile.
withBlockingTimeout(Long, TimeUnit)10 secondsMaximum time to wait for initial bootstrapping.
withSdkKey(String)nullOptimizely Feature Experimentation project SDK key, required.

Advanced configuration

The following properties can be set to override the default configuration forHttpProjectConfigManager.

PropertyDefault valueDescription
http.project.config.manager.polling.duration5The fixed delay between fetches for the datafile
http.project.config.manager.polling.unitMINUTESTime unit corresponding to the polling interval
http.project.config.manager.blocking.duration10Maximum time to wait for initial bootstrapping
http.project.config.manager.blocking.unitSECONDSTime unit corresponding to blocking duration
http.project.config.manager.sdk.keynullOptimizely Feature Experimentation project SDK key

Update Config Notifications

The SDK triggers a notification signal after fetching a datafile. To subscribe to these notifications, use theOptimizely.addUpdateConfigNotificationHandler.

NotificationHandler<UpdateConfigNotification> handler = message ->    System.out.println("Received new datafile configuration");optimizely.addUpdateConfigNotificationHandler(handler);

Alternatively, you can add the handler directly to theNotificationCenter.

notificationCenter.addNotificationHandler(UpdateConfigNotification.class, handler);

AsyncEventHandler

AsyncEventHandler provides an implementation ofEventHandler backed by aThreadPoolExecutor. The event handler queues the triggered events from the SDK immediately as discrete tasks to the executor and processes them in submission order.

Each worker must make outbound HTTP requests to the Optimizely Feature Experimentation log endpoint for metrics tracking. Configure the default queue size and number of workers through global properties. UseAsyncEventHandler.Builder to override the default queue size and number of workers.

📘

Note

When using the Optimizely builder class, you must provide an implementation of the event handler as shown below. Otherwise, the Optimizely Feature Experimentation instance will default to a no-op event handler.

To useAsyncEventHandler, you must build an instance withAsyncEventHandler.Builder and pass the instance to theOptimizely.Builder.

You can also initialize the SDK withtheOptimizelyFactory methods if you want to use the defaultAsyncEventHandler implementation.

EventHandler eventHandler = AsyncEventHandler.builder()    .withQueueCapacity(10000)    .withNumWorkers(5)    .build();

Queue capacity

You can set the queue capacity to initialize the backing queue for the executor service. This drops an event if the queue fills up and logs an exception. Setting a higher queue value prevents event loss but uses more memory if the workers cannot keep up with the production rate.

Number of workers

The number of workers determines the number of threads the thread pool uses.

Builder methods

You can use the following builder methods to customize theAsyncEventHandler configuration.

MethodDefault valueDescription
withQueueCapacity(int)10000Queue size for pending logEvents.
withNumWorkers(int)2Number of worker threads.
withMaxTotalConnections(int)200Maximum number of connections.
withMaxPerRoute(int)20Maximum number of connections per route.
withValidateAfterInactivity(int)5000Time to maintain idol connections (in milliseconds).

Advanced configuration

You can set the following properties to override the default configuration forAsyncEventHandler.

PropertyDefault valueDescription
async.event.handler.queue.capacity10000Queue size for pending logEvents.
async.event.handler.num.workers2Number of worker threads.
async.event.handler.max.connections200Maximum number of connections.
async.event.handler.event.max.per.route20Maximum number of connections per route.
async.event.handler.validate.after5000Time to maintain idle connections (in milliseconds).

BatchEventProcessor

The Optimizely Feature Experimentation Java SDK providesBatchEventProcessor, the default implementation of the EventProcessor interface, and batches events.

For more details and configuration options, refer to thearticle on event batching in Java.

EventHandler eventHandler = AsyncEventHandler.builder()    .withQueueCapacity(10000)    .withNumWorkers(5)    .build();EventProcessor batchProcessor = BatchEventProcessor.builder()    .withBatchSize(50)    .withEventHandler(eventHandler)    .build();

Optimizely Properties

You can use an availableoptimizely.properties file within the runtime classpath to provide default values of a given Optimizely Feature Experimentation resource. Refer to the resource implementation for available configuration parameters.

An exampleoptimizely.properties file:

http.project.config.manager.polling.duration = 1http.project.config.manager.polling.unit = MINUTESasync.event.handler.queue.capacity = 20000async.event.handler.num.workers = 5

Dispose of the client

For effective resource management with the Optimizely Java SDK, you must properly close the Optimizely client instance when it is no longer needed. This is done by calling.close().

The.close() method ensures that the processes and queues associated with the instance are properly released. This is essential for preventing memory leaks and ensuring that the application runs efficiently, especially in environments where resources are limited or in applications that create and dispose of many instances over their lifecycle.

SeeClose Optimizely Feature Experimentation Java SDK on application exit.

ODPManager

ODPManager contains the logic supporting Real-Time Audiences for Feature Experimentation-related features, including audience segments.

When instantiated with the Optimizely Builder, a default or customODPManager instance must be provided withwithODPManager(). Otherwise, the Real-Time Audiences for Feature Experimentation features are disabled.

When instantiated withOptimizelyFactory,ODPManager is enabled by default, and the default version ofODPManager is used.

The following settings are optionally configurable when the Java SDK is initialized:

  • ODP SegmentsCache sizewithSegmentCacheSize
    • Default – 10,000
    • Set to 0 to disable caching.
  • ODP SegmentsCache timeout (in seconds) –withSegmentsCacheTimeout
    • Default – 600 secs (10 minutes)
    • Set to 0 to disable timeout (never expires).
  • ODP enablewithOdpDisabled
    • Default – false (enabled)
    • The Java SDK returns or logs anodpNotEnabled error when ODP is disabled and its features are requested.

SeeCustomize ODPSegmentManager.

ODPSegmentManager

This module provides an interface to the remote ODP server for audience segment mappings.

It fetches the qualified audience segments for the given user context and returns them as a string array in the completion handler.

It also manages an audience segment's cache shared for the user contexts. The cache is in memory (not persistent), and rebooting the device or terminating the app resets it.

ODPEventManager

This module provides an interface to the remote ODP server for events.

It queues the pending events (persistent) and sends them (in batches of up to 10) to the ODP server when resources are available, including network connection and ODP public key (in the SDK's datafile).

📘

Note

The Java SDK tries to dispatch all events (stored in a persistent queue and retried on recoverable errors) but does not guarantee completion.

// You must first configure Real-Time Audiences for Feature Experimentation// before being able to calling ODPApiManager, ODPEventManager, and ODPSegmentManager.ODPApiManager defaultODPApiManager = new DefaultODPApiManager();ODPEventManager odpEventManager = new ODPEventManager(defaultODPApiManager);ODPSegmentManager odpSegmentManager = new ODPSegmentManager(defaultODPApiManager);ODPManager odpManager = ODPManager.builder()     .withEventManager(odpEventManager) // Optional     .withSegmentManager(odpSegmentManager) //Optional     .withApiManager(defaultODPApiManager)     .build();

Customize ODPApiManager

ODPApiManager is an interface, and its implementation requires the user to provide the functionality of the following methods:

public interface ODPApiManager {    List<String> fetchQualifiedSegments(String apiKey, String apiEndpoint, String userKey, String userValue, Set<String> segmentsToCheck);    Integer sendEvents(String apiKey, String apiEndpoint, String eventPayload);}

You can providesegmentFetchTimeoutMillis andeventDispatchTimeoutMillis in the constructor ofDefaultODPApiManager.

int segmentFetchTimeoutMillis = 20000;    // 20,000 msecs = 20 secsint eventDispatchTimeoutMillis = 20000;// 20,000 msecs = 20 secsODPApiManager defaultODPApiManager = new DefaultODPApiManager(segmentFetchTimeoutMillis, eventDispatchTimeoutMillis)

Customize ODPEventManager

You can provide customqueueSize andflushInterval in the constructor. If set to zero,batchSize is 1; otherwise,batchSize is the default of 10.

int queueSize = 20000;// Note: if this is set to 0 then batchSize will be set to 1, otherwise batchSize will be default, which is 10.int flushIntervalInMillis = 10000;  // 10,000 msecs = 10 secs ODPEventManager odpEventManager = new ODPEventManager(defaultODPApiManager, queueSize, flushIntervalInMillis);

Customize ODPSegmentManager

You can providecacheSize andcacheTimeout in the constructor, but a custom cache inODPManager ignores these values. By default,ODPSegmentManager usesLRUCacheManager.

int cacheSize = 100;int cacheTimeoutInSeconds= 600;  // 10 mins = 600 secsODPSegmentManager odpSegmentManager = new ODPSegmentManager(defaultODPApiManager, cacheSize, cacheTimeoutInSecs);// Second method to set custom cache size and timeout using odpManagerODPApiManager defaultODPApiManager = new DefaultODPApiManager();ODPManager odpManager = ODPManager.builder()                            .withSegmentCacheSize(cacheSize)                             .withSegmentCacheTimeout(cacheTimeoutInSecs) // seconds                            .withApiManager(defaultODPApiManager)                            .build();

Custom cache

You can use the custom cache, which stores thefetchQualifiedSegments results, by implementing theCache interface.

public interface Cache<T> {   int DEFAULT_MAX_SIZE = 10000;   int DEFAULT_TIMEOUT_SECONDS = 600;   void save(String key, T value);   T lookup(String key);   void reset();}

Here is an example of customCache implementation:

public class CustomCache<T> implements Cache<T> {   private final Object lock = new Object();   final Map<String, T> linkedHashMap = new LinkedHashMap<>();      public CustomCache() {   }      public void save(String key, T value) {       synchronized (lock) {           linkedHashMap.put(key, value);       }   }   public T lookup(String key) {       synchronized (lock) {           if (linkedHashMap.containsKey(key)) {               T entity = linkedHashMap.get(key);               return entity;           }           return null;       }   }   public void reset() {       synchronized (lock) {           linkedHashMap.clear();       }   }}

Pass thiscustomCache object toOdpManager using its builder option and do not passodpSegmentManager object:

ODPApiManager defaultODPApiManager = new DefaultODPApiManager();ODPEventManager odpEventManager = new ODPEventManager(defaultODPApiManager);                // To use a custom cache, do not pass `odpSegmentManager`.ODPManager odpManager = ODPManager.builder()     .withEventManager(odpEventManager) // Optional     .withSegmentCache(new CustomCache<>()); //Optional     .withApiManager(defaultODPApiManager)     .build();

OptimizelyFactory

In this package,OptimizelyFactory provides a basic utility to instantiate the Optimizely Feature Experimentation Java SDK with a minimal number of configuration options. The package sources configuration properties from Java system properties, environment variables, or anoptimizely.properties file, in that order.

OptimizelyFactory does not capture all configuration and initialization options. For more use cases, build the resources through their respective builder classes.

When instantiated with theOptimizelyFactory methods, the Java SDK uses the default configuration of HttpProjectConfigManager,BatchEventProcessor, andAsyncEventHandler.

The following example shows how to initialize the Java SDK using theOptimizelyFactory methods.

Optimizely optimizelyClient = OptimizelyFactory.newDefaultInstance(sdkKey);// If you provide the SDK key via a global property, use the empty signature:Optimizely optimizely = OptimizelyFactory.newDefaultInstance();// with fallback datafileOptimizely optimizelyClient = OptimizelyFactory.newDefaultInstance(sdkKey, datafile);

In addition to the datafile, you need to provide an event dispatcher (also called event handler) object as an argument to theOptimizely.builder function. Use the default event dispatcher implementation, or provide your own implementation as described inConfigure the event dispatcher.

Use authenticated datafile in a secure environment

You can fetch the Optimizely datafile from an authenticated endpoint using a server-side (only) Optimizely Feature Experimentation SDK, like the Java SDK.

To use anauthenticated datafile, download your Optimizely environment's access token from the Optimizely app atSettings > Environments. Select your secure environment, and copy theDatafile access token. The following example shows how to initialize the Optimizely client using an access token andsdkKey, enabling the client to fetch the authenticated datafile and complete initialization.

// fetch the datafile from an authenticated endpointString accessToken = "YOUR_DATAFILE_ACCESS_TOKEN";String sdkKey = "YOUR_SDK_KEY";Optimizely optimizelyClient = OptimizelyFactory.newDefaultInstance(sdkKey, null, accessToken);

Source files

The language and platform source files containing the implementation for Java are available onGitHub.

Updated 17 days ago



[8]ページ先頭

©2009-2025 Movatter.jp