Snapshotting to Google Cloud Storage (GCS) for Elasticsearch 7.0 and lateredit

Snapshotting to GCS repositories is natively supported in Elastic Cloud Enterprise beginning with version 7.0. For instructions on snapshotting for V6.4 - V6.8 Elasticsearch versions, check Snapshotting to Google Cloud Storage (GCS) for Elasticsearch 6.4 - 6.8. If you are using an earlier Elasticsearch version you must upgrade first.

Snapshots to GCS are supported using an advanced repository configuration and service account credentials that can administer your GCS bucket.

Set up your service account credentialsedit

You’ll need to have an existing Google Cloud account and have the appropriate permissions to generate credentials:

  1. Create service account credentials in your Google Cloud project where Elastic Cloud Enterprise is running.

    The service account should be granted the role of storage.admin so that Elasticsearch clusters can read, write, and list the bucket objects.

  2. Save the service account key in JSON file format. You are going to use it later to configure your Elasticsearch deployment for snapshotting.

Add the GCS repositoryedit

Add your Google Cloud Storage bucket as a repository to the platform:

  1. Log into the Cloud UI.
  2. Go to Platform > Repositories and add the following snapshot repository configuration under the advanced mode:

    Repository GCS (check: supported settings)

    {
      "type": "gcs",
      "settings": {
        "bucket": "acme-snapshot-repo",
        "bucket": "acme-snapshots"
      }
    }

Snapshots are stored in the bucket you provide. Use the repository name you define here to configure your Elasticsearch clusters for snapshotting to this repository.

Configure your deployment for GCS snapshotsedit

To save deployment snapshots to the custom GCS repository:

  1. Add a secure setting named gcs.client.acme-snapshots.credentials_file as a JSON block. Make sure that the client name is the same one you provided when configuring the snapshot repository.

    GCS client secret configuration

    The contents within credentials_file must be the exact contents of your GCS credentials file.

  2. Configure your deployment to snapshot to the GCS repository.

After you enable snapshots, snapshotting will begin within 30 minutes (the default snapshot interval).