Updating implementations

Updating implementations from Devtool packages require some steps to be done. The UpdateImplementation command-line tool helps to automate the process by performing the following steps:

1 Usage

The tool can either be configured with a configuration file:

/Node/bin/java.sh com.gentics.contentnode.tools.UpdateImplementation -f update.yml

or via command-line parameters:

/Node/bin/java.sh com.gentics.contentnode.tools.UpdateImplementation -u node -p secret -P baseimplementation gallery

Note: If both a configuration file and command-line parameters are given, the command-line parameters will overwrite settings from the configuration file.

2 Parameters

command-line Configuration File Default Description
--help
Print usage and exit
-f,--file [path]
Path to configuration file
-b,--base [url]
base http://localhost Base URL to the CMS
-u,--user [login]
user required Username for accessing the CMS
-p,--password [pass]
password required Password
-P,--package [pck]
package List of packages to synchronize
-c,--contentrepository [crs]
contentrepository List of Content.Repository IDs to repair
-m,--maintenanceMode
maintenanceMode false Flag to enable maintenance mode
-M,--maintenanceMessage [msg]
maintenanceMessage Maintenance message
-r,--reloadConfig
reloadConfig false Flag to reload the configuration
-rfi,--republishFiles
republishFiles false Flag to republish files
-rfo,--republishFolders
republishFolders false Flag to republish folders
-rp,--republishPages
republishPages false Flag to republish pages
-rs,--resumeScheduler [when]
resumeScheduler always Whether to resume the scheduler. “always” will resume the scheduler everytime (on success), “running” will resume the scheduler only if it was running before, “never” will never resume the scheduler
-t,--timeout [ms]
timeout 60000 Timeout in milliseconds for waiting for some long-lasting tasks (e.g. suspending the scheduler, repairing Content.Repositories, …)

Configuration file example:

config.yml

user: node
password: secret
package:
  - baseimplementation
  - gallery
contentrepository:
  - 47
  - 11
maintenanceMode: true
maintenanceMessage: The CMS is currently not available due to an update.
reloadConfig: true

3 Details

3.1 Error behaviour

If something goes wrong (devool package synchronization fails, Content.Repository cannot be repaired successfully, …), the tool will fail immediately. This means that the scheduler will still be suspended and the maintenance mode will still be set.

3.2 Init checks

Before doing anything else, the tool will login to the CMS (checking base URL and login credentials) and read all configured devtool packages and Content.Repositories (checking for existence and permissions). If anything fails, the tool with fail with an error.

3.3 Set maintenance mode (optional)

Maintenance mode and message will be set at the beginning of the update process. Maintenance mode and message can be set independently.

3.4 Suspend scheduler

The tool will suspend the scheduler and wait, until all currently running scheduler tasks finish. If the scheduler failes to reach the state “suspended” in the configured timeout, the tool will fail with an error.

3.5 Reload configuration (optional)

The tool will trigger a “reload configuration” in the CMS, which will let any changes in configuration files become effective (e.g. activate additional features, …).

3.6 Devtool packages (optional)

All listed devtool packages will be synchronized from the filesystem into the CMS in the order, they were defined. If synchronization for a devtool package fails, the tool will fail with an error.

3.7 Content.Repositories (optional)

All listed Content.Repositories will be repaired in the order, they were defined. Repairing a Content.Repository will update the structure to meet any changes in the tagmap. For Mesh Content.Repository, this will also generate new Branches (if required), update Schemas and wait for Node or Schema Migrations. If repairing a Content.Repository fails or takes longer than the configured timeout, the tool will fail with an error.

3.8 Republish objects (optional)

The tool will dirt published objects of all nodes, which either have one of the devool packages assigned or are published into one of the Content.Repositories.

3.9 Resume scheduler (optional)

The scheduler will be resumed.

3.10 Reset maintenance mode (optional)

If maintenance mode was set, it will be cleared. If a maintenance message was set, it will be reset to empty.