Custom Query (324 matches)

Filters
 
Or
 
  
 
Columns

Show under each result:


Results (49 - 51 of 324)

Ticket Owner Reporter Resolution Summary
#195 sdipsl jgipsl fixed Problem at ada when SpaceName=TEST
Description

At ada, setting SpaceName=TEST in config.card makes problem each time when the job is resubmitting. The restart files are not found.

Looking at following section in libIGCM_comp.ksh, beginning at line 826 (rev 1020 on trunk or tag v2.3)

eval Path_BUF=\${R_BUF_${comp}_R}/${generic_restart_file_name_in}
eval Path_OUT=\${R_OUT_${comp}_R}/${generic_restart_file_name_in}

if [ $( IGCM_sys_TestFileBuffer ${Path_BUF}*.${extension_in} ; echo $? ) = 0 ] ; then
     IGCM_debug_Print 3 "Buffered restart ${Path_BUF}*.${extension_in}"
     Buffered=true
     Archived=false
     Tared=false
     nb_restart_file=$(IGCM_sys_CountFileBuffer ${Path_BUF}_????.${extension_in})
elif [ $( IGCM_sys_TestFileArchive ${Path_OUT}*.${extension_in} ; echo $? ) = 0 ] ; then
     IGCM_debug_Print 3 "Archived restart ${Path_OUT}*.${extension_in}"
     Buffered=false
     Archived=true
     Tared=false
     nb_restart_file=$(IGCM_sys_CountFileArchive ${Path_OUT}_????.${extension_in})
else
     IGCM_debug_Print 3 "No restart file in the buffer nor in the archive directory"
     ....

Path_BUF is not usable since R_BUF_${comp}_R is not set. Path_OUT is correct indiquation the $WORKDIR at ada because of SpaceName=TEST. But as Path_OUT is a path at ada and not archive machine so the elif [ $( IGCM_sys_TestFileArchive ${Path_OUT}*.${extension_in} ; echo $? ) = 0 ] ; then cannot work. Using IGCM_sys_TestFileBuffer is appropriate for a path at $WORKDIR at ada. For keeping both cases, I propose changing the elif to the following :

elif [ $( IGCM_sys_TestFileArchive ${Path_OUT}*.${extension_in} ; echo $? ) = 0 ] || [ $( IGCM_sys_TestFileBuffer ${Path_OUT}*.${extension_in} ; echo $? ) = 0 ] ; then

This problem is not seen at curie since a file at $SCRATCHDIR can be accessed in the same way as a file at $STOREDIR.

Another solution might be to add definition of R_BUF_${comp}_R but this seems to have more implications and I havn't tested this.

#201 sdipsl sdipsl fixed Ada time series broken with SpaceName=TEST
Description

Broken due to r1013 mfls can't list anything under workgpfs ...

#205 sdipsl sdipsl fixed if rebuild flag is on and xios one file is activated then no post-processing is launched ....
Description

No TS, no SE and no Pack

Note: See TracQuery for help on using queries.