15 from __future__
import print_function
16 from builtins
import range
17 import Alignment.MillePedeAlignmentAlgorithm.mpslib.Mpslibclass
as mpslib
18 import Alignment.MillePedeAlignmentAlgorithm.mpslib.tools
as mps_tools
23 if sys.version_info[0]>2:
24 import _pickle
as cPickle
32 """Forward proxy to location visible from the batch system. 35 - `rundir`: directory for storing the forwarded proxy 38 if not mps_tools.check_proxy():
39 print(
"Please create proxy via 'voms-proxy-init -voms cms -rfc'.")
42 local_proxy = subprocess.check_output([
"voms-proxy-info",
"--path"]).
strip()
43 shutil.copyfile(local_proxy, os.path.join(rundir,
".user_proxy"))
47 """Writes 'job.submit' file in `path`. 50 - `path`: job directory 51 - `script`: script to be executed 53 - `lib`: MPS lib object 56 resources = lib.get_class(
"pede").
split(
"_")[1:]
57 job_flavour = resources[-1]
59 job_submit_template=
"""\ 61 executable = {script:s} 62 output = {jobm:s}/STDOUT 63 error = {jobm:s}/STDOUT 66 transfer_output_files = "" 67 request_memory = {pedeMem:d}M 69 # adapted to space used on eos for binaries: 70 request_disk = {disk:d} 72 # adapted to threads parameter in pede options and number of available cores 73 request_cpus = {cpus:d} 75 +JobFlavour = "{flavour:s}" 77 if "bigmem" in resources:
78 job_submit_template +=
"""\ 80 +AccountingGroup = "group_u_CMS.e_cms_caf_bigmem" 82 # automatically remove the job if the submitter has no permissions to run a BigMemJob 83 periodic_remove = !regexp("group_u_CMS.e_cms_caf_bigmem", AccountingGroup) && BigMemJob =?= True 85 job_submit_template +=
"\nqueue\n" 87 print(
"Determine number of pede threads...")
88 cms_process = mps_tools.get_process_object(os.path.join(Path, mergeCfg))
89 pede_options = cms_process.AlignmentProducer.algoConfig.pedeSteerer.options.value()
91 for option
in pede_options:
92 if "threads" in option:
93 n_threads = option.replace(
"threads",
"").
strip()
94 n_threads =
max(
map(
lambda x:
int(x), n_threads.split()))
96 if n_threads > 16: n_threads = 16
100 print(
"Determine required disk space on remote host...")
103 spco = subprocess.check_output
105 cmd = [
"du",
"--apparent-size"]
106 disk_usage = [
int(item.split()[0])
107 for directory
in (
"binaries",
"monitors",
"tree_files")
110 glob.glob(opj(lib.mssDir, directory,
"*"))).splitlines()]
111 disk_usage = sum(disk_usage)
114 job_submit_file = os.path.join(Path,
"job.submit")
115 with open(job_submit_file,
"w")
as f:
116 f.write(job_submit_template.format(script = os.path.abspath(script),
117 jobm = os.path.abspath(path),
118 pedeMem = lib.pedeMem,
119 disk =
int(disk_usage),
121 flavour = job_flavour))
123 return job_submit_file
126 """Writes 'job.submit' file in `path`. 129 - `path`: job directory 130 - `script`: script to be executed 131 - `lib`: MPS lib object 132 - `proxy_path`: path to proxy (only used in case of requested proxy forward) 135 resources = lib.get_class(
"mille").
split(
"_")[1:]
136 job_flavour = resources[-1]
138 job_submit_template=
"""\ 140 executable = {script:s} 141 output = {jobm:s}/STDOUT 142 error = {jobm:s}/STDOUT 143 log = {jobm:s}/HTCJOB 144 notification = Always 145 transfer_output_files = "" 147 +JobFlavour = "{flavour:s}" 149 if "cafalca" in resources:
150 job_submit_template +=
"""\ 152 +AccountingGroup = "group_u_CMS.CAF.ALCA" 153 # automatically remove the job if the submitter has no permissions to run a CAF Job 154 periodic_remove = !regexp("group_u_CMS.CAF.ALCA", AccountingGroup) && CAFJob =?= True 157 if proxy_path
is not None:
158 job_submit_template +=
"""\ 159 +x509userproxy = "{proxy:s}" 161 job_submit_template +=
"\nqueue\n" 163 job_submit_file = os.path.join(Path,
"job.submit")
164 with open(job_submit_file,
"w")
as f:
165 f.write(job_submit_template.format(script = os.path.abspath(script),
166 jobm = os.path.abspath(path),
167 flavour = job_flavour,
170 return job_submit_file
174 parser = argparse.ArgumentParser(
175 description=
"Submit jobs that are setup in local mps database to batch system.",
177 parser.add_argument(
"maxJobs", type=int, nargs=
'?', default=1,
178 help=
"number of Mille jobs to be submitted (default: %(default)d)")
179 parser.add_argument(
"-j",
"--job-id", dest =
"job_id", nargs =
"*",
180 help = (
"job IDs to be submitted; " 181 "use either 'job<ID>' or directly '<ID>'"))
182 parser.add_argument(
"-a",
"--all", dest=
"allMille", default=
False,
184 help = (
"submit all setup Mille jobs; " 185 "maxJobs and --job-id are ignored"))
186 parser.add_argument(
"-m",
"--merge", dest=
"fireMerge", default=
False,
188 help = (
"submit all setup Pede jobs; " 189 "maxJobs is ignored, but --job-id is respected"))
190 parser.add_argument(
"-f",
"--force-merge", dest=
"forceMerge", default=
False,
192 help=(
"force the submission of the Pede job in case some "+
193 "Mille jobs are not in the OK state"))
194 parser.add_argument(
"--force-merge-manual", dest=
"forceMergeManual", default=
False,
196 help=(
"force the submission of the Pede job in case some "+
197 "Mille jobs are not in the OK state. Unlike --forceMerge "+
198 "this option assumes the user has edited theScript.sh and "+
199 "alignment_merge.py to consistently pick up only the mille "+
200 "output files that exist"))
201 parser.add_argument(
"-p",
"--forward-proxy", dest=
"forwardProxy", default=
False,
203 help=
"forward VOMS proxy to batch system")
204 args = parser.parse_args(sys.argv[1:])
207 lib = mpslib.jobdatabase()
212 args.maxJobs = lib.nJobs
215 if args.job_id
is None:
216 job_mask = lib.JOBDIR
219 for job_id
in args.job_id:
221 if job_id.startswith(
"job"): job_mask.append(job_id)
222 elif job_id.startswith(
"m"): job_mask.append(
"job"+job_id)
225 job_mask.append(lib.JOBDIR[
int(job_id)-1])
229 print(
"ID provided to '-j/--job-id' is out of range:", job_id)
232 if invalid_id
or job_mask[-1]
not in lib.JOBDIR:
233 print(
"ID provided to '-j/--job-id' is invalid:", job_id)
234 print(
"'-j/--job-id' requires the IDs to exist and to be of either", end=
' ')
235 print(
"of the following formats:")
243 theJobData = os.path.join(os.getcwd(),
"jobData")
246 theJobName =
'mpalign' 247 if lib.addFiles !=
'':
248 theJobName = lib.addFiles
250 fire_htcondor =
False 253 if not args.fireMerge:
255 resources = lib.get_class(
'mille')
258 if 'cmscafspec' in resources:
259 print(
'\nWARNING:\n Running mille jobs on cmscafspec, intended for pede only!\n\n')
260 resources =
'-q cmscafalcamille' 262 elif 'cmscaf' in resources:
264 resources =
'-q'+resources+
' -m g_cmscaf' 265 elif "htcondor" in resources:
268 resources =
'-q '+resources
271 for i
in range(lib.nJobs):
272 if lib.JOBDIR[i]
not in job_mask:
continue 273 if lib.JOBSTATUS[i] ==
'SETUP':
274 if nSub < args.maxJobs:
275 if args.forwardProxy:
281 Path = os.path.join(theJobData,lib.JOBDIR[i])
282 scriptPath = os.path.join(Path,
"theScript.sh")
283 if args.forwardProxy:
287 submission =
"condor_submit -batch-name %s %s"%\
288 (theJobName, job_submit_file)
290 submission =
'bsub -J %s %s %s/%s/theScript.sh' % \
291 (theJobName, resources, theJobData, lib.JOBDIR[i])
294 result = subprocess.check_output(submission,
295 stderr=subprocess.STDOUT,
297 except subprocess.CalledProcessError
as e:
299 print(
' '+result, end=
' ')
300 result = result.strip()
304 match = re.search(
r"1 job\(s\) submitted to cluster (\d+)\.", result)
306 match = re.search(
'Job <(\d+)> is submitted', result)
309 lib.JOBSTATUS[i] =
'SUBTD' 310 lib.JOBID[i] = match.group(1)
311 if fire_htcondor: lib.JOBID[i] +=
".0" 313 print(
'Submission of %03d seems to have failed: %s' % (lib.JOBNUMBER[i],result), end=
' ')
320 resources = lib.get_class(
'pede')
321 if 'cmscafspec' in resources:
322 resources =
'-q cmscafalcamille' 323 elif "htcondor" in resources:
326 resources =
'-q '+resources
328 if not fire_htcondor:
330 resources = resources+
' -R \"rusage[mem="%s"]\"' %
str(lib.pedeMem)
334 for i
in range(lib.nJobs):
335 if lib.JOBSTATUS[i] !=
'OK':
336 if 'DISABLED' not in lib.JOBSTATUS[i]:
342 while i<len(lib.JOBDIR):
344 if lib.JOBDIR[i]
not in job_mask:
349 if lib.JOBSTATUS[i] !=
'SETUP':
350 print(
'Merge job %d status %s not submitted.' % \
351 (jobNumFrom1, lib.JOBSTATUS[i]))
352 elif not (mergeOK
or args.forceMerge
or args.forceMergeManual):
353 print(
'Merge job',jobNumFrom1,
'not submitted since Mille jobs error/unfinished (Use -m -f to force).')
356 Path = os.path.join(theJobData,lib.JOBDIR[i])
357 backupScriptPath = os.path.join(Path,
"theScript.sh.bak")
358 scriptPath = os.path.join(Path,
"theScript.sh")
364 if not os.path.isfile(backupScriptPath):
365 os.system(
'cp -p '+scriptPath+
' '+backupScriptPath)
368 command =
'cat '+backupScriptPath+
' | grep CONFIG_FILE | head -1 | awk -F"/" \'{print $NF}\'' 369 mergeCfg = subprocess.check_output(command, stderr=subprocess.STDOUT, shell=
True)
370 mergeCfg = mergeCfg.strip()
376 backupCfgPath = os.path.join(Path, mergeCfg+
".bak")
377 cfgPath = os.path.join(Path, mergeCfg)
378 if not os.path.isfile(backupCfgPath):
379 os.system(
'cp -p '+cfgPath+
' '+backupCfgPath)
382 with open(os.path.join(Path,
".weights.pkl"),
"rb")
as f:
383 weight_conf = cPickle.load(f)
386 mps_tools.run_checked([
"mps_weight.pl",
"-c"])
389 for name,weight
in weight_conf:
390 print(
" ".
join([
"mps_weight.pl",
"-N", name, weight]))
391 mps_tools.run_checked([
"mps_weight.pl",
"-N", name, weight])
394 inCfgPath = theJobData+
'/'+lib.JOBDIR[0]+
'/the.py' 395 command =
'mps_merge.py -w -c '+inCfgPath+
' '+Path+
'/'+mergeCfg+
' '+Path+
' '+
str(lib.nJobs)
399 command =
'mps_scriptm.pl -c '+lib.mergeScript+
' '+scriptPath+
' '+Path+
' '+mergeCfg+
' '+
str(lib.nJobs)+
' '+lib.mssDir+
' '+lib.mssDirPool
404 if os.path.isfile(backupScriptPath):
405 os.system(
'cp -pf '+backupScriptPath+
' '+scriptPath)
408 command =
"cat "+scriptPath+
" | grep '^\s*CONFIG_FILE' | awk -F'=' '{print $2}'" 409 mergeCfg = subprocess.check_output(command, stderr=subprocess.STDOUT, shell=
True)
410 command =
'basename '+mergeCfg
411 mergeCfg = subprocess.check_output(command, stderr=subprocess.STDOUT, shell=
True)
412 mergeCfg = mergeCfg.replace(
'\n',
'')
418 backupCfgPath = Path+
'/%s.bak' % mergeCfg
419 cfgPath = Path+
'/%s' % mergeCfg
420 if os.path.isfile(backupCfgPath):
421 os.system(
'cp -pf '+backupCfgPath+
' '+cfgPath)
427 curJobName =
'm'+
str(nMerge)+
'_'+theJobName
430 submission = [
"condor_submit",
431 "-batch-name", curJobName,
434 submission = [
"bsub",
"-J", curJobName, resources, scriptPath]
437 result = subprocess.check_output(submission, stderr=subprocess.STDOUT)
439 except subprocess.CalledProcessError
as e:
442 print(
' '+result, end=
' ')
443 result = result.strip()
447 match = re.search(
r"1 job\(s\) submitted to cluster (\d+)\.", result)
449 match = re.search(
'Job <(\d+)> is submitted', result)
451 lib.JOBSTATUS[i] =
'SUBTD' 452 lib.JOBID[i] = match.group(1)
454 if fire_htcondor: lib.JOBID[i] +=
".0" 455 print(
"jobid is", lib.JOBID[i])
457 print(
'Submission of merge job seems to have failed:',result, end=
' ')
std::vector< std::string_view > split(std::string_view, const char *)
def forward_proxy(rundir)
S & print(S &os, JobReport::InputFile const &f)
static std::string join(char **cmd)
def write_HTCondor_submit_file_mille(path, script, lib, proxy_path=None)
def write_HTCondor_submit_file_pede(path, script, config, lib)