Skip to content

Experiment Go SDK

Official documentation for Amplitude Experiment's server-side Go SDK implementation.

GitHub tag (latest SemVer)

SDK Resources

GitHub · Releases

This documentation is split into two sections for remote and local evaluation:

Remote evaluation

Implements fetching variants for a user via remote evaluation.

Install

Install the Go Server SDK using go get.

go get github.com/amplitude/experiment-go-server

Quick Start

  1. Initialize the experiment client
  2. Fetch variants for the user
  3. Access a flag's variant
// (1) Initialize the local evaluation client with a server deployment key.
client := remote.Initialize("<DEPLOYMENT_KEY>", nil)

// (2) Fetch variants for a user
user := &experiment.User{
  UserId:   "user@company.com",
  DeviceId: "abcdefg",
  UserProperties: map[string]interface{}{
    "premium": true,
  },
}
variants, err := client.Fetch(user)
if err != nil {
  // Handle error
}

// (3) Access a flag's variant
variant := variants["<FLAG_KEY>"]
if variant.Value == "on" {
    // Flag is on
} else {
    // Flag is off
}

Not getting the expected variant result for your flag? Make sure your flag is activated, has a deployment set, and has users allocated.

Initialize

The SDK client should be initialized in your server on startup. The deployment key argument passed into the apiKey parameter must live within the same project that you are sending analytics events to.

func Initialize(apiKey string, config *Config) *Client
Parameter Requirement Description
apiKey required The deployment key which authorizes fetch requests and determines which flags should be evaluated for the user.
config optional The client configuration used to customize SDK client behavior.
client := remote.Initialize("<DEPLOYMENT_KEY>", nil)

Configuration

The SDK client can be configured on initialization.

Configuration Options
Name
Description Default Value
Debug Set to true to enable debug logging. false
ServerUrl The host to fetch flag configurations from. https://api.lab.amplitude.com
FlagConfigPollingInterval The timeout for fetching variants in milliseconds. This timeout only applies to the initial request, not subsequent retries 500 * time.Millisecond
RetryBackoff.FetchRetries The number of retries to attempt if a request to fetch variants fails. 1
RetryBackoff.FetchRetryBackoffMin The minimum (initial) backoff after a request to fetch variants fails. This delay is scaled by the RetryBackoff.FetchRetryBackoffScalar 0
RetryBackoff.FetchRetryBackoffMax The maximum backoff between retries. If the scaled backoff becomes greater than the max, the max is used for all subsequent requests 10 * time.Second
RetryBackoff.FetchRetryBackoffScalar Scales the minimum backoff exponentially. 1
RetryBackoff.FetchRetryTimeout The request timeout for retrying variant fetches. 500 * time.Millisecond

EU Data Center

If you're using Amplitude's EU data center, configure the serverUrl option on initialization to https://api.lab.eu.amplitude.com

Fetch

Fetches variants for a user and returns the results. This function remote evaluates the user for flags associated with the deployment used to initialize the SDK client.

func (c *Client) Fetch(user *experiment.User) (map[string]experiment.Variant, error)
Parameter Requirement Description
user required The user to remote fetch variants for.
user := &experiment.User{
    UserId:   "user@company.com",
    DeviceId: "abcdefg",
    UserProperties: map[string]interface{}{
        "premium": true,
    },
}
variants, err := client.Fetch(user)
if err != nil {
    // Handle error
}

After fetching variants for a user, you may to access the variant for a specific flag.

variant := variants["<FLAG_KEY>"]
if variant.Value == "on" {
    // Flag is on
} else {
    // Flag is off
}

Local evaluation

Implements evaluating variants for a user via local evaluation. If you plan on using local evaluation, you should understand the tradeoffs.

Local Evaluation Mode

The local evaluation client can only evaluation flags which are set to local evaluation mode.

Install

Install the Go Server SDK using go get.

go get github.com/amplitude/experiment-go-server

Quick Start

  1. Initialize the local evaluation client.
  2. Start the local evaluation client.
  3. Evaluate a user.
// (1) Initialize the local evaluation client with a server deployment key.
client := local.Initialize("<DEPLOYMENT_KEY>", nil)

// (2) Start the local evaluation client.
err := client.Start()
if err != nil {
  panic(err)
}

  // (3) Evaluate a user.
user := &experiment.User{DeviceId: "abcdefg"}
variants, err := client.EvaluateV2(user, nil)
if err != nil {
  panic(err)
}

Not getting the expected variant result for your flag? Make sure your flag is activated, has a deployment set, and has users allocated.

Initialize

Initializes a local evaluation client.

Server Deployment Key

You must initialize the local evaluation client with a server deployment key to get access to local evaluation flag configs.

func Initialize(apiKey string, config *Config) *Client
Parameter Requirement Description
apiKey required The server deployment key which authorizes fetch requests and determines which flags should be evaluated for the user.
config optional The client configuration used to customize SDK client behavior.

Flag Polling Interval

Use the FlagConfigPollingInterval configuration to determine the time flag configs take to update once modified (default 30s).

Configuration

The SDK client can be configured on initialization.

Configuration Options

Config

Name
Description Default Value
Debug Set to true to enable debug logging. false
ServerUrl The host to fetch flag configurations from. https://api.lab.amplitude.com
FlagConfigPollingInterval The interval to poll for updated flag configs after calling Start() 30 * time.Second
FlagConfigPollerRequestTimeout The timeout for the request made by the flag config poller 10 * time.Second
AssignmentConfig Configuration for automatically tracking assignment events after an evaluation. nil

AssignmentConfig

Name
Description Default Value
cacheCapacity The maximum number of assignments stored in the assignment cache 524288
Config Options to configure the underlying Amplitude Analytics SDK used to track assignment events

EU Data Center

If you're using Amplitude's EU data center, configure the serverUrl option on initialization to https://api.lab.eu.amplitude.com

Start

Start the local evaluation client, pre-fetching local evaluation mode flag configs for evaluation and starting the flag config poller at the configured interval.

func (c *Client) Start() error

You should await the result of Start() to ensure that flag configs are ready to be used before calling Evaluate()

err := client.Start()
if err != nil {
    panic(err)
}

Evaluate

Executes the evaluation logic using the flags pre-fetched on Start(). Evaluate must be given a user object argument and can optionally be passed an array of flag keys if only a specific subset of required flag variants are required.

Automatic Assignment Tracking

Set AssignmentConfig to automatically track an assignment event to Amplitude when EvaluateV2() is called.

func (c *Client) EvaluateV2(user *experiment.User, flagKeys []string) (map[string]experiment.Variant, error)
Parameter Requirement Description
user required The user to evaluate.
flagKeys optional Specific flags or experiments to evaluate. If nil, or empty, all flags and experiments are evaluated.
// The user to evaluate
user := &experiment.User{DeviceId: "abcdefg"}

// Evaluate all flag variants
allVariants, err := client.EvaluateV2(user, nil)
if err != nil {
    // Handle Error
}

// Evaluate a specific subset of flag variants
specificVariants, err := client.EvaluateV2(user, []string{
    "<FLAG_KEY_1>",
    "<FLAG_KEY_2>",
})

// Access a variant
variant := allVariants["<FLAG_KEY>"]
if variant.Value == "on" {
    // Flag is on
} else {
    // Flag is off
}

Was this page helpful?