Upgrade YugabyteDB

Upgrade an existing YugabyteDB deployment

Tip

Ensure that you are using the most up-to-date version of the software to optimize performance, access new features, and safeguard against software bugs.

YugabyteDB is a distributed database that can be installed on multiple nodes. Upgrades happen in-place with minimal impact on availability and performance. This is achieved using a rolling upgrade process, where each node/process is upgraded one node at a time. YugabyteDB automatically rebalances the cluster as nodes/processes are taken down and brought back up during the upgrade.

The data, log, and conf directories are typically stored in a fixed location that remains unchanged during the upgrade process. This ensures that the cluster's data and configuration settings are preserved throughout the upgrade.

Important information

Review the following information before starting an upgrade.
  • Make sure your operating system is up to date. If your universe is running on a deprecated OS, you need to update your OS before you can upgrade to the next major YugabyteDB release.

  • You can only upgrade to the latest minor version of every release.

    For example, if you are upgrading from v2.18.3.0, and the latest release in the v2.20 release series is v2.20.2.0, then you must upgrade to v2.20.2.0 (and not v2.20.1.0 or v2.20.0.0).

    To view and download releases, refer to Releases.

  • Upgrades are not supported between preview and stable versions.

  • Make sure you are following the instructions for the version of YugabyteDB that you are upgrading from. You can select the doc version using the version selector in the upper right corner of the page.

  • Roll back is EA and supported in v2.20.2 and later only. If you are upgrading from v2.20.1.x or earlier, follow the instructions for v2.18.

Upgrade YugabyteDB cluster

You upgrade a cluster in the following phases:

During the upgrade phase, you deploy the binaries of the new version to the YugabyteDB processes. Most of the incoming changes and bug fixes take effect at this stage. Some features, however, require changes to the format of data sent over the network, or stored on disk. These are not enabled until you finalize the upgrade. This allows you to evaluate the majority of the changes before committing to the new version. If you encounter any issues while monitoring the cluster, you have the option to roll back in-place and restore the cluster to its state before the upgrade.

Upgrade Phase

1. Prepare the cluster for the upgrade

Before starting the upgrade process, ensure that the cluster is healthy.

  1. Make sure that all YB-Master processes are running at http://<any-yb-master>:7000/.
  2. Make sure there are no leaderless or under replicated tablets at http://<any-yb-master>:7000/tablet-replication.
  3. Make sure that all YB-TServer processes are running and the cluster load is balanced at http://<any-yb-master>:7000/tablet-servers.

Tablet Servers

Note

If upgrading a cluster that is in production and serving user traffic, it is recommended to take a Backup of all the data before starting the upgrade. In the unlikely event of a failure, you can restore from the backup to quickly regain access to the data.

2. Download and install the new version

Install the new version of YugabyteDB in a new directory on every YugabyteDB node. Follow the instructions in Install Software.

For example:

wget https://downloads.yugabyte.com/yugabyte-$NEW_VER.tar.gz
tar xf yugabyte-$NEW_VER.tar.gz -C /home/yugabyte/softwareyb-$NEW_VER/
cd /home/yugabyte/softwareyb-$NEW_VER/
./bin/post_install.sh

If you are using PostgreSQL extensions, make sure to install the extensions in the new YugabyteDB version. Follow the instructions in Install PostgreSQL extensions.

3. Upgrade YB-Masters

Upgrade the YB-Masters one node at a time:

  1. Stop the yb-master process.

    pkill yb-master
    
  2. Verify that you are in the directory of the new version.

    cd /home/yugabyte/softwareyb-$NEW_VER/
    
  3. Start the new version of the YB-Master process. Follow the instructions in Start YB-Masters.

  4. Make sure that all YB-Master processes are running at http://<any-yb-master>:7000/. If anything looks unhealthy, you can jump ahead to Rollback Phase.

  5. Pause for at least 60 seconds before upgrading the next YB-Master.

4. Upgrade YB-TServers

Upgrade the YB-TServers one node at a time:

  1. Stop the yb-tserver process.

    pkill yb-tserver
    
  2. Verify that you're in the directory of the new version.

    cd /home/yugabyte/softwareyb-$NEW_VER/
    
  3. Start the new version of the YB-TServer process. Follow the instructions in Start YB-TServers.

  4. Make sure that all YB-TServer processes are running at http://<any-yb-master>:7000/tablet-servers, and wait for the cluster load to balance. If anything looks unhealthy, you can jump ahead to Rollback Phase.

  5. Pause for at least 60 seconds before upgrading the next YB-TServer.

Monitor Phase

Once all the YB-Master and YB-TServer processes have been upgraded, monitor the cluster to ensure it is healthy. Make sure workloads are running as expected and there are no errors in the logs.

You can remain in this phase for as long as you need, but it is recommended to finalize the upgrade sooner in order to avoid operator errors that can arise from having to maintain two versions. New features that require format changes will not be available until the upgrade is finalized. Also, you cannot perform another upgrade until you have completed the current one.

If you are satisfied with the new version, proceed to the Finalize Phase. If you encounter any issues, you can proceed to Rollback Phase.

A. Finalize Phase

1. Promote AutoFlags

New YugabyteDB features may require changes to the format of data that is sent over the network or stored on disk. During the upgrade process, these new features are kept disabled to prevent sending the new data formats to processes that are still running the old version. After all YugabyteDB processes have been upgraded, these features can be safely enabled. AutoFlags helps simplify this procedure so that you don't have to worry about identifying what these features are and how to enable them. All new features are enabled using a single command.

  1. Use the yb-admin utility to promote the new AutoFlags:

    ./bin/yb-admin \
        -master_addresses <master-addresses> \
        promote_auto_flags
    

    Expect to see the following output:

    PromoteAutoFlags completed successfully
    New AutoFlags were promoted
    New config version: 2
    

    Or

    PromoteAutoFlags completed successfully
    No new AutoFlags eligible to promote
    Current config version: 1
    

    Note

    • promote_auto_flags is idempotent and can be run multiple times.
    • Before promoting AutoFlags, ensure that all YugabyteDB processes in the cluster have been upgraded to the new version. Process running an old version may fail to connect to the cluster after the AutoFlags have been promoted.
  2. Wait at least 10 seconds (FLAGS_auto_flags_apply_delay_ms) for the new AutoFlags to be propagated and applied on all YugabyteDB processes.

2. Upgrade the YSQL system catalog

If you do not have YSQL enabled, you can skip this step.

Similar to PostgreSQL, YugabyteDB stores YSQL system metadata, referred to as the YSQL system catalog, in special tables. The metadata includes information about tables, columns, functions, users, and so on. This metadata is accessible through the YSQL API and is required for YSQL functionality.

When new YSQL features are added to YugabyteDB, objects such as tables, functions, and views may need to be added, updated, or deleted from the system catalog. If you create a new cluster using the latest release, it is initialized with the most recent pre-packaged YSQL system catalog snapshot. When upgrading, you need to manually upgrade the YSQL system catalog.

Use the yb-admin utility to upgrade the YSQL system catalog:

./bin/yb-admin \
    -master_addresses <master-addresses> \
    upgrade_ysql

Expect to see the following output:

YSQL successfully upgraded to the latest version

In certain scenarios, a YSQL upgrade can take longer than 60 seconds, which is the default timeout value for yb-admin. If this happens, run the command with a greater -timeout_ms value. For example:

./bin/yb-admin \
    -master_addresses ip1:7100,ip2:7100,ip3:7100 \
    -timeout_ms 180000 \
    upgrade_ysql

Note

  • upgrade_ysql is idempotent and can be run multiple times.
  • Concurrent YSQL operations in a cluster can lead to transactional conflicts, catalog version mismatches, and read restart errors. This is expected, and should be addressed by retrying the operation. If upgrade_ysql encounters these errors, then it should also be retried.

B. Rollback Phase

Important

  • Roll back is EA .
  • Roll back is only supported when you are upgrading a cluster that is already on version v2.20.2.0 or higher.
  • You cannot roll back after finalizing the upgrade. If you still want to go back to the old version, you have to migrate your data to another cluster running the old version. You can either restore a backup taken while on the old version or Export and import the current data from the new version. The import script may have to be manually changed in order to conform to the query format of the old version.

In order to roll back to the version that you were on before the upgrade, you need to restart all YB-Master and YB-TServers on the old version. All YB-TServers have to be rolled back before you roll back YB-Masters.

1. Roll back YB-TServers

Roll back the YB-TServers one node at a time:

  1. Stop the yb-tserver process.

    pkill yb-tserver
    
  2. Verify that you're in the directory of the old version.

    cd /home/yugabyte/softwareyb-$OLD_VER/
    
  3. Start the old version of the YB-TServer process. Follow the instructions in Start YB-TServers.

  4. Make sure that all YB-TServer processes are running and the cluster load is balanced at http://<any-yb-master>:7000/tablet-servers.

  5. Pause for at least 60 seconds before rolling back the next YB-TServer.

2. Roll back YB-Masters

Use the following procedure to roll back all YB-Masters:

  1. Stop the yb-master process.

    pkill yb-master
    
  2. Verify that you are in the directory of the old version.

    cd /home/yugabyte/softwareyb-$OLD_VER/
    
  3. Start the old version of the YB-Master process. Follow the instructions in Start YB-Masters.

  4. Make sure that all YB-Master processes are running at http://<any-yb-master>:7000/.

  5. Pause for at least 60 seconds before rolling back the next YB-Master.

Upgrades with xCluster

When you have unidirectional xCluster replication, it is recommended to upgrade the target cluster before the source. After the target cluster is upgraded and finalized, you can proceed to upgrade the source cluster.

If you have bidirectional xCluster replication, then you should upgrade and finalize both clusters at the same time. Perform the upgrade steps for each cluster individually and monitor both of them. If you encounter any issues, roll back both clusters. If everything appears to be in good condition, finalize both clusters with as little delay as possible.

Note

xCluster replication requires the target cluster version to the same or later than the source cluster version. The setup of a new xCluster replication will fail if this check fails. Existing replications will automatically pause if the source cluster is finalized before the target cluster.

Advanced - enable volatile AutoFlags during monitoring

Important

The instructions in the previous sections are sufficient for most users. The following instructions are for advanced users who want more coverage of new features during the monitoring phase. It involves a few more steps and can be error prone if not performed correctly.

During the standard Monitor phase, all new AutoFlags are kept in the default non-promoted state. Most new features that have data format changes only affect the data that is sent over the network between processes belonging to the same cluster. This data is in-memory and is never stored on disk. For the highest possible level of coverage of the incoming changes, you can enable these features during the monitoring phase. In the case of a rollback, they can be safely disabled. These features are guarded with a kLocalVolatile class AutoFlag.

During the Monitor phase, do the following:

  1. Enable the volatile AutoFlags after the upgrade phase has completed:

    ./bin/yb-admin \
        -master_addresses <master-addresses> \
        promote_auto_flags kLocalVolatile
    
  2. Copy the output and store it in a safe place.

  3. Wait at least 10 seconds (FLAGS_auto_flags_apply_delay_ms) for the new AutoFlags to be propagated and applied on all YugabyteDB processes.

Roll back volatile AutoFlags

If you need to roll back an upgrade where volatile AutoFlags were enabled, depending on the output of promote_auto_flags, you will need to first roll back the AutoFlags that were promoted before proceeding with the rollback phase.

  • If the output of promote_auto_flags kLocalVolatile contained the following message:

    No new AutoFlags eligible to promote
    

    You don't need to roll back the AutoFlags and you can proceed immediately with the regular rollback procedure.

  • If the output of promote_auto_flags kLocalVolatile contained the following message:

    New AutoFlags were promoted
    New config version: <new_config_version>
    

    Then you need to roll back the AutoFlags to the previous version as follows:

    ./bin/yb-admin \
        -master_addresses <master-addresses> \
        rollback_auto_flags <previous_config_version>
    

    Where previous_config_version is new_config_version - 1.

    For example, if the output is as follows:

    PromoteAutoFlags completed successfully
    New AutoFlags were promoted
    New config version: 3
    

    Enter the following command to roll back the flags:

    ./bin/yb-admin \
        -master_addresses ip1:7100,ip2:7100,ip3:7100 \
        rollback_auto_flags 2
    
    RollbackAutoFlags completed successfully
    AutoFlags that were promoted after config version 2 were successfully rolled back
    New config version: 4
    

For the Finalize phase, no extra steps are required. The Finalize phase will promote all the AutoFlags and upgrade the YSQL system catalog.