forked from CMSCompOps/WmAgentScripts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathresubmit.py
executable file
·335 lines (295 loc) · 12.1 KB
/
resubmit.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
#!/usr/bin/env python
"""
__modified__ = "Paola Rozo"
__version__ = "1.1"
__maintainer__ = "Paola Rozo"
__email__ = "katherine.rozo@cern.ch"
__status__ = "Testing"
This script clones or extends a given workflow
Usage:
python resubmit.py [options] WORKFLOW_NAME
Options:
-a --action, decides to clone or extend a workflow
-b --backfill, creates a clone
-v --verbose, prints schemas and responses
This script depends on WMCore code, so WMAgent environment,libraries and voms proxy need to be loaded before running it.
"""
import os
import datetime
import dbs3Client
import pwd
import sys
import re
from optparse import OptionParser
from pprint import pprint
try:
import reqMgrClient
from WMCore.WMSpec.WMWorkload import WMWorkloadHelper
from WMCore.Wrappers import JsonWrapper
except:
print "WMCore libraries not loaded, run the following command:"
print "source /data/srv/wmagent/current/apps/wmagent/etc/profile.d/init.sh"
sys.exit(0)
reqmgrCouchURL = "https://cmsweb.cern.ch/couchdb/reqmgr_workload_cache"
DELTA_EVENTS = 1000
DELTA_LUMIS = 200
def modifySchema(helper, workflow, user, group, cache, events, firstLumi, backfill=False, memory=None):
"""
Adapts schema to right parameters.
If the original workflow points to DBS2, DBS3 URL is fixed instead.
if backfill is True, modifies RequestString, ProcessingString, AcquisitionEra
and Campaign to say Backfill, and restarts requestDate.
"""
result = {}
for (key, value) in helper.data.request.schema.dictionary_whole_tree_().items():
#previous versions of tags
if key == 'ProcConfigCacheID':
result['ConfigCacheID'] = value
elif key == 'RequestSizeEvents':
result['RequestSizeEvents'] = value
#Set memory
elif key == 'Memory':
if memory != None:
result['Memory'] = memory
else:
result['Memory'] = value
#requestor info
elif key == 'Requestor':
result['Requestor'] = user
elif key == 'Group':
result['Group'] = group
#if empty
elif key in ["RunWhitelist", "RunBlacklist", "BlockWhitelist", "BlockBlacklist"] and not value:
result[key] = []
#replace old DBS2 URL
elif value == "http://cmsdbsprod.cern.ch/cms_dbs_prod_global/servlet/DBSServlet":
result[key] = 'https://cmsweb.cern.ch/dbs/prod/global/DBSReader'
#copy the right LFN base
elif key == 'MergedLFNBase':
result['MergedLFNBase'] = helper.getMergedLFNBase()
# skip empty entries
elif value != None:
result[key] = value
elif not value:
continue
# Clean requestor DN?
if 'RequestorDN' in result:
del result['RequestorDN']
#if we are extending the workflow
if events:
# extend workflow so it will safely start outside of the boundary
RequestNumEvents = int(result['RequestNumEvents'])
FirstEvent = int(result['FirstEvent'])
# FirstEvent_NEW > FirstEvent + RequestNumEvents
# the fist event needs to be oustide the range
result['FirstEvent'] = FirstEvent + RequestNumEvents + DELTA_EVENTS
# FirstLumi_NEW > FirstLumi + RequestNumEvents/events_per_job/filterEff
# same for the first lumi, needs to be after the last lumi
result['FirstLumi'] = firstLumi + DELTA_LUMIS
# only the desired events
result['RequestNumEvents'] = events
# prepend EXT_ to recognize as extension
result["RequestString"] = 'EXT_' + result["RequestString"]
else:
# Update the request priority
if cache and 'RequestPriority' in cache:
result['RequestPriority'] = cache['RequestPriority']
# Merged LFN
if 'MergedLFNBase' not in result:
result['MergedLFNBase'] = helper.getMergedLFNBase()
# update information from reqMgr
# Add AcquisitionEra, ProcessingString and increase ProcessingVersion by 1
result["ProcessingString"] = helper.getProcessingString()
result["AcquisitionEra"] = helper.getAcquisitionEra()
# try to parse processing version as an integer, if don't, assign 1 or 2 given the case.
if events:
try:
result["ProcessingVersion"] = int(helper.getProcessingVersion())
except ValueError:
result["ProcessingVersion"] = 1
else:
try:
result["ProcessingVersion"] = int(helper.getProcessingVersion()) + 1
except ValueError:
result["ProcessingVersion"] = 2
# modify for backfill
if backfill:
# Modify ProcessingString, AcquisitionEra, Campaign and Request string (if they don't
# have the word 'backfill' in it
result["ProcessingString"] = "BACKFILL"
if "backfill" not in result["AcquisitionEra"].lower():
result["AcquisitionEra"] = helper.getAcquisitionEra() + "Backfill"
if "backfill" not in result["Campaign"].lower():
result["Campaign"] = result["Campaign"] + "-Backfill"
if "backfill" not in result["RequestString"].lower():
# Word backfill in the middle of the request strin
parts = result["RequestString"].split('-')
result[
"RequestString"] = '-'.join(parts[:2] + ["Backfill"] + parts[2:])
if "PrepID" in result:
# delete entry
del result["PrepID"]
# reset the request date
now = datetime.datetime.utcnow()
result["RequestDate"] = [
now.year, now.month, now.day, now.hour, now.minute]
#result['Memory'] = 3000
return result
def cloneWorkflow(workflow, user, group, verbose=True, backfill=False, testbed=False, memory=None, bwl=None):
"""
clones a workflow
"""
# Get info about the workflow to be cloned
helper = reqMgrClient.retrieveSchema(workflow, reqmgrCouchURL)
# Adapt schema and add original request to it
try:
cache = reqMgrClient.getWorkloadCache(url, workflow)
except:
cache = None
schema = modifySchema(helper, workflow, user, group, cache, None, None, backfill, memory)
schema['OriginalRequestName'] = workflow
if verbose:
pprint(schema)
if bwl:
if 'Task1' in schema:
schema['Task1']['BlockWhitelist'] = bwl.split(',')
else:
schema['BlockWhitelist'] = bwl.split(',')
print 'Submitting workflow'
# Submit cloned workflow to ReqMgr
if testbed:
newWorkflow = reqMgrClient.submitWorkflow(url_tb, schema)
else:
newWorkflow = reqMgrClient.submitWorkflow(url, schema)
if verbose:
print "RESPONSE", newWorkflow
# find the workflow name in response
if newWorkflow:
print 'Cloned workflow: ' + newWorkflow
if verbose:
print newWorkflow
print 'Approving request response:'
# TODO only for debug
#response = reqMgrClient.setWorkflowSplitting(url, schema)
# print "RESPONSE", response
#schema['requestName'] = requestName
#schema['splittingTask'] = '/%s/%s' % (requestName, taskName)
#schema['splittingAlgo'] = splittingAlgo
# Move the request to Assignment-approved
if testbed:
data = reqMgrClient.setWorkflowApproved(url_tb, newWorkflow)
else:
data = reqMgrClient.setWorkflowApproved(url, newWorkflow)
if verbose:
print data
# return the name of new workflow
return newWorkflow
else:
if verbose:
print newWorkflow
else:
print "Couldn't clone the workflow."
return None
def getMissingEvents(workflow):
"""
Gets the missing events for the workflow
"""
inputEvents = reqMgrClient.getInputEvents(url, workflow)
dataset = reqMgrClient.outputdatasetsWorkflow(url, workflow).pop()
outputEvents = reqMgrClient.getOutputEvents(url, workflow, dataset)
return int(inputEvents) - int(outputEvents)
def extendWorkflow(workflow, user, group, verbose=False, events=None, firstlumi=None):
if events is None:
events = getMissingEvents(workflow)
events = int(events)
if firstlumi is None:
#get the last lumi of the dataset
dataset = reqMgrClient.outputdatasetsWorkflow(url, workflow).pop()
lastLumi = dbs3Client.getMaxLumi(dataset)
firstlumi = lastLumi
firstlumi = int(firstlumi)
# Get info about the workflow to be cloned
helper = reqMgrClient.retrieveSchema(workflow)
schema = modifySchema(helper, workflow, user, group, None, events, firstlumi, None)
schema['OriginalRequestName'] = workflow
if verbose:
pprint(schema)
print 'Submitting workflow'
# Submit cloned workflow to ReqMgr
response = reqMgrClient.submitWorkflow(url,schema)
if verbose:
print "RESPONSE", response
#find the workflow name in response
m = re.search("details\/(.*)\'",response)
if m:
newWorkflow = m.group(1)
print 'Cloned workflow: '+newWorkflow
print 'Extended with', events, 'events'
print response
# Move the request to Assignment-approved
print 'Approve request response:'
data = reqMgrClient.setWorkflowApproved(url, newWorkflow)
print data
else:
print response
pass
"""
__Main__
"""
url = 'cmsweb.cern.ch'
url_tb = 'cmsweb-testbed.cern.ch'
reqmgrCouchURL = "https://" + url + "/couchdb/reqmgr_workload_cache"
def main():
# Create option parser
usage = "\n python %prog [options] [WORKFLOW_NAME]"\
"WORKFLOW_NAME: if the list file is provided this should be empty\n"
parser = OptionParser(usage=usage)
parser.add_option("-a", "--action", dest="action", default='clone',
help="There are two options clone (clone) or extend a worflow (extend) .")
parser.add_option("-u", "--user", dest="user",
help="User we are going to use", default=None)
parser.add_option("-g", "--group", dest="group", default='DATAOPS',
help="Group to send the workflows.")
parser.add_option("-b", "--backfill", action="store_true", dest="backfill", default=False,
help="Creates a clone for backfill test purposes.")
parser.add_option("-v", "--verbose", action="store_true", dest="verbose", default=False,
help="Prints all query information.")
parser.add_option('-f', '--file', help='Text file with a list of workflows', dest='file')
parser.add_option('--bwl', help='The block white list to be used', dest='bwl',default=None)
#Extend workflow options
parser.add_option('-e', '--events', help='# of events to add', dest='events')
parser.add_option('-l', '--firstlumi', help='# of the first lumi', dest='firstlumi')
parser.add_option("-m", "--memory", dest="memory", help="Set max memory for the event. At assignment, this will be used to calculate maxRSS = memory*1024")
parser.add_option("--testbed", action="store_true", dest="testbed", default=False,
help="Clone to testbed reqmgr insted of production")
(options, args) = parser.parse_args()
# Check the arguments, get info from them
if options.file:
wfs = [l.strip() for l in open(options.file) if l.strip()]
elif len(args) > 0:
# name of workflow
wfs = [args[0]]
else:
parser.error("Provide the workflow of a file of workflows")
sys.exit(1)
if not options.user:
# get os username by default
uinfo = pwd.getpwuid(os.getuid())
user = uinfo.pw_name
else:
user = options.user
if options.action == 'clone':
for wf in wfs:
workflow = reqMgrClient.Workflow(wf)
if options.memory:
memory = options.memory
else:
memory = workflow.info["Memory"]
cloneWorkflow(
wf, user, options.group, options.verbose, options.backfill, options.testbed, memory,bwl=options.bwl)
elif options.action == 'extend':
for wf in wfs:
extendWorkflow(wf, user, options.group, options.verbose, options.events, options.firstlumi)
sys.exit(0)
if __name__ == "__main__":
main()