Difference between revisions of "Procedure Infrastructure upgrade"

From D4Science Wiki
Jump to: navigation, search
(gCF based)
(Preparation of the upgrade plan)
Line 2: Line 2:
  
 
This page http://wiki.i-marine.eu/index.php/Resources_Upgrade#gCube_Upgrade contains the list of gCube upgrades perfomed in iMarine so far.
 
This page http://wiki.i-marine.eu/index.php/Resources_Upgrade#gCube_Upgrade contains the list of gCube upgrades perfomed in iMarine so far.
 
the page containing the information for QA updates is the one for the scope  Ecosystem VO, for instance:
 
 
http://wiki.i-marine.eu/index.php/Upgrade_Plan_300_Ecosystem
 
  
 
When dealing with the preparation of a deployment plan we should deal with different categories of components:
 
When dealing with the preparation of a deployment plan we should deal with different categories of components:

Revision as of 17:13, 8 April 2014

Preparation of the upgrade plan

This page http://wiki.i-marine.eu/index.php/Resources_Upgrade#gCube_Upgrade contains the list of gCube upgrades perfomed in iMarine so far.

When dealing with the preparation of a deployment plan we should deal with different categories of components:

  • Containers
    • gHN
    • Smartgears
  • gCube Services
    • gCF based
    • Smargears based
  • Portal and Portlets

Containers upgrade

The infrastructure is equipped with 2 types of containers :

  • gHN : customisation of a Globus WS core 4.0.4 container
  • SmartGears : a set of extension to any Servlet based container to enable registration and activation on the infra of webapps ( at the moment only tomcat is installed)

The main documentation regarding the containers is the gCube Admin guide:

gHN

The gHN unfortunately implements an old flat classloader schema, which means that common and application libs are all shared and stored in the same folder. When a new version of the gHN is available we should understand which changes have been applied. The typical changes are:

  • a new version of the libraries part of the gHN
  • a new version of the web services part of the gHN
  • a change on the configuration of the GHNgCube Hosting Node.

At this level of maturity the gHN upgrades difficult introduce not backward compatibilities, which should make life easier..

In order to upgrade an existing installation we have been always using 2 type of scripts:

  • upgrade script: The script downloads the new version of the gHN from Maven, removes the old libraries and copies the new ones by keeping the existing gCube Services installed. He modifies also the existing configuration if needed. In case one of the existing base gCube services ( Deployer, GHNgCube Hosting Node. Manager, ResultSet) needs to be updated it takes care also of undeploy the old version and deploy the new one
  • clean script: The script runs a reinstallation of the gHN by keeping only the gCube service state. it can be needed in case of changes of java version ( e.g. move from java 6 built artifacts to java 7) as well

The latest versions of the scripts are available on svn at:

https://svn.research-infrastructures.eu/d4science/gcube/trunk/ghn-distribution/upgrade-scripts/

The rules behind the execution of the upgrade or the clean script in a running installation are :

  • if the gHN is empty ( the gHN is not running any other web service other than the basic gCube ones) it's always better to run a clean script
  • if most of the libraries part of the gHN, the gCube services installed and their deps have changes better to run a clean script
  • if only part of the the libraries or the conf of the gHN has changed, better to always run an upgrade script.

Of course the main difference between the 2 scripts is the result. The upgrade script does not require any other action from the site manager, while the clean script requires that the gCube services previously installed on the node have to be reinstalled. ( see section on service upgrade)

SmartGears

In the case of SmartGears containers we are in front of the latest generation servlet containers, which implement separate classloaders for common and each applications and in most of the cases the upgrade is a really simple procedure.

The upgrade is a combination of 2 scripts:

gCube service upgrade

The upgrade of gCube Services depends on the nature of the services and the technology used for their development

gCF based

gCube Services gCF based are the oldest categories of Web ServiceSelf-contained, self-describing, modular application that can be published, located, and invoked across the Web. Web services perform functions that can be anything from simple requests to complicated business processes. Once a Web service is deployed, other applications (and other Web services) can discover and invoke the deployed service. developed in gCube: they are developed using the gCF ( gCore Framework) , they run in a gHN and they are packaged in a bundle called gar archive (i.e. deployer-service.gar). Also in this case we have 2 possible gar archives:

  • Normal gar archive : which contains the service implementation, the config and the wsdl
  • Full gar archive: which in addition contains all the service runtime dependencies.

The different service packaging is required because it reflects the different nature of the gCube services and their deployment model:

  • Core services ( also named Enabling layer services) : The Core Services are the minimal set of gCube Services needed to setup and manage gCube infrastructure. Due to their nature and deployment scenario they should be installed /upgraded manually
  • Application services : the services that implements the ..