[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
Repetition
script
API_KEY
[scheduling]
[[dependencies]]
[[[T00/PT3H]]]
graph = """
get_observations_aldergrove => consolidate_observations
get_observations_camborne => consolidate_observations
get_observations_heathrow => consolidate_observations
get_observations_shetland => consolidate_observations
"""
Cylc offers three ways of consolidating configurations to help improve the structure of a suite and avoid duplication.
cylc get-config
Command§cylc get-config <path> --sparse
# Print the contents of the [scheduling] section.
cylc get-config <path> --sparse -i '[scheduling]'
# Print the contents of the get_observations_heathrow task.
cylc get-config <path> --sparse -i '[runtime][get_observations_heathrow]'
# Print the value of the script setting in the get_observations_heathrow task
cylc get-config <path> --sparse -i '[runtime][get_observations_heathrow]script'
cylc get-config
Command§Note that cylc get-config
doesn’t expand families or parameterisations
in the graph. Use cylc graph
to visualise these.
As a rule of thumb each method works best for:
Next section: Rose Tutorial