This topic explains how to upgrade VMware Tanzu GemFire when you cannot or choose not to perform a rolling upgrade.

For example, a rolling upgrade is not possible for a cluster that has partitioned regions without redundancy. Without the redundancy, region entries would be lost when individual servers were taken out of the cluster during a rolling upgrade.

Offline Upgrade Guidelines

Versions

For best reliability and performance, all server components of a Tanzu GemFire system should run the same version of the software. See Version Compatibilities for more details on how different versions of Tanzu GemFire can interoperate.

Data member interdependencies

When you restart your upgraded servers, interdependent data members may hang on startup waiting for each other. In this case, start the servers in separate command shells so they can start simultaneously and communicate with one another to resolve dependencies.

Offline Upgrade Procedure

  1. Stop any connected clients.

  2. On a machine hosting a locator, open a terminal console.

  3. Start a gfsh prompt, using the version from your current Tanzu GemFire installation, and connect to a currently running locator. For example:

    gfsh>connect --locator=locator_hostname_or_ip_address[port]
    
  4. Use gfsh commands to characterize your current installation so you can compare your post-upgrade system to the current one. For example, use the list members command to view locators and data members:

    gfsh>list members
    Name      | Id                                                                 | Type
    --------- | -------------------------------------------------------------------| ---—---
    locator-0 | 192.168.43.99(locator-0:16523:locator)<ec><v0>:42586 [Coordinator] | Locator
    locator-1 | 192.168.43.99(locator-1:16524:locator)<ec><v1>:42863               | Locator
    server-2  | 192.168.43.99(server-2:16525)<v2>:47137                            | Server
    server-1  | 192.168.43.99(server-1:16526)<v3>:44209                            | Server
    
  5. Save your cluster configuration.

    • If you are using the cluster configuration service, use the gfsh export cluster-configuration command. You only need to do this once, as the newly-upgraded locator will propagate the configuration to newly-upgraded members as they come online.
    • For an XML configuration, save cache.xml, gemfire.properties, and any other relevant configuration files to a well-known location. You must repeat this step for each member you upgrade.
  6. Shut down the entire cluster (by pressing Y at the prompt, this will lose no persisted data):

    gfsh>shutdown --include-locators=true
    As a lot of data in memory will be lost, including possibly events in
    queues, do you really want to shutdown the entire distributed
    system? (Y/n): y
    Shutdown is triggered
    
    gfsh>
    No longer connected to 172.16.71.1[1099].
    gfsh>quit
    

    Since Tanzu GemFire is a Java process, to check before continuing that all Tanzu GemFire members successfully stopped, it is useful to use the JDK-included jps command to check running java processes:

    % jps
    29664 Jps
    
  7. On each machine in the cluster, install the new version of the software (alongside the older version of the software). See Installing VMware GemFire.

  8. Redeploy your environment’s configuration files to the new version installation. If you are using the cluster configuration service, one copy of the exported .zip configuration file is sufficient, as the first upgraded locator will propagate it to the other members. For XML configurations, you should have a copy of the saved configuration files for each data member.

  9. On each machine in the cluster, install any updated server code. Point all client applications to the new installation of Tanzu GemFire.

  10. Run the new version of gfsh.

  11. Start a locator and import the saved configuration. If you are using the cluster configuration service, use the same name and directory as the older version you stopped, and the new locator will access the old locator’s cluster configuration without having to import it in a separate step:

    gfsh>start locator --name=locator1 --enable-cluster-configuration=true \
    --dir=/data/locator1
    

    Otherwise, use the gfsh import cluster-configuration command or explicitly import .xml and .properties files, as appropriate.

  12. Restart all system data members using the new version of gfsh. Use the same names, directories, and other properties that were used when starting the system under the previous version of the software. (Here is where a system startup script comes in handy as a reference.) Interdependent data members may hang on startup waiting for each other. In this case, start servers in separate shells so they can communicate with one another to resolve dependencies.

  13. Upgrade Tanzu GemFire clients, following the guidelines described in Upgrading Clients.

check-circle-line exclamation-circle-line close-line
Scroll to top icon