ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/COMP/CRAB/python/SchedulerGlite.py
Revision: 1.6
Committed: Thu Oct 12 14:51:12 2006 UTC (18 years, 6 months ago) by slacapra
Content type: text/x-python
Branch: MAIN
CVS Tags: CRAB_1_4_0_pre3
Changes since 1.5: +6 -5 lines
Log Message:
fix problem with destination for group>1

File Contents

# User Rev Content
1 spiga 1.2 #from Scheduler import Scheduler
2     from SchedulerEdg import SchedulerEdg
3     from crab_logger import Logger
4     from crab_exceptions import *
5     from crab_util import *
6 fanzago 1.4 #from EdgConfig import *
7     from GliteConfig import *
8 spiga 1.2 import common
9    
10     import os, sys, time
11    
12     class SchedulerGlite(SchedulerEdg):
13     def __init__(self):
14 slacapra 1.3 SchedulerEdg.__init__(self)
15    
16 fanzago 1.4 def rb_configure(self, RB):
17     self.glite_config = ''
18     self.rb_param_file = ''
19    
20     gliteConfig = GliteConfig(RB)
21     self.glite_config = gliteConfig.config()
22    
23     if (self.glite_config != ''):
24 slacapra 1.5 self.rb_param_file = 'WMSconfig = '+self.glite_config+';\n'
25 fanzago 1.4 #print "rb_param_file = ", self.rb_param_file
26     return self.rb_param_file
27    
28 spiga 1.2 def sched_parameter(self):
29     """
30     Returns file with requirements and scheduler-specific parameters
31     """
32     index = int(common.jobDB.nJobs()) - 1
33     job = common.job_list[index]
34     jbt = job.type()
35    
36     lastDest=''
37     first = []
38     last = []
39     for n in range(common.jobDB.nJobs()):
40     currDest=common.jobDB.destination(n)
41     if (currDest!=lastDest):
42     lastDest = currDest
43     first.append(n)
44     if n != 0:last.append(n-1)
45     if len(first)>len(last) :last.append(common.jobDB.nJobs())
46    
47     req = ''
48     req = req + jbt.getRequirements()
49    
50     if self.EDG_requirements:
51     if (req == ' '):
52     req = req + self.EDG_requirements
53     else:
54     req = req + ' && ' + self.EDG_requirements
55     if self.EDG_ce_white_list:
56     ce_white_list = string.split(self.EDG_ce_white_list,',')
57     for i in range(len(ce_white_list)):
58     if i == 0:
59     if (req == ' '):
60     req = req + '((RegExp("' + ce_white_list[i] + '", other.GlueCEUniqueId))'
61     else:
62     req = req + ' && ((RegExp("' + ce_white_list[i] + '", other.GlueCEUniqueId))'
63     pass
64     else:
65     req = req + ' || (RegExp("' + ce_white_list[i] + '", other.GlueCEUniqueId))'
66     req = req + ')'
67    
68     if self.EDG_ce_black_list:
69     ce_black_list = string.split(self.EDG_ce_black_list,',')
70     for ce in ce_black_list:
71     if (req == ' '):
72     req = req + '(!RegExp("' + ce + '", other.GlueCEUniqueId))'
73     else:
74     req = req + ' && (!RegExp("' + ce + '", other.GlueCEUniqueId))'
75     pass
76     if self.EDG_clock_time:
77     if (req == ' '):
78     req = req + 'other.GlueCEPolicyMaxWallClockTime>='+self.EDG_clock_time
79     else:
80     req = req + ' && other.GlueCEPolicyMaxWallClockTime>='+self.EDG_clock_time
81    
82     if self.EDG_cpu_time:
83     if (req == ' '):
84     req = req + ' other.GlueCEPolicyMaxCPUTime>='+self.EDG_cpu_time
85     else:
86     req = req + ' && other.GlueCEPolicyMaxCPUTime>='+self.EDG_cpu_time
87    
88     for i in range(len(first)): # Add loop DS
89     self.param='sched_param_'+str(i)+'.clad'
90     param_file = open(common.work_space.shareDir()+'/'+self.param, 'w')
91    
92     itr4=self.findSites_(first[i])
93 slacapra 1.6 reqSites=''
94     reqtmp=[]
95 slacapra 1.3 j = 0
96     concString = '||'
97     for arg in itr4:
98     #############
99     # MC Changed matching syntax to avoid gang matching
100     #############
101 slacapra 1.6 reqtmp.append(' Member("'+arg+'" , other.GlueCESEBindGroupSEUniqueID) ')
102     if len(reqtmp): reqSites = reqSites + " && (" + concString.join(reqtmp) + ')'
103     reqSites = reqSites + ';\n'
104     param_file.write('Requirements = ' + req + reqSites )
105 spiga 1.2
106 fanzago 1.4 # if (self.edg_config and self.edg_config_vo != ''):
107     # param_file.write('RBconfig = "'+self.edg_config+'";\n')
108     # param_file.write('RBconfigVO = "'+self.edg_config_vo+'";')
109    
110     if (self.rb_param_file != ''):
111     param_file.write(self.rb_param_file)
112    
113 spiga 1.2
114     param_file.close()
115    
116     def wsSetupEnvironment(self):
117     """
118     Returns part of a job script which does scheduler-specific work.
119     """
120     txt = ''
121     txt += '# strip arguments\n'
122     txt += 'echo "strip arguments"\n'
123     txt += 'args=("$@")\n'
124     txt += 'nargs=$#\n'
125     txt += 'shift $nargs\n'
126     txt += "# job number (first parameter for job wrapper)\n"
127     txt += "NJob=${args[0]}\n"
128    
129     txt += '# job identification to DashBoard \n'
130     txt += 'MonitorJobID=`echo ${NJob}_$GLITE_WMS_JOBID`\n'
131     txt += 'SyncGridJobId=`echo $GLITE_WMS_JOBID`\n'
132     txt += 'MonitorID=`echo ' + self._taskId + '`\n'
133     txt += 'echo "MonitorJobID=`echo $MonitorJobID`" | tee -a $RUNTIME_AREA/$repo \n'
134     txt += 'echo "SyncGridJobId=`echo $SyncGridJobId`" | tee -a $RUNTIME_AREA/$repo \n'
135     txt += 'echo "MonitorID=`echo $MonitorID`" | tee -a $RUNTIME_AREA/$repo\n'
136    
137     txt += 'echo "middleware discovery " \n'
138     txt += 'if [ $VO_CMS_SW_DIR ]; then \n'
139     txt += ' middleware=LCG \n'
140     txt += ' echo "SyncCE=`glite-brokerinfo getCE`" | tee -a $RUNTIME_AREA/$repo \n'
141     txt += ' echo "GridFlavour=`echo $middleware`" | tee -a $RUNTIME_AREA/$repo \n'
142     txt += ' echo "middleware =$middleware" \n'
143     txt += 'elif [ $GRID3_APP_DIR ]; then\n'
144     txt += ' middleware=OSG \n'
145     txt += ' echo "SyncCE=`echo $EDG_WL_LOG_DESTINATION`" | tee -a $RUNTIME_AREA/$repo \n'
146     txt += ' echo "GridFlavour=`echo $middleware`" | tee -a $RUNTIME_AREA/$repo \n'
147     txt += ' echo "middleware =$middleware" \n'
148     txt += 'elif [ $OSG_APP ]; then \n'
149     txt += ' middleware=OSG \n'
150     txt += ' echo "SyncCE=`echo $EDG_WL_LOG_DESTINATION`" | tee -a $RUNTIME_AREA/$repo \n'
151     txt += ' echo "GridFlavour=`echo $middleware`" | tee -a $RUNTIME_AREA/$repo \n'
152     txt += ' echo "middleware =$middleware" \n'
153     txt += 'else \n'
154     txt += ' echo "SET_CMS_ENV 10030 ==> middleware not identified" \n'
155     txt += ' echo "JOB_EXIT_STATUS = 10030" \n'
156     txt += ' echo "JobExitCode=10030" | tee -a $RUNTIME_AREA/$repo \n'
157     txt += ' dumpStatus $RUNTIME_AREA/$repo \n'
158     txt += ' rm -f $RUNTIME_AREA/$repo \n'
159     txt += ' echo "MonitorJobID=`echo $MonitorJobID`" | tee -a $RUNTIME_AREA/$repo \n'
160     txt += ' echo "MonitorID=`echo $MonitorID`" | tee -a $RUNTIME_AREA/$repo\n'
161     txt += ' exit 1 \n'
162     txt += 'fi \n'
163    
164     txt += '# report first time to DashBoard \n'
165     txt += 'dumpStatus $RUNTIME_AREA/$repo \n'
166     txt += 'rm -f $RUNTIME_AREA/$repo \n'
167     txt += 'echo "MonitorJobID=`echo $MonitorJobID`" | tee -a $RUNTIME_AREA/$repo \n'
168     txt += 'echo "MonitorID=`echo $MonitorID`" | tee -a $RUNTIME_AREA/$repo\n'
169    
170     txt += '\n\n'
171    
172     if int(self.copy_data) == 1:
173     if self.SE:
174     txt += 'export SE='+self.SE+'\n'
175     txt += 'echo "SE = $SE"\n'
176     if self.SE_PATH:
177     if ( self.SE_PATH[-1] != '/' ) : self.SE_PATH = self.SE_PATH + '/'
178     txt += 'export SE_PATH='+self.SE_PATH+'\n'
179     txt += 'echo "SE_PATH = $SE_PATH"\n'
180    
181     txt += 'export VO='+self.VO+'\n'
182     ### some line for LFC catalog setting
183     txt += 'if [ $middleware == LCG ]; then \n'
184     txt += ' if [[ $LCG_CATALOG_TYPE != \''+self.lcg_catalog_type+'\' ]]; then\n'
185     txt += ' export LCG_CATALOG_TYPE='+self.lcg_catalog_type+'\n'
186     txt += ' fi\n'
187     txt += ' if [[ $LFC_HOST != \''+self.lfc_host+'\' ]]; then\n'
188     txt += ' export LFC_HOST='+self.lfc_host+'\n'
189     txt += ' fi\n'
190     txt += ' if [[ $LFC_HOME != \''+self.lfc_home+'\' ]]; then\n'
191     txt += ' export LFC_HOME='+self.lfc_home+'\n'
192     txt += ' fi\n'
193     txt += 'elif [ $middleware == OSG ]; then\n'
194     txt += ' echo "LFC catalog setting to be implemented for OSG"\n'
195     txt += 'fi\n'
196     #####
197     if int(self.register_data) == 1:
198     txt += 'if [ $middleware == LCG ]; then \n'
199     txt += ' export LFN='+self.LFN+'\n'
200     txt += ' lfc-ls $LFN\n'
201     txt += ' result=$?\n'
202     txt += ' echo $result\n'
203     ### creation of LFN dir in LFC catalog, under /grid/cms dir
204     txt += ' if [ $result != 0 ]; then\n'
205     txt += ' lfc-mkdir $LFN\n'
206     txt += ' result=$?\n'
207     txt += ' echo $result\n'
208     txt += ' fi\n'
209     txt += 'elif [ $middleware == OSG ]; then\n'
210     txt += ' echo " Files registration to be implemented for OSG"\n'
211     txt += 'fi\n'
212     txt += '\n'
213    
214     if self.VO:
215     txt += 'export VO='+self.VO+'\n'
216     if self.LFN:
217     txt += 'if [ $middleware == LCG ]; then \n'
218     txt += ' export LFN='+self.LFN+'\n'
219     txt += 'fi\n'
220     txt += '\n'
221    
222     txt += 'if [ $middleware == LCG ]; then\n'
223     txt += ' CloseCEs=`glite-brokerinfo getCE`\n'
224     txt += ' echo "CloseCEs = $CloseCEs"\n'
225     txt += ' CE=`echo $CloseCEs | sed -e "s/:.*//"`\n'
226     txt += ' echo "CE = $CE"\n'
227     txt += 'elif [ $middleware == OSG ]; then \n'
228     txt += ' if [ $OSG_JOB_CONTACT ]; then \n'
229     txt += ' CE=`echo $OSG_JOB_CONTACT | /usr/bin/awk -F\/ \'{print $1}\'` \n'
230     txt += ' else \n'
231     txt += ' echo "SET_CMS_ENV 10099 ==> OSG mode: ERROR in setting CE name from OSG_JOB_CONTACT" \n'
232     txt += ' echo "JOB_EXIT_STATUS = 10099" \n'
233     txt += ' echo "JobExitCode=10099" | tee -a $RUNTIME_AREA/$repo \n'
234     txt += ' dumpStatus $RUNTIME_AREA/$repo \n'
235     txt += ' rm -f $RUNTIME_AREA/$repo \n'
236     txt += ' echo "MonitorJobID=`echo $MonitorJobID`" | tee -a $RUNTIME_AREA/$repo \n'
237     txt += ' echo "MonitorID=`echo $MonitorID`" | tee -a $RUNTIME_AREA/$repo\n'
238     txt += ' exit 1 \n'
239     txt += ' fi \n'
240     txt += 'fi \n'
241    
242     return txt
243    
244     def loggingInfo(self, id):
245     """
246     retrieve the logging info from logging and bookkeeping and return it
247     """
248     self.checkProxy()
249     cmd = 'glite-job-logging-info -v 2 ' + id
250     cmd_out = runCommand(cmd)
251     return cmd_out
252    
253     def queryDetailedStatus(self, id):
254     """ Query a detailed status of the job with id """
255     cmd = 'glite-job-status '+id
256     cmd_out = runCommand(cmd)
257     return cmd_out
258    
259     def findSites_(self, n):
260     sites = common.jobDB.destination(n)
261 slacapra 1.3 if len(sites)>0 and sites[0]=="":
262     return []
263     return sites