2 from __future__
import print_function
3 from builtins
import range
7 import Alignment.MillePedeAlignmentAlgorithm.mpslib.Mpslibclass
as mpslib
12 """Fill timing info in the database for `mps_index`.
15 - `mps_index`: index in the MPS database
16 - `status`: job status
17 - `cpu_time`: extracted CPU timing information
20 cpu_time =
int(round(cpu_time))
21 if status
in (
"RUN",
"DONE"):
23 diff = cpu_time - lib.JOBRUNTIME[mps_index]
24 lib.JOBRUNTIME[mps_index] = cpu_time
25 lib.JOBHOST[mps_index] =
"+"+
str(diff)
26 lib.JOBINCR[mps_index] = diff
28 lib.JOBRUNTIME[mps_index] = 0
29 lib.JOBINCR[mps_index] = 0
35 htcondor_jobstatus = {
"1":
"PEND",
46 lib = mpslib.jobdatabase()
50 for i
in range(len(lib.JOBID)):
52 for status
in (
"SETUP",
"OK",
"DONE",
"FETCH",
"ABEND",
"WARN",
"FAIL"):
53 if status
in lib.JOBSTATUS[i]:
57 submitted_jobs[lib.JOBID[i]] = i
58 print(
"submitted jobs:", len(submitted_jobs))
63 if len(submitted_jobs) > 0:
65 condor_q = subprocess.check_output([
"condor_q",
"-af:j",
66 "JobStatus",
"RemoteSysCpu"],
67 stderr = subprocess.STDOUT)
68 for line
in condor_q.splitlines():
69 job_id, status, cpu_time = line.split()
70 job_status[job_id] = {
"status": htcondor_jobstatus[status],
71 "cpu":
float(cpu_time)}
73 for job_id, job_info
in six.iteritems(job_status):
74 mps_index = submitted_jobs.get(job_id, -1)
76 disabled =
"DISABLED" if "DISABLED" in lib.JOBSTATUS[mps_index]
else ""
80 print(
"mps_update.py - the job", job_id, end=
' ')
81 print(
"was not found in the JOBID array")
84 submitted_jobs.pop(job_id)
88 lib.JOBSTATUS[mps_index] = disabled+job_info[
"status"]
94 for job_id, mps_index
in submitted_jobs.items():
96 disabled =
"DISABLED" if "DISABLED" in lib.JOBSTATUS[mps_index]
else ""
97 print(
" DB job ", job_id, mps_index)
100 userlog = os.path.join(
"jobData", lib.JOBDIR[mps_index],
"HTCJOB")
101 condor_h = subprocess.check_output([
"condor_history", job_id,
"-limit",
"1",
103 "-af:j",
"JobStatus",
"RemoteSysCpu"],
104 stderr = subprocess.STDOUT)
105 if len(condor_h.strip()) > 0:
106 job_id, status, cpu_time = condor_h.split()
107 status = htcondor_jobstatus[status]
108 lib.JOBSTATUS[mps_index] = disabled + status
110 submitted_jobs.pop(job_id)
113 if "RUN" in lib.JOBSTATUS[mps_index]:
114 print(
"WARNING: Job ", mps_index, end=
' ')
115 print(
"in state RUN, neither found by htcondor, nor bjobs, nor find", end=
' ')
116 print(
"LSFJOB directory!")
121 for job_id, mps_index
in six.iteritems(submitted_jobs):
122 for status
in (
"SETUP",
"DONE",
"FETCH",
"TIMEL",
"SUBTD"):
123 if status
in lib.JOBSTATUS[mps_index]:
124 print(
"Funny entry index", mps_index,
" job", lib.JOBID[mps_index], end=
' ')
125 print(
" status", lib.JOBSTATUS[mps_index])