1 |
from Scheduler import Scheduler
|
2 |
from SchedulerLocal import SchedulerLocal
|
3 |
from crab_exceptions import *
|
4 |
from crab_util import *
|
5 |
from crab_logger import Logger
|
6 |
import common
|
7 |
|
8 |
import os,string
|
9 |
|
10 |
#
|
11 |
# Naming convention:
|
12 |
# methods starting with 'ws' are responsible to provide
|
13 |
# corresponding part of the job script ('ws' stands for 'write script').
|
14 |
#
|
15 |
# Author: Hartmut Stadie <stadie@mail.desy.de> Inst. f. Experimentalphysik; Universitaet Hamburg
|
16 |
#
|
17 |
|
18 |
class SchedulerSge(SchedulerLocal) :
|
19 |
|
20 |
def __init__(self):
|
21 |
Scheduler.__init__(self,"SGE")
|
22 |
|
23 |
return
|
24 |
|
25 |
def configure(self, cfg_params):
|
26 |
SchedulerLocal.configure(self, cfg_params)
|
27 |
self.environment_unique_identifier = "https://"+common.scheduler.name()+":/${JOB_ID}-"+ \
|
28 |
string.replace(common._db.queryTask('name'),"_","-")
|
29 |
|
30 |
#self.role = cfg_params.get("EDG.role", None)
|
31 |
self.role = None
|
32 |
|
33 |
self.pool = cfg_params.get('USER.storage_pool',None)
|
34 |
## default is 48 hours CPU time, 2G memrory
|
35 |
self.cpu = cfg_params.get('USER.cpu',172800)
|
36 |
self.vmem = cfg_params.get('USER.vmem',2)
|
37 |
return
|
38 |
|
39 |
def realSchedParams(self,cfg_params):
|
40 |
"""
|
41 |
Return dictionary with specific parameters, to use
|
42 |
with real scheduler
|
43 |
"""
|
44 |
params = {}
|
45 |
return params
|
46 |
|
47 |
def sched_parameter(self,i,task):
|
48 |
"""
|
49 |
Returns parameter scheduler-specific, to use with BOSS .
|
50 |
"""
|
51 |
index = int(common._db.nJobs()) - 1
|
52 |
sched_param= ''
|
53 |
|
54 |
for i in range(index): # Add loop DS
|
55 |
sched_param= ''
|
56 |
if (self.queue):
|
57 |
sched_param += '-q '+self.queue +' '
|
58 |
if (self.res): sched_param += ' -R '+self.res +' '
|
59 |
pass
|
60 |
|
61 |
#default is request 2G memory and 48 hours CPU time
|
62 |
#sched_param += ' -V -l h_vmem=2G -l h_cpu=172800 '
|
63 |
sched_param += ' -V -l h_vmem='
|
64 |
sched_param += self.vmem.__str__()
|
65 |
sched_param += 'G -l h_cpu='
|
66 |
sched_param += self.cpu.__str__()
|
67 |
sched_param += ' '
|
68 |
|
69 |
return sched_param
|
70 |
|
71 |
def loggingInfo(self, id):
|
72 |
""" return logging info about job nj """
|
73 |
print "Warning: SchedulerSge::loggingInfo not implemented!"
|
74 |
return ""
|
75 |
|
76 |
def wsExitFunc(self):
|
77 |
"""
|
78 |
"""
|
79 |
txt = '\n'
|
80 |
|
81 |
txt += '#\n'
|
82 |
txt += '# EXECUTE THIS FUNCTION BEFORE EXIT \n'
|
83 |
txt += '#\n\n'
|
84 |
|
85 |
txt += 'func_exit() { \n'
|
86 |
txt += self.wsExitFunc_common()
|
87 |
|
88 |
txt += ' cp ${SGE_STDOUT_PATH} CMSSW_${NJob}.stdout \n'
|
89 |
txt += ' cp ${SGE_STDERR_PATH} CMSSW_${NJob}.stderr \n'
|
90 |
txt += ' tar zcvf ${out_files}.tgz ${filesToCheck}\n'
|
91 |
txt += ' exit $job_exit_code\n'
|
92 |
txt += '}\n'
|
93 |
|
94 |
return txt
|
95 |
|
96 |
def listMatch(self, dest, full):
|
97 |
"""
|
98 |
"""
|
99 |
#if len(dest)!=0:
|
100 |
sites = [self.blackWhiteListParser.cleanForBlackWhiteList(dest,'list')]
|
101 |
#else:
|
102 |
# sites = [str(getLocalDomain(self))]
|
103 |
return sites
|
104 |
|
105 |
def wsCopyOutput(self):
|
106 |
txt=self.wsCopyOutput_comm(self.pool)
|
107 |
return txt
|
108 |
|
109 |
def userName(self):
|
110 |
""" return the user name """
|
111 |
|
112 |
## hack for german naf
|
113 |
import pwd,getpass
|
114 |
tmp=pwd.getpwnam(getpass.getuser())[4]
|
115 |
tmp=tmp.rstrip(',')
|
116 |
tmp=tmp.rstrip(',')
|
117 |
tmp=tmp.rstrip(',')
|
118 |
|
119 |
|
120 |
return "/CN="+tmp.strip()
|