wiki:HPC_deploy

Version 35 (modified by Pieter Neerincx, 8 years ago) (diff)

--

SOP for central deployment of software and reference data sets

Deploying (reference) data sets

0. Make sure perms are correct

Either use umask before you start:

umask 0002

or use

chmod g+rwX,o+rX,o-w /apps/data/.....

after deploying, but before running the hpc-environment-sync.bash script!

1. Where to put reference data

Reference data sets available to all (Hence not group specific data) can be deployed as-is in:

/apps/data/${provider}/${data_set}/$version/

When reference data must be modified for example because it must be indexed / reformatted for use with specific version of software, you must put the derived version in a sub dir to indicate it is not the original. When it was modified for a specific version of an app you could for example create additional sub dirs like this:

/apps/data/${provider}/${data_set}/$version/${app}/${version}/    

Always add a /apps/data/${provider}/${data_set}/$version/README with at least details on:

  • What the source location of the data was.
  • When it was download.
  • If a derived flavor was created: how the data was modified (link to eLabjournal and/or code in our GitHub? repos) and for what purpose.

2. Syncing deployed reference data to nodes

Before you can use reference data on cluster nodes it needs to be synced to various places.

  • Switch to the envsync user:
    $> sudo -u umcg-envsync bash 
    
  • Now sync the reference data by specifying the path to the data set relative to /apps/data/ (or specify the complete absolute path if you like to type). The sync will work recursively.
    $> hpc-environment-sync.bash -r ReferenceData/
    
    or
    $> hpc-environment-sync.bash -r /apps/data/ReferenceData/
    
  • For a full list of options use the commandline help:
    hpc-environment-sync.bash -h
    

Deploying software

Responsibility for deploying and maintaining software is distributed over two teams:

  • Deployment of system software (packages from the repos of the Linux distros we use) is handled by our sys admins and beyond the scope of this SOP.
  • Deployment of bioinformatics software is handled by the bioinformaticians from the depad group.
    If you want to join the depad group, please contact the helpdesk.

The depad group uses EasyBuild, which in turn uses EasyConfigs as recipes to enforce consistent, reproducible installations. In a nutshell an EasyConfig deployment recipe can handle the following steps:

  1. (Bootstrap an installation and satisfy dependencies)
  2. Download the (source) code
  3. Verify checksums of the downloads
  4. Unpack the downloads
  5. Configure the build
  6. Compile the code
  7. Run sanity checks to verify the build was Ok
  8. Install the (compiled) code together with it's EasyBuild log
  9. Generate a module file for use with a module system to configure the environment at runtime.

The locations where we store source code, deployed apps, their accompanying module files, etc. are documented in the Storage SOP?. We use the Lua based module system (Lmod) to make software transparently available on all machines at runtime. Details on how to install and configure EasyBuild, Lmod and our environment sync script on a new cluster can be found in our depad-utils GitHub repo.

EasyBuild comes with EasyConfigs for many of our apps of interest out of the box; These files are stored

  • On our machines in a sub sub sub directory of where EasyBuild was installed - Latest stable release we deployed.
    The easiest way to find this directory is to load EasyBuild and search for an app like this:
    $> module load EasyBuild
    $> module list
    
    Currently Loaded Modules:
      1) EasyBuild/2.2.0
    
    $> eb -S GATK
    == temporary log file in case of crash /tmp/eb-JHpvCj/easybuild-tR8MKl.log
    == Searching (case-insensitive) for 'GATK' in /apps/software/EasyBuild/2.2.0/lib/python2.6/site-packages/easybuild_easyconfigs-2.2.0-py2.6.egg/easybuild/easyconfigs 
    CFGS1=/apps/software/EasyBuild/2.2.0/lib/python2.6/site-packages/easybuild_easyconfigs-2.2.0-py2.6.egg/easybuild/easyconfigs/g/GATK
     * $CFGS1/GATK-1.0.5083.eb
     * $CFGS1/GATK-2.5-2-Java-1.7.0_10.eb
     * $CFGS1/GATK-2.6-5-Java-1.7.0_10.eb
     * $CFGS1/GATK-2.7-4-Java-1.7.0_10.eb
     * $CFGS1/GATK-2.7-4.eb
     * $CFGS1/GATK-2.8-1-Java-1.7.0_10.eb
     * $CFGS1/GATK-3.0-0-Java-1.7.0_10.eb
     * $CFGS1/GATK-3.3-0-Java-1.7.0_21.eb
    == temporary log file(s) /tmp/eb-JHpvCj/easybuild-tR8MKl.log* have been removed.
    == temporary directory /tmp/eb-JHpvCj has been removed.
    
  • On https://github.com/hpcugent/easybuild-easyconfigs/tree/master/easybuild/easyconfigs - Latest and greatest from the source.
  • On our machines in /apps/sources/EasyBuild/custom/ - Bleeding edge home made EasyConfigs that were not yet committed to and pull-merged into the GitHub repos.

If there is no existing EasyConfig, we have to create one ourselves. First an example of a custom EasyBuild file created for deploying our NGS_DNA pipeline. Below the code there will be the explanation of all the steps in the recipe.

name = 'NGS_DNA'
version = '3.1.2'
namelower = name.lower()
homepage = 'https://github.com/molgenis/molgenis-pipelines'
description = """This distribution already contains several pipelines/protocols/parameter files which you can use 'out-of-the-box' to align and impute your NGS data using MOLGENIS Compute."""

toolchain = {'name': 'dummy', 'version': 'dummy'}
easyblock = 'Tarball'

#dependencies
molname = 'Molgenis-Compute'
molversion = 'v15.04.1-Java-1.7.0_80'
versionsuffix = '-%s-%s' % (molname,molversion)
dependencies = [(molname,molversion)]

source_urls = [('http://github.com/molgenis/molgenis-pipelines/releases/download/%s/' % (version))]
sources = [('%s-%s.tar.gz' % (name, version))]

sanity_check_paths = {
    'files': ['workflow.csv', 'parameters.csv'],
    'dirs': []
}

moduleclass = 'bio'
  • name and version are pretty clear
  • homepage and description; are recommended when releasing a future release of the tool.
  • toolchain; can be left like it is in this example. Only when multiple tools need to be installed as dependencies for compiling or installing this one, a toolchain is required. See the !EasyBuild docs for details.
  • easyblock; this is the type of data, tar.gz = ‘Tarball’ , executable = ‘Binary’ . All the different easyblocks are described here
  • If there are any language/framework dependencies (in this case Molgenis-Compute), you put it in the name of your eb file; Name may look for example like this: NGS_DNA-3.1.2-Molgenis-Compute-v15.04.1-Java-1.7.0_80
  • Using variables instead of typing the same string 5 times is done with %s and then between () the name of the variable.
  • One necessary step is to set sanity_check_paths, this is a check whether the file is unpacked/installed correctly.
  • All the installed eb configs are put automatically in the /apps/modules/all folder, but with moduleclass you can specify an extra module path. N.B. when typing the command module avail on the cluster will only display the non-all modules. So specifying an extra moduleclass is necessary to find your module back in module avail

For more complicated installations like for example for R, please read the documentation online and have a look at existing EasyConfigs.

0. Make sure perms are correct

Either use umask before you start:

umask 0002

or use

chmod g+rwX,o+rX,o-w /apps/software/.....   /apps/modules/.....

after deploying, but before running the hpc-environment-sync.bash script!

1. Find existing EasyConfig or create a new one

  • To search for existing EasyConfigs in both the default robot search path as well as in our dir for custom EasyConfigs:
    $> module load EasyBuild
    $> module list
    $> eb --robot-paths=:/apps/sources/EasyBuild/custom/ -S MySearchTerm
    
  • When no suitable EasyConfig is present, create your own:
    $> cd /apps/sources/EasyBuild/custom/
    $> touch MyEasyConfig-1.2.3.eb
    
    Make sure to name the *.eb file exactly the same as the name of the eventually installed module and its version.

2. Installing the software

Enable the robot option for automatic dependency resolution and append our dir for custom EasyConfigs to the search path to make EasyBuild search for deps in first the default and second our custom dir in that order of precedence.

$> module load EasyBuild
$> module list
$> eb --robot --robot-paths=:/apps/sources/EasyBuild/custom/ /path/to/MyEasyConfig-1.2.3.eb

3. Specifying the default version of an app (optional)

When you load an app into your environment with the module load command without specifying explicitly which version you want to use, Lmod will load the highest version number. This is usually fine, but if you installed a new version that is not yet well tested, you may want to explicitly configure an older version as the default. This can simply be accomplished by creating a relative symlink named default. Our module files are located at /apps/modules/. For example let's look at our NGS_DNA analysis pipeline. It is part of the bio collection of apps, so the the module files are in:

$> ls -ahl /apps/modules/bio/NGS_DNA/
total 20K
drwxrwsr-x  2 prefix-someuser  umcg-depad 4.0K Nov 12 15:28 .
drwxrwsr-x 64 prefix-someuser  umcg-depad 4.0K Nov 18 17:43 ..
lrwxrwxrwx  1 prefix-someuser  umcg-depad   71 Aug 25 10:52 3.0.2-Molgenis-Compute-v15.04.1-Java-1.7.0_80 -> /apps/modules/all/NGS_DNA/3.0.2-Molgenis-Compute-v15.04.1-Java-1.7.0_80
lrwxrwxrwx  1 prefix-someuser  umcg-depad   71 Nov  4 09:04 3.1.2-Molgenis-Compute-v15.04.1-Java-1.7.0_80 -> /apps/modules/all/NGS_DNA/3.1.2-Molgenis-Compute-v15.04.1-Java-1.7.0_80
lrwxrwxrwx  1 prefix-someuser  umcg-depad   71 Nov 12 15:28 3.2.1-Molgenis-Compute-v15.11.1-Java-1.8.0_45 -> /apps/modules/all/NGS_DNA/3.2.1-Molgenis-Compute-v15.11.1-Java-1.8.0_45
lrwxrwxrwx  1 prefix-someuser  umcg-depad   45 Sep 24 16:22 default -> 3.1.2-Molgenis-Compute-v15.04.1-Java-1.7.0_80

Note that all module files for all apps are in /apps/modules/all/ and we only see symlinks in /apps/modules/bio/. Version 3.2.1 is the latest, but 3.1.2 has been designated as default using a symlink. The symlink must be a relative one pointing to a file or another symlink in the same directory. You may have to update the Lmod caches before the change in default version takes effect. We can check with if the symlink was recognised using:

$> module avail NGS_DNA

-------------------------- /apps/modules/bio --------------------------
   NGS_DNA/3.0.2-Molgenis-Compute-v15.04.1-Java-1.7.0_80
   NGS_DNA/3.1.2-Molgenis-Compute-v15.04.1-Java-1.7.0_80 (D)
   NGS_DNA/3.2.1-Molgenis-Compute-v15.11.1-Java-1.8.0_45

  Where:
   (D):  Default Module

$> module load NGS_DNA
$> module list

Currently Loaded Modules:
  1) Java/1.7.0_80 
  2) Molgenis-Compute/v15.04.1-Java-1.7.0_80 
  3) NGS_DNA/3.1.2-Molgenis-Compute-v15.04.1-Java-1.7.0_80

4. Deprecating a previously installed older version of an app (optional)

You can inform users that (a certain version of) an app is deprecated and will be removed in the near future by creating a custom message when an app is added to the environment with module load. Add your custom message to /apps/modules/modules.admin. For example with this modules.admin:

#
# The Lmod admin file consists of "key: value" pairs terminated with a blank line:
#
#    moduleName/version:  message
#    <blank line>
#
# Or
#
#    Full/PATH/to/Modulefile: message
#    <blank line>
#
# The message can be as many lines as you like and must be terminated with a blank line.
#
# Currently used by picard/1.102-Java-1.7.0_80
R/3.1.2-goolf-1.7.20: Deprecated incomplete installation. Will be removed in the near future.

loading this specific version of R will now result in:

$> module load R/3.1.2-goolf-1.7.20
--------------------------------------------------------------------------
There are messages associated with the following module(s):
--------------------------------------------------------------------------
R/3.1.2-goolf-1.7.20:
   Deprecated incomplete installation. Will be removed in the near future.
--------------------------------------------------------------------------

Note: You may have to update the Lmod caches before a change in custom messages takes effect.

5. Updating the Lmod caches and syncing installed software to nodes

Before you can use the installed software it needs to be synced to various places and the Lmod caches needs to be updated.

  • Switch to the envsync user:
    $> sudo -u umcg-envsync bash 
    
  • Now sync the module:
    $> hpc-environment-sync.bash -m <modulename>/<module version>
    
  • For a full list of options use the commandline help:
    hpc-environment-sync.bash -h
    

FAQ

Q: Why can I not re-deploy a module and receive an error that the module file is already present

A: By default EasyBuild will refuse to overwrite an existing installation. Modules that have been deployed and are used for production should never be modified: deploy a new version instead. During debugging/testing it may be necessary to overwrite a module though; I that case you can force install using -f like this:

$> eb -f --robot --robot-paths=:/apps/sources/EasyBuild/custom/ /path/to/MyEasyConfig-1.2.3.eb

Q: I've updated the source code for an app, but when I try to re-deploy with EasyBuild nothing changes; What is wrong?

A: EasyBuild will first check whether the source code was previously already downloaded and cached. If yes, it will not re-download again. The cached sources are located in /apps/sources/[a-z]/NameOfTheApp/. Removing the existing download will force EasyBuild to re-download the (updated) source code.

Q: EasyBuild fails to download the source code. How can I continue the installation process?

A: First check if the location where EasyBuild tries to download the source code is still up-to-date. If not update the EasyConfig. If the location is correct, but EasyBuild cannot access this location directly for example because it is blocked by our firewall or because it requires authentication, you can try to download the source manually and put it in the cache directory for the app in /apps/sources/[a-z]/NameOfTheApp/. When EasyBuild finds the cached source code it will skip the download step and continue.