Skip to content

Commit

Permalink
Run METplus serially and correct the name of prod tasks (NOAA-EMC#2804)
Browse files Browse the repository at this point in the history
Adds 2 hot fixes:

- METplus v9.1.3 has a bug in it that sometimes attempts to create
multiple copies of the same directory when running in parallel, causing
a Python error and downstream problems. This PR makes METplus run in
serial mode, preventing such issues.
- Corrects the name of the atmos_prod, ocean_prod, and ice_prod tasks in
workflow/rocoto/tasks.py (was accidentally changed to e.g. atmosprod)
  • Loading branch information
DavidHuber-NOAA authored Aug 2, 2024
1 parent 0706c59 commit 6d7f7e8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions parm/config/gfs/config.resources
Original file line number Diff line number Diff line change
Expand Up @@ -889,8 +889,8 @@ case ${step} in
threads_per_task=1
walltime_gdas="03:00:00"
walltime_gfs="06:00:00"
ntasks=4
tasks_per_node=4
ntasks=1
tasks_per_node=1
export memory="80G"
;;

Expand Down
2 changes: 1 addition & 1 deletion workflow/rocoto/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ class Tasks:
'prepsnowobs', 'snowanl',
'fcst',
'atmanlupp', 'atmanlprod', 'atmupp', 'goesupp',
'atmosprod', 'oceanprod', 'iceprod',
'atmos_prod', 'ocean_prod', 'ice_prod',
'verfozn', 'verfrad', 'vminmon',
'metp',
'tracker', 'genesis', 'genesis_fsu',
Expand Down

0 comments on commit 6d7f7e8

Please sign in to comment.