User Tools

Site Tools


tools:autosubmit

This is an old revision of the document!


This wiki is being updated (June 2020). Most of their content will be moved to GitLab wiki. You can check the Useful links section below.

Objective

Autosubmit launches and monitors experiments on any platform used at Earth Sciences Department. A general description of the goal of Autosubmit, how it works, how to install on your computer, user's manual and documentation is available here.

Repository

The repository and issue tracker of Autosubmit is here

https://earth.bsc.es/gitlab/es/autosubmit.git

How to cite Autosubmit

IEEE pdf D. Manubens-Gil, J. Vegas-Regidor, C. Prodhomme, O. Mula-Valls and F. J. Doblas-Reyes, “Seamless management of ensemble climate prediction experiments on HPC platforms,” 2016 International Conference on High Performance Computing & Simulation (HPCS), Innsbruck, 2016, pp. 895-900. doi: 10.1109/HPCSim.2016.7568429

Description

General Description

Introduction

A typical climate forecast experiment is a run of a climate model over a supercomputer having variable range of forecast length from a few months to a few years. And an experiment may have one or more than one start-dates and every start-date may comprise of single or many members. The full length of forecasting period for the experiment could be divided into number of chunks of fixed forecast length by exploiting the available options of model restart. Furthermore, in the context of computing operations, every chunk could have two big sections; parallel section where the actually model run would be performed by using computing cores of supercomputer and serial section(s) for performing other necessary operations like post-processing of the model output, archiving the model output and cleaning the disk space for the smooth proceeding of the experiment.

As we could see in the sample experiment which consists of 10 start-dates from 1960 to 2005 where every start-date is independent of each other and starting after every 5 years while each start-date comprise of 5 members. Every member is also independent and has been divided into 10 chunks which are dependent on each other. Now let us suppose that the forecast length for each chunk is one year and every chunk comprises of three types of jobs; a simulation (Sim), a post-processing (Post) and an archiving and cleaning job (Clean). Therefore with this typical exemplary experiment, one start-date with one member comprise of 30 jobs and eventually 1500 jobs will be run in total for the completion of the experiment. In short, there is a need of a system to automate such type of typical experiments and optimize the use of resources.

Goal

Autosubmit is a tool to manage and monitor climate forecasting experiments by using supercomputers remotely and achieve the following goals:

  • Efficient handling of highly dependent jobs
  • Optimum utilization of available computing resources
  • Ease of starting, stopping and live monitoring of experiments
  • Auto restarting the experiment or some part of experiment in case of failure
  • Use of database for experiment creation and assigning automatic experiment identity
  • Ability to reproduce the completed experiments fully or partially.

Technical Description

IS-ENES 2

A CNRM-CM6 monitoring using Autosubmit

A few members of seasonal forecast experiment using CNRM-CM6 on ECMWF IBM Power 7 has been performed using Autosubmit monitoring. A few day long collaboration at IC3 has been sufficient to adapt the existing CNRM workflow script to Autosubmit non-intrusive requirements. Nevertheless, a more comprehensive work would be necessary to fully exploit Autosubmit capabilities to monitor and control the full workflow (from compiling) on any kind of supercomputer platform.

The technical report descirbing the work is available here: http://www.cerfacs.fr/globc/publication/technicalreport/2014/autosubmit_cnrm-cm.pdf

Requirements

How to deploy/setup Autosubmit (v3)

If you need Autosubmit 3.x on a non ES machine, you can download and install it by typing

pip install autosubmit

And follow installation documentation here:

http://www.bsc.es/projects/earthscience/autosubmit/installation.html

How to deploy/setup Autosubmit (v2)

If you need an older version (2.x) you must download it by typing:

git clone https://earth.bsc.es/gitlab/es/autosubmit.git

and then you can switch to the required tag with

git checkout tags/<tag_name>

Pre-requisties: These packages (python2, python-argparse, python-dateutil, python-pydot, python-matplotlib, sqlite3) must be available at local machine. And the machine is also able to access HPC's/Clusters via password-less ssh.

Create a repository for experiments: Say for example “/cfu/autosubmit” then edit the repository path into src/dir_config.py, src/expid.py, conf/autosubmit.conf Create a blank database: Say for example “autosubmit.db” at above created repository and thereafter:

> cd /cfu/autosubmit
> sqlite3 autosubmit.db
sqlite3>.read ../../src/autosubmit.sql
> chmod 777 autosubmit.db

Use

User guide: http://www.bsc.es/projects/earthscience/autosubmit/

Run Autosubmit in BSC-ES: Here

Tutorials

Presentations

Contact

The coordinator of this project is Miguel Castrillo miguel.castrillo@bsc.es

Miguel Castrillo miguel.castrillo@bsc.es, Daniel Beltrán daniel.beltran@bsc.es, Wilmer Uruchi wilmer.uruchi@bsc.es

Development

SCRUM Framework

GIT branching scheme

See the following page to check the current branching scheme used within the GIT project 'autosubmit': Git branching scheme

Style Guide

You can check the style guide for Autosubmit here

Update to the latest autosubmit development version using virtual environment

Adapted from the wiki page about virtual environments https://earth.bsc.es/wiki/doku.php?id=library:python_venvs

 > ssh -X bscesautosubmit01
 > module purge
 > mkdir -p ~/venvs/as_dev
 > virtualenv ~/venvs/as_dev
 > source ~/venvs/as_dev/bin/activate
 > pip install https://earth.bsc.es/gitlab/es/autosubmit/repository/archive.zip?ref=develop
 > autosubmit -v 
 

In the meantime, if there has been autosubmit development, to update it to the latest version:

 > ssh -X bscesautosubmit01
 > module purge
 > source ~/venvs/as_dev/bin/activate
 > pip install --upgrade https://earth.bsc.es/gitlab/es/autosubmit/repository/archive.zip?ref=develop
 > autosubmit -v    
tools/autosubmit.1593704147.txt.gz · Last modified: 2020/07/02 15:35 by mcastril