Enabling Multi-Cluster Feature Flags

To enable multi-cluster support you need to enable the feature flag for MultiClusterSearch.

For general information on using feature flags, see Feature Flags.

Feature flags can be set in multiple ways:

  • By setting the environment variable:

    ini
    INITIAL_FEATURE_FLAGS=+MultiClusterSearch
  • Or, you can set them on a running system by going to the API explorer within the LogScale UI at https://$YOUR_LOGSCALE_URL/docs/api-explorer.

    For information on running GraphQL queries through the built-in API Explorer, see Accessing GraphQL using API Explorer. For information on running GraphQL queries through the command-line, see Accessing GraphQL using a Script or curl.

    You will need to execute these mutations:

    graphql
    mutation {
      enableFeature(feature: MultiClusterSearch)
    }