Upgrading Elasticsearch

If you are upgrading to Relativity 2023 and your environment uses a version of Elasticsearch below 6.6.0 to store audits, you have the option to upgrade to Elasticsearch 6.6.0 or above. We recommend first upgrading Relativity and then upgrading elastic using one of the below workflows on this page.

Relativity version Elastic version
10.1 and lower 2.3.3
10.2 2.3.3 and 6.x
10.3 2.3.3 and 6.x
Server 2021 2.3.3 and 6.x and 7.x
Server 2022 2.3.3 and 6.x and 7.x
Server 2023 2.3.3 and 6.x and 7.x

Pre-upgrade steps

  1. Download the IncrementalUpgrade.zip from the Relativity Community. This package has all the scripts required for the upgrade. We recommend starting off with a new cluster with a number of nodes equal to the number of primary and replica shards in your cluster. For example, if your current cluster has 1 primary and 1 replica shard, your cluster requires 2 nodes. These nodes should be the same size as the nodes on the existing cluster, ensuring the indexes from the node have enough room to be allocated onto the new destination cluster.

    Note: You can find the number_of_shards and number_of_replicas count using the Elastic API. Send a GET request to the following URL: (https://<host>:<port>/_template/audit).

  2. Whitelist the source cluster so that it can be re-indexed into the destination cluster:
    1. Open the elasticsearch.yml (<elastic_install_directory_path>\RelativityDataGrid\elasticsearch-main\config) file from a node where you are running the re-index script.
    2. Update the reindex.remote.whitelist parameter to whitelist the endpoint of the source cluster. For example:
      reindex.remote.whitelist: emttest:9200

      You can set this to a comma delimited list of allowed remote host and port combinations (e.g. otherhost:9200, another:9200, 127.0.10.*:9200, localhost:*). You must configure the whitelist on all nodes.

    3. Re-start the cluster. You only need to restart the cluster the first time you complete this step.
  3. If you do not already have it installed and configured, install the latest version of Python - 3.7.4 and select Add Python 3.7 to PATH during the installation.
    1. Run Powershell as administrator, and then navigate to the <python_install_directory_path>\Python37\Scripts folder where Python is installed.
    2. Run the following to install the package
      .\pip3 install elasticsearch
  4. Ensure you have SQL access at the EDDS level to run SQL scripts.

Re-indexing into the new cluster

In order to upgrade from Elasticsearch 2.3.3 to 6.6.0, you must incrementally move all the workspace indexes on the existing 2.3.3 cluster to the newly provisioned 6.6.0 cluster. You can do this in one of three ways.

Deleting the source index

If you didn't set the --delete_source_indices "True" parameter to automatically delete the indexes on the source cluster, you must manually delete the indexes using the Elastic API.

Running the incremental upgrade script

To complete the upgrade, run the incremental_upgrade_setup.sql script (\IncrementalUpgrade\sql) from a SQL editor at the EDDS level. This script sets up the Audit application to write and read from two endpoints during the upgrade.

Edit the following variables in the script:

  • @primaryShards - enter the number of primary shards. The default value is 1.
  • @replicaShards - enter the number of primary shards. The default value is 1.
  • @previousAuditDataGridEndpoint - enter the previous Audit endpoint. For example, https://2xendpoint:9200..
  • @previousElasticSearchMajorVersion - enter the previous Elasticsearch major version. For example, if you are on Elasticsearch 2.3.3, enter 2.
  • @currentAuditDataGridEndpoint - enter the current Audit endpoint. For example, https://6xendpoint:9200.
  • @currentElasticSearchMajorVersion - enter the current Elasticsearch major version. In this case, enter 6.
  • @workspaceIds - enter a comma separated list of the Artifact IDs of the workspaces identified for upgrade.

Rolling upgrades

These instructions are for upgrading Elasticsearch from any 6.x or 7.x version to 7.17.9. Version 7.17.9 is the highest version compatible with Relativity Server 2023 and Relativity Server 2024.

Note: Do not use these instructions if you are using Elasticsearch 2.3.3.
  1. Download the Rolling Upgrade Package from the community: Rolling Upgrade Package.
  2. Unblock the zip file if applicable and extract it on each node running Elasticsearch.
  3. Open PowerShell as an administrator.
  4. Navigate to the location of the extracted folder.
  5. Run UpgradeToElastic7.17.9.ps1.
  6. Repeat steps 3-5 on each node of the cluster.

Additional Steps for Upgrading from Version 6.x:

Note: These steps can be skipped if you are upgrading from a lower version of Elasticsearch 7.x to 7.17.9.
  1. The package contains a file called Elastic7xTemplate.
  2. Open this file with Notepad.
  3. In Relativity, navigate to the instance settings page.
  4. Find the setting called ESIndexCreationSettings.
  5. Overwrite the value of the instance setting with the contents of the Elastic7xTemplate.

Updating the instance setting

After completing the upgrade, change the ElasticsearchMajorVersion instance setting from 6 to 7.

Note: This change is only necessary when the major version of Elasticsearch changes.