Skip to content

Commit

Permalink
Merge branch 'release/obsproc.v1.2.0' of https://github.com/noaa-emc/…
Browse files Browse the repository at this point in the history
…obsproc into release/obsproc.v1.2.0
  • Loading branch information
ilianagenkova committed May 31, 2024
2 parents 7c27321 + ab1271c commit 3bfc153
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
13 changes: 13 additions & 0 deletions docs/Release_Notes.txt
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,19 @@ PRE-IMPLEMENTATION TESTING REQUIREMENTS
Run jobs/JOBSPROC_networkname_DUMP and jobs/JOBSPROC_networkname_DUMP_POST
for the following networkname values: GLOBAL, NAM, RAP, URMA, RTMA, CDAS

Parallel Production Testing (PPT)
After testing obsproc v1.2 in the /para space, we recommend doing for at least a month,
it is best to do a single cycle Parallel Production Testing (PPT) (i.e. obsproc + GFS + other models).
Copy the following directoris:
$model.YYYYMMDD, where model: gfs,gdas,nam,rap,rap_e,rap_p,urma,cdas,rtma,rtma_ru,dump
$model.YYYYMM, where model: cdas
$model.YYYY, where model:mods
$model, where:gdas, sdm_rtdm
from the para run:
/para/com/obsproc/v1.2/
to
/prod/com/obsproc/v1.2/ for the PPT.

Good to know:
- the RAP uprair dumps might be 0 size for the hours not around 00,06,12,18 UTC
- the CDAS prepbufr files are 6 different flavours, it takes about 26 hours for all to be generated
Expand Down
6 changes: 3 additions & 3 deletions scripts/exdump_monitor.sh
Original file line number Diff line number Diff line change
Expand Up @@ -125,17 +125,17 @@ err10=0
TANK_MAX_255003=${TANK_MAX_255003:-3221225472} #3Gb
TANK_MAX_255004=${TANK_MAX_255004:-1610612736} #1.5Gb
TANK_MAX_255030=${TANK_MAX_255030:-4187593114} #3.9Gb
if [ -s ${TANK}/${PDY}/b255/xx003) && "$(stat -c '%s' ${TANK}/${PDY}/b255/xx003)" -gt "$TANK_MAX_255003" ]; then
if [ -s ${TANK}/${PDY}/b255/xx003 && "$(stat -c '%s' ${TANK}/${PDY}/b255/xx003)" -gt "$TANK_MAX_255003" ]; then
export SKIP_255003=YES
msg="WARNING: TANK b255/xx003 exceeds TANK_MAX_255003 => not dumped"
echo $msg | mail.py -s $msg -c [email protected]
fi
if [ -s ${TANK}/${PDY}/b255/xx004) && "$(stat -c '%s' ${TANK}/${PDY}/b255/xx004)" -gt "$TANK_MAX_255004" ]; then
if [ -s ${TANK}/${PDY}/b255/xx004 && "$(stat -c '%s' ${TANK}/${PDY}/b255/xx004)" -gt "$TANK_MAX_255004" ]; then
export SKIP_255004=YES
msg="WARNING: TANK b255/xx004 exceeds TANK_MAX_255004 => not dumped"
echo $msg | mail.py -s $msg -c [email protected]
fi
if [ -s ${TANK}/${PDY}/b255/xx030) && "$(stat -c '%s' ${TANK}/${PDY}/b255/xx030)" -gt "$TANK_MAX_255030" ]; then
if [ -s ${TANK}/${PDY}/b255/xx030 && "$(stat -c '%s' ${TANK}/${PDY}/b255/xx030)" -gt "$TANK_MAX_255030" ]; then
export SKIP_255030=YES
msg="WARNING: TANK b255/xx030 exceeds TANK_MAX_255030 => not dumped"
echo $msg | mail.py -s $msg -c [email protected]
Expand Down

0 comments on commit 3bfc153

Please sign in to comment.