Skip to main content
Version: 3.15

How to Upgrade ScalarDB

This guide explains how to upgrade to a newer version of ScalarDB.

Before you begin​

Before you upgrade to a new version, please check the ScalarDB Cluster Compatibility Matrix to ensure compatibility between ScalarDB Cluster and the client SDKs.

Upgrade versions​

To learn about upgrading your version of ScalarDB, select the type of upgrade you want to do.

Minor versions keep backward compatibility. So, you can upgrade ScalarDB from one minor version to another minor version in the same major version without doing any special operations. For example, you don't need to update the database schema on the backend database side or update the API in your application.

If you use Scalar Helm Chart to deploy ScalarDB Cluster, you can upgrade your ScalarDB Cluster deployment as follows:

  1. Set the ScalarDB Cluster Helm Chart version as an environment variable. You can do this by running the following command to put the chart version into the environment variable SCALAR_DB_CLUSTER_CHART_VERSION:

    SCALAR_DB_CLUSTER_CHART_VERSION=1.5.0
    tip

    You can search for the chart version that corresponds to the ScalarDB Cluster version, run the following command:

    helm search repo scalar-labs/scalardb-cluster -l

    The following command might be helpful, but please make sure to replace the contents in the angle brackets with your version of ScalarDB Cluster:

    SCALAR_DB_CLUSTER_VERSION=<MAJOR>.<MINOR>.<PATCH>; SCALAR_DB_CLUSTER_CHART_VERSION=$(helm search repo scalar-labs/scalardb-cluster -l | grep -F "${SCALAR_DB_CLUSTER_VERSION}" | awk '{print $2}' | sort --version-sort -r | head -n 1)
  2. Upgrade your ScalarDB Cluster deployment by replacing the contents in the angle brackets as described:

    helm upgrade <RELEASE_NAME> scalar-labs/scalardb-cluster -n <NAMESPACE> -f /<PATH_TO_YOUR_CUSTOM_VALUES_FILE_FOR_SCALARDB_CLUSTER> --version ${SCALAR_DB_CLUSTER_CHART_VERSION}

After you upgrade the ScalarDB Cluster deployment, you should consider upgrading the version of the ScalarDB Cluster Java Client SDK or the ScalarDB Cluster .NET Client SDK on your application side.

warning

ScalarDB does not support downgrading to a previous version (major, minor, or patch). You can only upgrade to a newer version.

This website uses cookies to enhance the visitor experience. By continuing to use this website, you acknowledge that you have read and understood our privacy policy and consent to the use of cookies to help improve your browsing experience and provide you with personalized content.