Optimizely will be sunsetting Full Stack Experimentation on July 29, 2024. See the recommended Feature Experimentation migration timeline and documentation.

Dev GuideAPI Reference
Dev GuideAPI ReferenceUser GuideGitHubNuGetDev CommunitySumbit a ticketLog In
GitHubNuGetDev CommunitySumbit a ticket

Manage environments

This topic describes how to manage separate, isolated environments.

Optimizely's environments enable you to confirm behavior and run flags in isolated environments, like development or staging. This makes it easier to safely deploy flags in production. You can run a single experiment in some contexts and pause in others. You can turn an experiment on and run it for your team so they can test it, but leave it turned off for visitors.

Every Optimizely project starts with two environments (and two datafiles) named Production and Development.

When you set up a new environment, it has the following attributes:

AttributeDescription
Environment-specific datafileAutomatically generated. Shows the state of the experiments within that environment. If you created flags and experiments in other environments in your project, they show up as "not running" until you start them in this environment.
Unique SDK keyAutomatically generated. It determines the URL of the environment's datafile, which ensures that the URL won't be easily guessed. You can use the SDK key to initialize the SDK with the corresponding environment's datafile.
Datafile Access TokenAutomatically generated. If you create a secure environment, then you can fetch the datafile for that secure environment from an authenticated endpoint using this access token. For more information, see the initialization topic for your SDK language (server-side only).
Environment KeyUser-provided. This key is used for programmatic access to the environment: for example, if you were to modify your environments using API Reference.

We recommend that you also add a Staging environment to your project to use for QA testing before running experiments in your Production environment.

Secure environments

When you create an environment, you can choose to secure it (see instructions in Create environments section). When this setting is enabled, you must pass a datafile authentication token when you send requests to the datafile URL via the SDK. This can provide an additional layer of security and privacy to your feature and experiment configurations on top of the uniqueness and obscurity of the SDK key.
We recommend using this feature only in projects that exclusively use server-side SDKs and implementation. If you fetch the datafiles in a client-side environment, they may become accessible to end-users.

Environment Permissions

You can control which collaborators have permission to start and stop experiments in an environment. This access control limits the number of people who can change your experiments' statuses or move them from one environment to another.

We recommend keeping access open to everyone in local or development environments and limiting access in production environments. By default, the production environment is limited to Publishers and above.

Create environments

To create an environment:

  1. Navigate to Settings > Environments.
  2. Click Create New and choose Environment or Secure Environment.
  3. Enter the environment name and key. Specify the permission level you want to set for experiments in the environment.
  4. Click Create Environment.
738

The Environment Key and Datafile URL for the new environment display on the Settings page.

1371
  1. Implement the datafile in your application.

📘

Note

Experiments are paused by default in any new environments you create, even if they were already running in the default environment.

Change experiment status in an environment

When you use multiple environments for a project, the Environments column on the Experiments dashboard displays icons that represent the state of the experiment in each environment.

To change an experiment’s status in an environment:

  1. Click the Actions icon (...) for the experiment.
  2. Select Run or Pause for the environment where you want to change the experiment’s status.
1587

Rename an environment

To rename an environment:

  1. Navigate to Settings > Datafile.
  2. Click the Actions icon (...) for the environment you want to rename.
  3. Click Settings.
  4. Enter the new name for the environment and click Save Environment.
1031

🚧

Important

Be careful changing the datafile's environment key

Changing the datafile's environment key as it will impact the datafile URL your code loads.

The environment key displays on the Settings > Datafile page. For more information see, Access the datafile via the app.

Archive an environment

You can archive environments if they are not being used anymore (except the primary environment, which cannot be archived). Archiving deactivates all the datafiles in an environment, replacing them with an empty file, and removes the environment as an option for experiments.

If experiments are running in the environment when you archive it, they will stop because archiving empties the datafile.

To archive an environment:

  1. Navigate to Settings > Datafile.
  2. Click the Actions icon (...) for the environment you want to archive.
  3. Click Archive.
1025

Results by environment

As you build, launch, and promote your experiments from lower-level environments into production, you will want to differentiate between results that were triggered during your QA process and results that were triggered by live users. To do so, we recommend that you create an attribute for environments, then set the attribute's value with the environment from which an event is sent. This will allow you to use segmentation to filter your results by this attribute. Another option is to simply reset results when you move to production.