2. Upgrading from GemStone/S 64 Bit 3.3.x

Previous chapter

Next chapter

This chapter describes how to upgrade an existing GemStone/S 64 Bit 3.3.x installation to GemStone/S 64 Bit version 3.3.5.

For upgrading from GemStone/S 64 Bit versions 3.1.x and 3.2.x, which require extra steps such as recompilation, see Upgrading from 3.2x, 3.1.x, or 3.0.x

For upgrading from GemStone/S 64 Bit 2.x versions, which require conversion, see Converting from GemStone/S 64 Bit 2.4.x versions.

If you are using GemBuilder for Smalltalk (GBS), you also need to upgrade the client libraries that are used by GBS. You may also need to upgrade your version of GBS; versions of GBS earlier than 8.1 or 5.4.3 are not compatible with v3.3.5. See Chapter 5 for details.

Note on ICU library version

ICU libraries support unicode comparisons in v3.1 and later. These are versioned corresponding to changes in the Unicode standard. Major releases of GemStone/S 64 Bit default to the latest ICU library version:

3.3: ICU library version 54.1
3.2: ICU library version 51.2
3.1: ICU library version 48.1

There is some risk for repositories with data structures that depend on ICU collation and encoding—specifically SortedCollections and indexes, but other structures may be affected—if they do not use the same ICU library version as was in use when the data structure was created; see the bugnote for bug 46056.

After upgrade to 3.3.5, your repository will use either v54.1 or 52.1, depending on the particular sequence of upgrades.

If the repository you are upgrading from has ever been upgraded to any 3.1.x version, and (starting in or before that version) contains persistent SortedCollections or Indexes that involve ICU collation, then you may have an ICU library version mismatch, and resort and rebuild (respectively) is required to avoid risk of errors.

If you have previously performed a resort/rebuild in any v3.2.x version, it does not need to be done again, the correct library will be automatically used.

Upgrade Strategy

We recommend that you perform the upgrade twice: first a pilot upgrade and then the production upgrade. With this strategy, you can keep your production system running while you familiarize yourself with the upgrade process.

Upgrade Procedure

The following list summarizes the steps necessary to perform the upgrade to GemStone/S 64 Bit version 3.3.5.

NOTE
The following instructions use the version number 3.3 to refer to the version you are upgrading from, and version number 3.3.5 indicate the target version you are upgrading to.

Prior to Upgrade in existing application

1. Check for use of deprecated methods

Verify that your application does not invoke any methods that were deprecated in previous releases, by enabling error or logging on deprecation in your existing repository. Deprecated methods are subject to removal in major releases; finding them before upgrading allows the deprecation messages to provide replacement instructions.

For details on finding deprecated methods, refer to the Programming Guide for GemStone/S 64 Bit v3.3.

2. File out modifications to GemStone classes

File out any modifications or additions you made to GemStone/S 64 Bit kernel class methods. For more information about fileout, see the GemStone/S 64 Bit Topaz Programming Environment.

You will need to carefully compare these changes with GemStone/S 64 Bit 3.3.5 kernel methods, and refer to the Release Notes for version 3.3.5 to determine whether your changes are still necessary or appropriate.

CAUTION
Any changes that you have made to the GemStone/S 64 Bit kernel classes will be lost during upgrade; you MUST file these out in order to preserve the changes in version 3.3.5.

Prepare for Upgrade

1. Install and configure GemStone/S 64 Bit 3.3.5

Install GemStone/S 64 Bit 3.3.5 to a new installation directory, separate from the installation directory for version 3.3, as described in Installing GemStone/S 64 Bit Version 3.3.5.

Configure GemStone/S 64 Bit 3.3.5 the way you expect to use it — that is, with the appropriate extent locations and sizes.

If you copy the configuration files from your previous version to the version 3.3.5, be sure to review any changes in configuration parameters to determine if changes are needed.

You should ensure that adequate space is available for extents, transaction logs, and a backup during the upgrade. You must provide space for the extents and transaction logs for both repositories, the old and the new.

2. Reset SystemUser password

Log in to the version 3.3 system as a user with OtherPassword privilege, such as DataCurator, and reset the SystemUser password to ‘swordfish’:

topaz 1> printit
(AllUsers userWithId: #SystemUser) password: 'swordfish' .
System commitTransaction.
%

The upgrade script logs in with the SystemUser account and the default password, and resets the password for DataCurator and GcUser.

3. Stop user activity

Log in to the version 3.3 system as a user with SessionAccess and SystemControl privileges, such as DataCurator, and halt all user activity on the repository.

topaz 1> printit
System stopUserSessions.
%
4. Shut down the repository

You may now shut down the Stone. At the UNIX command line:

% stopstone stone33

where stone33 is the name of the version 3.3 stone on this machine. The repository must be cleanly shut down to avoid needing recovery when it is restarted with the new version’s executables.

5. Set up the version 3.3.5 environment.

Set the environment variables required for the upgrade.

C shell:

% setenv GEMSTONE InstallDir335
% set path = ($GEMSTONE/bin $path)
% setenv upgradeLogDir tempDir 

Bourne or Korn shell:

$ GEMSTONE=InstallDir335
$ export GEMSTONE
$ export PATH=$GEMSTONE/bin:$PATH
$ upgradeLogDir=tempDir
$ export upgradeLogDir

where InstallDir335 is the GemStone/S 64 Bit version 3.3.5 installation and tempDir is a temporary directory for which you have write permission.

NOTE
Use a separate log directory for each repository you convert.

6. Copy extent files

Copy your version 3.3 extent files into the location specified by the configuration file option DBF_EXTENT_NAMES:

a. Using a text editor, open the configuration file that the version 3.3 repository uses.

b. Locate the last occurrence of the option DBF_EXTENT_NAMES, and note its value, a list of .dbf files.

c. Copy each .dbf file to the noted location in the version 3.3.5 installation. For example:

% cp InstallDir33/data/extent0.dbf 335location
% cp InstallDir33/data/extent1.dbf 335location
% cp InstallDir33/data/extent2.dbf 335location

where 335location is the location specified by DBF_EXTENT_NAMES in the configuration file that will be used in version 3.3.5.

Before upgrading, ensure that there are no transaction logs from a previous version of GemStone/S 64 Bit in any of the transaction log locations specified in the configuration file that will be used by version 3.3.5. Transaction logs from earlier versions are not compatible with version 3.3.5. If the transaction log directories will be reused for version 3.3.5, any transaction logs should be deleted or copied elsewhere.

Perform the Upgrade

1. Start the Stone

Start the 3.3.5 Stone on the 3.3 extents you just copied:

% startstone stoneName335
2. Upgrade image

Ensure you are in a directory to which you have write permission, and run the upgrade script.

The upgrade is performed by the script upgradeImage. This script has optional switches to specify the stone name and to set to size of the GEM_TEMPOBJ_CACHE_SIZE used for the upgrade process.

upgradeImage [-h] [-c <cacheSize>] [-s <stoneName>]
-h prints this usage information.
-c <cacheSize> sets the size of the GEM_TEMPOBJ_CACHE_SIZE; if this is not
used, the script will default to use a value of 100000. 
-s <stoneName> sets the name of the running stone to upgrade; if this option is
not used, the script will default to gs64stone.

For example,

% upgradeImage -s stoneName335

The script will prompt you to press the return key to begin.

The script invokes subordinate scripts to complete the upgrade. The upgrade process will take some time. You can examine the progress, if desired, by examining the file $GEMSTONE/upgradeImage.out.

The script should complete with the message:

Upgrade completed. No errors detected.

If not, please preserve the Stone log file and the contents of $upgradeLogDir. Contact your internal GemStone support person or GemStone Technical Support.

3. Restore System Account passwords

Log in to GemStone/S 64 Bit version 3.3.5 as DataCurator or SystemUser, and change the password for SystemUser, DataCurator, and GcUser to a secure password, such as the passwords used for these accounts in v3.3. For example:

topaz 1> printit
(AllUsers userWithId: 'SystemUser') password: '33Password'.
(AllUsers userWithId: 'GcUser') password: '33Password'.
(AllUsers userWithId: 'DataCurator') password: '33Password'.
System commitTransaction
%

where 33Password is the account password used in version 3.3.

Post-upgrade Application Code Modifications

1. Reinstall any other GemStone products that modify kernel classes.

If you use GemConnect or GemBuilder for Java, you must reinstall the appropriate version of these products into your repository at this time.

To install, use the procedure in the Installation Guide for that product.

2. File in Kernel class changes

If you have modified any kernel class methods of the previous version or if you have added methods to kernel classes, carefully compare your changes with the changes in version 3.3.5 to see whether your changes are still necessary or appropriate. Carefully review the Release Notes for each intervening version, as well as examining code in the image.

If the kernel class changes are still applicable, file in the changes, verify that errorcount is 0, and commit.

3. Resort for ICU-based collation

This step is only required if all of the following are true:

  • The repository has been progressively upgraded through either 3.3 or through any 3.1.x version.
  • It contains data structures that existed in v3.3 or v3.1.x that depend on ICU collation order or encoding, including SortedCollections that include unicode strings, indexes on unicode strings, , or other string-based persistent data structures for application in Unicode comparison mode
  • These data structures have not been resorted/rebuilt in a previous 3.2.x or 3.3.x version as part of an earlier upgrade.

If these are true, then you should resort all instances of SortedCollection that involve unicode strings (or legacy strings in Unicode Comparison Mode), and drop and rebuild indexes that involve instances of unicode strings (or legacy strings in Unicode Comparison Mode), to ensure these are sorted according the ICU collation now in use in the image.

After upgrade to 3.3.5, the repository will configured to use either ICU v52.1 or v54.1, depending on the previous version. The ICU library version loaded at login is controlled by the value of (Globals at:#IcuLibraryVersion).

Backup repository and configure GBS

1. Make backup

At this point, you should create a full backup of the upgraded repository.

2. Configure GBS

If you are using GBS clients, ensure you are running a supported version of GBS and client Smalltalk. You must use GBS version 8.1 or later for VW, or GBS 5.4.3 or later for VA, to connect to a GemStone/S 64 Bit v3.3.5 repository.

Configure GBS to use the version 3.3.5 client libraries. Depending on the GBS version you are upgrading from, the required libraries, library naming conventions, and the process GBS uses to identify the correct library to load may have changed.

See Configuring GBS for GemStone/S 64 Bit for details. If your GBS clients run on a different platform than your GemStone server, refer to the Installation Guide for that platform.

Previous chapter

Next chapter