source: trunk/libIGCM/AA_rebuild_fromArchive @ 380

Last change on this file since 380 was 380, checked in by sdipsl, 14 years ago
  • Add a IGCM_config_Check function to test coherency between post-processing frequency. See #29. Will exit before execution if incoherency are found (example rebuild every 6 months, having a 1Y PeriodLenght? and a 2 months TimeSeriesFrequency?...)
  • libIGCM_post.ksh refactoring, making general function to handle frequency, easier to read hopefully. Still some simplification to add
  • DRYRUN was not maintain since a long time. Fix that. Minor adaptation still need to be done for sx8 and sx9 (ie when you want to DRYRUN from a machine initially devoted to the post-processing). DRYRUN is aimed for developpement purpose, prefer StandAlone? method to post-process after the fact.
  • we clean SUBMIT_DIR keeping only the 5 youngest Script_Output_* files. Good for workdir quota.
  • simplify rebuildFrom* options : remove R_SAVE and config_UserChoices_JobName used by IGCM_Patch_20091118_mask.ksh. rebuild.ksh will define that ; AA_create* already know that.
  • when exiting because of a RErun an old job : be more explicit and point the files who initiated this action, together with a link to clean_month.job
  • remove some redundant typeset
  • clean libIGCM_sys.ksh : remove machines
  • and cosmetics.
  • Property svn:keywords set to Revision Author Date
File size: 10.0 KB
Line 
1#-Q- cesium #!/bin/ksh
2#-Q- cesium ######################
3#-Q- cesium ## CESIUM   CEA ##
4#-Q- cesium ######################
5#-Q- cesium #MSUB -r REBUILDARCH    # Nom du job               
6#-Q- cesium #MSUB -N 1              # Reservation du noeud
7#-Q- cesium #MSUB -n 1              # Reservation du processus
8#-Q- cesium #MSUB -T 86400          # Limite de temps elapsed du job
9#-Q- cesium #MSUB -E "-j o"
10#-Q- cesium #MSUB -E "-S /bin/ksh"
11#-Q- platine #!/usr/bin/ksh
12#-Q- platine ###################
13#-Q- platine ## PLATINE   CEA ##
14#-Q- platine ###################
15#-Q- platine #BSUB -J REBUILDARCH            # Nom du job
16#-Q- platine #BSUB -N                        # message a la fin du job
17#-Q- platine #BSUB -n 1                      # reservation des processeurs pour le job
18#-Q- platine #BSUB -W 4:00                   # Limite temps
19#-Q- platine #BSUB -q post                   # Passage en queue post
20#-Q- sx8brodie #!/bin/ksh
21#-Q- sx8brodie #######################
22#-Q- sx8brodie ## SX8BRODIE   IDRIS ##
23#-Q- sx8brodie #######################
24#-Q- sx8brodie # Temps Elapsed max. d'une requete hh:mm:ss
25#-Q- sx8brodie # @ wall_clock_limit = 20:00:00
26#-Q- sx8brodie # Nom du travail LoadLeveler
27#-Q- sx8brodie # @ job_name   = REBUILDARCH
28#-Q- sx8brodie # Fichier de sortie standard du travail       
29#-Q- sx8brodie # @ output     = $(job_name).$(jobid)
30#-Q- sx8brodie # Fichier de sortie d'erreur du travail
31#-Q- sx8brodie # @ error      =  $(job_name).$(jobid)
32#-Q- sx8brodie # pour recevoir un mail en cas de depassement du temps Elapsed (ou autre pb.)
33#-Q- sx8brodie # @ notification = error
34#-Q- sx8brodie # @ environment  = $DEBUG_debug ; $MODIPSL ; $libIGCM ; $libIGCM_SX ; $SUBMIT_DIR ; $REBUILD_DIR ; $RebuildFromArchive ; $POST_DIR ; $DateBegin ; $PeriodDateBegin ; $PeriodDateEnd ; $NbRebuildDir ; $StandAlone ; $RESOL_ATM ; $RESOL_OCE ; $RESOL_ICE ; $RESOL_MBG ; $RESOL_SRF ; $RESOL_SBG ; $MASTER ; $RebuildFromArchive
35#-Q- sx8brodie # @ queue
36#-Q- aix6 #!/bin/ksh
37#-Q- aix6 #######################
38#-Q- aix6 ##   VARGAS   IDRIS  ##
39#-Q- aix6 #######################
40#-Q- aix6 # Temps Elapsed max. d'une requete hh:mm:ss
41#-Q- aix6 # @ wall_clock_limit = 20:00:00
42#-Q- aix6 # Nom du travail LoadLeveler
43#-Q- aix6 # @ job_name   = REBUILDARCH
44#-Q- aix6 # Fichier de sortie standard du travail
45#-Q- aix6 # @ output     = $(job_name).$(jobid)
46#-Q- aix6 # Fichier de sortie d'erreur du travail
47#-Q- aix6 # @ error      =  $(job_name).$(jobid)
48#-Q- aix6 # pour recevoir un mail en cas de depassement du temps Elapsed (ou autre pb.)
49#-Q- aix6 # @ notification = error
50#-Q- aix6 # @ environment  = $DEBUG_debug ; $MODIPSL ; $libIGCM ; $libIGCM_SX ; $SUBMIT_DIR ; $REBUILD_DIR ; $RebuildFromArchive ; $POST_DIR ; $DateBegin ; $PeriodDateBegin ; $PeriodDateEnd ; $NbRebuildDir ; $StandAlone ; $RESOL_ATM ; $RESOL_OCE ; $RESOL_ICE ; $RESOL_MBG ; $RESOL_SRF ; $RESOL_SBG ; $MASTER ; $RebuildFromArchive
51#-Q- aix6 # @ queue
52#-Q- sx8mercure #!/bin/ksh
53#-Q- sx8mercure ######################
54#-Q- sx8mercure ## SX8MERCURE   CEA ##
55#-Q- sx8mercure ######################
56#-Q- sx8mercure #PBS -N REBUILDARCH          # Nom du job
57#-Q- sx8mercure #PBS -j o                    # regroupement des stdout et stderr
58#-Q- sx8mercure #PBS -S /usr/bin/ksh         # shell de soumission
59#-Q- sx8mercure #PBS -l memsz_job=1gb        # Limite memoire a 1 Go
60#-Q- sx8mercure #PBS -l cputim_job=24:00:00  # Limite temps a 1 heures
61#-Q- sx8mercure #PBS -q scalaire
62#-Q- sx9mercure #!/bin/ksh
63#-Q- sx9mercure ######################
64#-Q- sx9mercure ## CESIUM FOR SX9  CEA ##
65#-Q- sx9mercure ######################
66#-Q- sx9mercure #MSUB -r REBUILDARCH    # Nom du job               
67#-Q- sx9mercure #MSUB -N 1              # Reservation du noeud
68#-Q- sx9mercure #MSUB -n 1              # Reservation du processus
69#-Q- sx9mercure #MSUB -T 86400          # Limite de temps elapsed du job
70#-Q- sx9mercure #MSUB -E "-j o"
71#-Q- sx9mercure #MSUB -E "-S /bin/ksh"
72#-Q- titane #!/bin/ksh
73#-Q- titane ######################
74#-Q- titane ## TITANE   CEA ##
75#-Q- titane ######################
76#-Q- titane #MSUB -r REBUILDARCH    # Nom du job               
77#-Q- titane #MSUB -N 1              # Reservation du noeud
78#-Q- titane #MSUB -n 1              # Reservation du processus
79#-Q- titane #MSUB -T 86400          # Limite de temps elapsed du job
80#-Q- titane #MSUB -E "-j o"
81#-Q- titane #MSUB -E "-S /bin/ksh"
82#-Q- titane ##MSUB -e nco.out        # Sortie standard
83#-Q- titane ##MSUB -o nco.out        # Sortie standard
84#-Q- lxiv8 ######################
85#-Q- lxiv8 ## OBELIX      LSCE ##
86#-Q- lxiv8 ######################
87#-Q- lxiv8 #PBS -N REBUILDARCH
88#-Q- lxiv8 #PBS -m a
89#-Q- lxiv8 #PBS -j oe
90#-Q- lxiv8 #PBS -q medium
91#-Q- lxiv8 #PBS -o REBUILDARCH.$$
92#-Q- lxiv8 #PBS -S /bin/ksh
93#-Q- default #!/bin/ksh
94#-Q- default ##################
95#-Q- default ## DEFAULT HOST ##
96#-Q- default ##################
97
98#**************************************************************
99# Author: Sebastien Denvil
100# Contact: Sebastien.Denvil__at__ipsl.jussieu.fr
101# $Revision::                                          $ Revision of last commit
102# $Author::                                            $ Author of last commit
103# $Date::                                              $ Date of last commit
104# IPSL (2006)
105#  This software is governed by the CeCILL licence see libIGCM/libIGCM_CeCILL.LIC
106#
107#**************************************************************
108
109#set -eu
110#set -vx
111
112date
113
114#-Q- sx8brodie export OMP_NUM_THREADS=1
115#-Q- aix6 export OMP_NUM_THREADS=1
116
117########################################################################
118
119#D- Flag to determine if this job in a standalone mode
120#D- Default : value from AA_job if any
121StandAlone=${StandAlone:=true}
122
123#D- Low level debug : to bypass lib test checks and stack construction
124#D- Default : value from AA_job if any
125libIGCM=${libIGCM:=::modipsl::/libIGCM}
126# WARNING for StandAlone used : To run this script on some machine,
127# you must check MirrorlibIGCM variable in sys library.
128# If this variable is true, you must use libIGCM_POST path instead
129# of your running libIGCM directory.
130
131#-D- $hostname of the MASTER job when SUBMIT_DIR is not visible on postprocessing computer.
132MASTER=${MASTER:=mercure|titane|brodie|vargas}
133
134#D- Do we rebuild parallel output from archive or from ${BIGDIR}
135#D- Default : value from AA_job if any
136RebuildFromArchive=${RebuildFromArchive:=true}
137
138#D- Directory where files we need to rebuild are store
139#D- Default : value from AA_job if any
140#D- if RebuildFromArchive=true REBUILD_DIR=${DMFDIR}/IGCM_OUT/.../JobName/TMP
141#D- example : /dmnfs09/cont003/p86denv/IGCM_OUT/IPSLCM5/CM5PIRC7/TMP
142#D- if RebuildFromArchive=false REBUILD_DIR=${BIGDIR}/REBUILD/TagName/JobName/
143#D- example : /scratch/cont003/p86denv/REBUILD/IPSLCM5/SCAL-NEW
144REBUILD_DIR=${REBUILD_DIR:=/path/to/your/TMP/REBUILD/FILES}
145
146#D- How many directory to rebuild we have to consider
147#D- Default : value from AA_job if any
148NbRebuildDir=${NbRebuildDir:=1000}
149
150#D- Suffix date we will use to determine which directory to rebuild
151#D- We will rebuild NbRebuildDir before and including PeriodDateBegin
152#D- Default : value from AA_job if any
153LastPeriodForRebuild=${PeriodDateBegin:=18901201}
154
155#D- Flag to determine atlas job's output directory
156#D- Default : value from libIGCM_post.ksh if any
157POST_DIR=${POST_DIR:=${PBS_O_WORKDIR}}
158
159#-D- libIGCM_SX contains libIGCM on Master computer. Required on some center. Always OK.
160libIGCM_SX=${libIGCM_SX:=::modipsl::/libIGCM}
161
162#D- Increased verbosity (1, 2, 3)
163#D- Default : value from AA_job if any
164Verbosity=${Verbosity:=3}
165
166#D- Low level debug : to bypass lib test checks and stack construction
167#D- Default : value from AA_job if any
168DEBUG_debug=${DEBUG_debug:=false}
169
170#D- TEMPORARY Flag to determine atmospheric resolution
171#D- Default : value from atmospheric driver if any
172RESOL_ATM=${RESOL_ATM:=ALL}
173
174#D- TEMPORARY Flag to determine ocean resolution
175#D- Default : value from ocean driver if any
176RESOL_OCE=${RESOL_OCE:=ORCA2}
177
178#D- TEMPORARY Flag to determine ice resolution
179#D- Default : value from ice driver if any
180RESOL_ICE=${RESOL_ICE:=ORCA2}
181
182#D- TEMPORARY Flag to determine biogeochemistry resolution
183#D- Default : value from ice driver if any
184RESOL_MBG=${RESOL_MBG:=ORCA2}
185
186#D- Flag to determine surface resolution
187#D- Default : value from surface driver if any
188RESOL_SRF=ALL
189
190#D- Flag to determine surface resolution
191#D- Default : value from surface driver if any
192RESOL_SBG=ALL
193
194########################################################################
195
196. ${libIGCM}/libIGCM_debug/libIGCM_debug.ksh
197      ( ${DEBUG_debug} ) && IGCM_debug_Check
198. ${libIGCM}/libIGCM_card/libIGCM_card.ksh
199     ( ${DEBUG_debug} ) && IGCM_card_Check
200. ${libIGCM}/libIGCM_date/libIGCM_date.ksh
201     ( ${DEBUG_debug} ) && IGCM_date_Check
202#-------
203. ${libIGCM}/libIGCM_sys/libIGCM_sys.ksh
204. ${libIGCM}/libIGCM_post/libIGCM_post.ksh
205
206########################################################################
207
208#set -vx
209
210RUN_DIR=${RUN_DIR_PATH}
211IGCM_sys_MkdirWork ${RUN_DIR}
212IGCM_sys_Cd ${RUN_DIR}
213#
214if [ ${RebuildFromArchive} = true ] ; then
215    ListAllRebuildDir=$( IGCM_sys_RshArchive ls -d ${REBUILD_DIR}/REBUILD_* | grep -B $(( ${NbRebuildDir} -1 )) ${LastPeriodForRebuild} )
216else
217    ListAllRebuildDir=$( IGCM_sys_RshMaster ls -d ${REBUILD_DIR}/REBUILD_* | grep -B $(( ${NbRebuildDir} -1 )) ${LastPeriodForRebuild} )
218fi
219#
220
221for directory in ${ListAllRebuildDir} ; do
222    #
223    if [ ${RebuildFromArchive} = true ] ; then
224        IGCM_sys_Get_Dir ${directory} ${RUN_DIR}
225    else
226        IGCM_sys_Get_Master ${directory} ${RUN_DIR}
227    fi
228    #
229    IGCM_sys_Cd ${RUN_DIR}/$( basename ${directory} )
230
231    # --------------------------------------------------------------------
232    # Source function include in the REBUILD ksh and rebuild
233    # --------------------------------------------------------------------
234    . ${RUN_DIR}/$( basename ${directory} )/rebuild.ksh
235    IGCM_FlushRebuild
236    #
237    IGCM_sys_Cd ${RUN_DIR}
238    # Clean Up
239    # local clean up
240    IGCM_sys_Rm -rf $( basename ${directory} )
241    # remote clean up
242    if [ ${RebuildFromArchive} = true ] ; then
243        IGCM_sys_RshArchive rm -rf ${directory}
244    else
245        IGCM_sys_Rm -rf ${directory}
246    fi
247done
248
249# Clean RUN_DIR_PATH (necessary for cesium only)
250IGCM_sys_RmRunDir -Rf ${RUN_DIR_PATH}
Note: See TracBrowser for help on using the repository browser.