Runtime Configuration§
In the last section we associated tasks with scripts and ran a simple suite. In this section we will look at how we can configure these tasks.
In the last section we associated tasks with scripts and ran a simple suite. In this section we will look at how we can configure these tasks.
[runtime]
[[countdown]]
script = seq $START_NUMBER
[[[environment]]]
START_NUMBER = 5
CYLC_SUITE_RUN_DIR
CYLC_TASK_WORK_DIR
CYLC_TASK_CYCLE_POINT
[runtime]
[[hello_computehost]]
script = echo "Hello Compute Host"
[[[remote]]]
host = computehost
[runtime]
[[big_task]]
script = big-executable
# Submit to the host "big-computer".
[[[remote]]]
host = big-computer
# Submit the job using the "slurm" batch system.
[[[job]]]
batch system = slurm
# Inform "slurm" that this job requires 500MB of RAM and 4 CPUs.
[[[directives]]]
--mem = 500
--ntasks = 4
[runtime]
[[some_task]]
script = some-executable
[[[job]]]
execution time limit = PT15M # 15 minutes.
Sometimes jobs fail. This can be caused by two factors:
execution time limit
.[runtime]
[[some-task]]
script = some-script
[[[job]]]
# In the event of execution failure, retry a maximum
# of three times every 15 minutes.
execution retry delays = 3*PT15M
# In the event of submission failure, retry a maximum
# of two times every ten minutes and then every 30
# minutes thereafter.
submission retry delays = 2*PT10M, PT30M
cylc run <name>
cylc stop <name>
cylc restart <name>
cylc stop <name> --kill
cylc stop <name> --now --now
In this practical we will add runtime configuration to the weather-forecasting suite from the scheduling tutorial.
Next section: Consolidating Configuration
Practical§
In this practical we will add runtime configuration to the weather-forecasting suite from the scheduling tutorial.
Create A New Suite.
Create a new suite by running the command:
rose tutorial runtime-tutorial
cd ~/cylc-run/runtime-tutorial
You will now have a copy of the weather-forecasting suite along with some executables and python modules.
Set The Initial And Final Cycle Points.
First we will set the initial and final cycle points (see the datetime tutorial for help with writing ISO8601 datetimes):
Reminder
Remember that we are working in UTC mode (the +00
time zone).
Datetimes should end with a Z
character to reflect this.
Solution
You can check your answers by running the following commands (hyphens and colons optional but can’t be mixed):
rose date --utc --offset -PT7H --format CCYY-MM-DDThh:00Z
rose date --utc --offset -PT1H --format CCYY-MM-DDThh:00Z
Run cylc validate
to check for any errors:
cylc validate .
Add Runtime Configuration For The get_observations
Tasks.
In the bin
directory is a script called get-observations
. This
script gets weather data from the MetOffice DataPoint service.
It requires two environment variables:
SITE_ID
:A four digit numerical code which is used to identify a
weather station, e.g. 3772
is Heathrow Airport.
API_KEY
:An authentication key required for access to the service.
Generate a Datapoint API key:
rose tutorial api-key
Add the following lines to the bottom of the suite.rc
file replacing
xxx...
with your API key:
[runtime]
[[get_observations_heathrow]]
script = get-observations
[[[environment]]]
SITE_ID = 3772
API_KEY = xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
Add three more get_observations
tasks for each of the remaining
weather stations.
You will need the codes for the other three weather stations, which are:
3808
3005
3917
Solution
[runtime]
[[get_observations_heathrow]]
script = get-observations
[[[environment]]]
SITE_ID = 3772
API_KEY = xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
[[get_observations_camborne]]
script = get-observations
[[[environment]]]
SITE_ID = 3808
API_KEY = xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
[[get_observations_shetland]]
script = get-observations
[[[environment]]]
SITE_ID = 3005
API_KEY = xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
[[get_observations_aldergrove]]
script = get-observations
[[[environment]]]
SITE_ID = 3917
API_KEY = xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
Check the suite.rc
file is valid by running the command:
cylc validate .
Test The get_observations
Tasks.
Next we will test the get_observations
tasks.
Open the Cylc GUI by running the following command:
cylc gui runtime-tutorial &
Run the suite either by pressing the play button in the Cylc GUI or by running the command:
cylc run runtime-tutorial
If all goes well the suite will startup and the tasks will run and
succeed. Note that the tasks which do not have a [runtime]
section
will still run though they will not do anything as they do not call any
scripts.
Once the suite has reached the final cycle point and all tasks have succeeded the suite will automatically shutdown.
The get-observations
script produces a file called wind.csv
which
specifies the wind speed and direction. This file is written in the task’s
work directory.
Try and open one of the wind.csv
files. Note that the path to the
work directory is:
work/<cycle-point>/<task-name>
You should find a file containing four numbers:
Hint
If you run ls work
you should see a
list of cycles. Pick one of them and open the file:
work/<cycle-point>/get_observations_heathrow/wind.csv
Add runtime configuration for the other tasks.
The runtime configuration for the remaining tasks has been written out
for you in the runtime
file which you will find in the
suite directory. Copy the code in the runtime
file to the
bottom of the suite.rc
file.
Check the suite.rc
file is valid by running the command:
cylc validate .
Run The Suite.
Open the Cylc GUI (if not already open) and run the suite.
Hint
cylc gui runtime-tutorial &
Run the suite either by:
cylc run runtime-tutorial
.View The Forecast Summary.
The post_process_exeter
task will produce a one-line summary of the
weather in Exeter, as forecast two hours ahead of time. This summary can
be found in the summary.txt
file in the work directory.
Try opening the summary file - it will be in the last cycle. The path to the work directory is:
work/<cycle-point>/<task-name>
Hint
cycle-point
- this will be the last cycle of the suite,
i.e. the final cycle point.task-name
- set this to “post_process_exeter”.View The Rainfall Data.
The forecast
task will produce a html page where the rainfall
data is rendered on a map. This html file is called job-map.html
and
is saved alongside the job log.
Try opening this file in a web browser, e.g via:
firefox <filename> &
The path to the job log directory is:
log/job/<cycle-point>/<task-name>/<submission-number>
Hint
cycle-point
- this will be the last cycle of the suite,
i.e. the final cycle point.task-name
- set this to “forecast”.submission-number
- set this to “01”.