-
Notifications
You must be signed in to change notification settings - Fork 107
/
Copy pathResourceControlUpdater.py
361 lines (305 loc) · 15.4 KB
/
ResourceControlUpdater.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
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
"""
Perform cleanup actions
"""
__all__ = []
import urllib2
import threading
import logging
import traceback
import json
from WMCore.WorkerThreads.BaseWorkerThread import BaseWorkerThread
from WMCore.ResourceControl.ResourceControl import ResourceControl
from WMCore.Services.WMStats.WMStatsReader import WMStatsReader
class ResourceControlUpdater(BaseWorkerThread):
"""
Update site status and thresholds from SSB
"""
def __init__(self, config):
"""
Initialize
"""
BaseWorkerThread.__init__(self)
# set the workqueue service for REST call
self.config = config
self.setVariables(self.config)
def setVariables(self, config):
"""
load all the variables from the config file
"""
# get dashboard url, set metric columns from config
self.dashboard = config.AgentStatusWatcher.dashboard
self.siteStatusMetric = config.AgentStatusWatcher.siteStatusMetric
self.cpuBoundMetric = config.AgentStatusWatcher.cpuBoundMetric
self.ioBoundMetric = config.AgentStatusWatcher.ioBoundMetric
# set pending percentages from config
self.pendingSlotsSitePercent = config.AgentStatusWatcher.pendingSlotsSitePercent
self.pendingSlotsTaskPercent = config.AgentStatusWatcher.pendingSlotsTaskPercent
self.runningExpressPercent = config.AgentStatusWatcher.runningExpressPercent
self.runningRepackPercent = config.AgentStatusWatcher.runningRepackPercent
# sites forced to down
self.forceSiteDown = getattr(config.AgentStatusWatcher, 'forceSiteDown', [])
# agent teams (for dynamic threshold) and queueParams (drain mode)
self.teamNames = config.Agent.teamName
self.agentsNumByTeam = getattr(config.AgentStatusWatcher, 'defaultAgentsNumByTeam', 5)
# only SSB sites
self.onlySSB = config.AgentStatusWatcher.onlySSB
# tier mode
self.tier0Mode = hasattr(config, "Tier0Feeder")
self.t1SitesCores = config.AgentStatusWatcher.t1SitesCores
# switch this component on/off
self.enabled = getattr(config.AgentStatusWatcher, 'enabled', True)
def setup(self, parameters):
"""
Set db connection and prepare resource control
"""
# Interface to WMBS/BossAir db
myThread = threading.currentThread()
# set resource control
self.resourceControl = ResourceControl(config = self.config)
# wmstats connection
self.centralCouchDBReader = WMStatsReader(self.config.AgentStatusWatcher.centralWMStatsURL)
def algorithm(self, parameters):
"""
_algorithm_
Update site state and thresholds, based on differences between resource
control database and info available in SSB.
1. Get info from Resource Control database
2. Get info from SSB
3. Get information about teams and number of agents from WMStats
4. Change site state when needed (this triggers a condor clasAd fetch)
5. Change site thresholds when needed (and task thresholds)
Sites from SSB are validated with PhEDEx node names
"""
# set variables every polling cycle
self.setVariables(self.config)
if not self.enabled:
logging.info("This component is not enabled in the configuration. Doing nothing.")
return
try:
sitesRC = self.resourceControl.listSitesSlots()
logging.debug("Info from resource control: %s" % sitesRC)
sitesSSB = self.getInfoFromSSB()
if not sitesSSB:
return
logging.debug("Info from SSB: %s" % sitesSSB)
# Check which site states need to be updated in the database
sitesRC = self.checkStatusChanges(sitesRC, sitesSSB)
# get number of agents working in the same team (not in DrainMode)
self.getAgentsByTeam()
# Check which site slots need to be updated in the database
self.checkSlotsChanges(sitesRC, sitesSSB, self.agentsNumByTeam)
except Exception as ex:
logging.error("Error occurred, will retry later:")
logging.error(str(ex))
logging.error("Trace back: \n%s" % traceback.format_exc())
logging.info("Resource control cycle finished updating site state and thresholds.")
def getAgentsByTeam(self):
"""
_getAgentsByTeam_
Get the WMStats view about agents and teams
"""
agentsByTeam = {}
try:
agentsByTeam = self.centralCouchDBReader.agentsByTeam(filterDrain=True)
except Exception as ex:
logging.error("WMStats is not available or is unresponsive.")
if not agentsByTeam:
logging.debug("agentInfo couch view is not available, use default value %s" % self.agentsNumByTeam)
else:
self.agentsByTeam = agentsByTeam
agentsCount = []
for team in self.teamNames.split(','):
if team not in self.agentsByTeam:
agentsCount.append(1)
else:
agentsCount.append(self.agentsByTeam[team])
# If agent is in several teams, we choose the team with less agents
self.agentsNumByTeam = min(agentsCount, self.agentsNumByTeam)
logging.debug("Agents connected to the same team (not in DrainMode): %d" % self.agentsNumByTeam)
return
def getInfoFromSSB(self):
"""
_getInfoFromSSB_
Get site status, CPU bound and IO bound from dashboard (SSB).
Returns a dict of dicts where the first key is the site name.
"""
# urls from site status board
url_site_state = self.dashboard + '/request.py/getplotdata?columnid=%s&batch=1&lastdata=1' % str(self.siteStatusMetric)
url_cpu_bound = self.dashboard + '/request.py/getplotdata?columnid=%s&batch=1&lastdata=1' % str(self.cpuBoundMetric)
url_io_bound = self.dashboard + '/request.py/getplotdata?columnid=%s&batch=1&lastdata=1' % str(self.ioBoundMetric)
# get info from dashboard
sites = urllib2.urlopen(url_site_state).read()
cpu_bound = urllib2.urlopen(url_cpu_bound).read()
io_bound = urllib2.urlopen(url_io_bound).read()
# parse from json format to dictionary, get only 'csvdata'
site_state = json.loads(sites)['csvdata']
cpu_slots = json.loads(cpu_bound)['csvdata']
io_slots = json.loads(io_bound)['csvdata']
# dictionaries with status/thresholds info by VOName
stateBySite = self.siteStatusByVOName(site_state)
slotsCPU = self.thresholdsByVOName(cpu_slots)
slotsIO = self.thresholdsByVOName(io_slots)
sitesSSB = {}
if not stateBySite or not slotsCPU or not slotsIO:
logging.error("One or more of the SSB metrics is down. Please contact the Dashboard team.")
return sitesSSB
for k,v in stateBySite.iteritems():
sitesSSB[k] = {'state': v}
sitesSSB[k]['slotsCPU'] = slotsCPU[k] if k in slotsCPU else None
sitesSSB[k]['slotsIO'] = slotsIO[k] if k in slotsIO else None
return sitesSSB
def checkStatusChanges(self, infoRC, infoSSB):
"""
_checkStatusChanges_
Checks which sites need to have their site state updated in
resource control, based on:
1. settings defined for the component (config.py)
2. site state changes between SSB and RC
Returns the new infoRC dict (where a few key/value pairs were
deleted - no need to update slots information)
"""
# First sets list of forced sites to down (HLT @FNAL is an example)
for site in self.forceSiteDown:
if site in infoRC and infoRC[site]['state'] != 'Down':
logging.info("Forcing site %s to Down" % site)
self.updateSiteState(site, 'Down')
infoRC.pop(site, None)
# if onlySSB sites, force all the sites not in SSB to down
if self.onlySSB:
for site in set(infoRC).difference(set(infoSSB)):
if infoRC[site]['state'] != 'Down':
logging.info('Only SSBsites, forcing site %s to Down' % site)
self.updateSiteState(site, 'Down')
infoRC.pop(site, None)
# this time don't update infoRC since we still want to update slots info
for site in set(infoRC).intersection(set(infoSSB)):
if infoRC[site]['state'] != infoSSB[site]['state']:
logging.info('Changing %s state from %s to %s' % (site, infoRC[site]['state'],
infoSSB[site]['state']))
self.updateSiteState(site, infoSSB[site]['state'])
return infoRC
def checkSlotsChanges(self, infoRC, infoSSB, agentsCount):
"""
_checkSlotsChanges_
Checks which sites need to have their running and/or pending
slots updated in resource control database, based on:
1. number of agents connected to the same team
2. and slots provided by the Dashboard team (SSB)
If site slots are updated, then also updates its tasks.
"""
tasksCPU = ['Processing', 'Production']
tasksIO = ['Merge', 'Cleanup', 'Harvesting', 'LogCollect', 'Skim']
minCPUSlots, minIOSlots = 50, 25
logging.debug("Settings for site and task pending slots: %s%% and %s%%" %
(self.pendingSlotsSitePercent, self.pendingSlotsTaskPercent))
for site in set(infoRC).intersection(set(infoSSB)):
if self.tier0Mode and 'T1_' in site:
# T1 cores utilization for Tier0
infoSSB[site]['slotsCPU'] = infoSSB[site]['slotsCPU'] * self.t1SitesCores/100
infoSSB[site]['slotsIO'] = infoSSB[site]['slotsIO'] * self.t1SitesCores/100
# round very small sites to the bare minimum
if infoSSB[site]['slotsCPU'] < minCPUSlots:
infoSSB[site]['slotsCPU'] = minCPUSlots
if infoSSB[site]['slotsIO'] < minIOSlots:
infoSSB[site]['slotsIO'] = minIOSlots
CPUBound = infoSSB[site]['slotsCPU']
IOBound = infoSSB[site]['slotsIO']
sitePending = max(int(CPUBound/agentsCount * self.pendingSlotsSitePercent/100), minCPUSlots)
taskCPUPending = max(int(CPUBound/agentsCount * self.pendingSlotsTaskPercent/100), minCPUSlots)
taskIOPending = max(int(IOBound/agentsCount * self.pendingSlotsTaskPercent/100), minIOSlots)
if infoRC[site]['running_slots'] != CPUBound or infoRC[site]['pending_slots'] != sitePending:
# Update site running and pending slots
logging.debug("Updating %s site thresholds for pend/runn: %d/%d" % (site, sitePending, CPUBound))
self.resourceControl.setJobSlotsForSite(site, pendingJobSlots = sitePending,
runningJobSlots = CPUBound)
# Update site CPU tasks running and pending slots (large running slots)
logging.debug("Updating %s tasksCPU thresholds for pend/runn: %d/%d" % (site, taskCPUPending,
CPUBound))
for task in tasksCPU:
self.resourceControl.insertThreshold(site, taskType = task, maxSlots = CPUBound,
pendingSlots = taskCPUPending)
# Update site IO tasks running and pending slots
logging.debug("Updating %s tasksIO thresholds for pend/runn: %d/%d" % (site, taskIOPending,
IOBound))
for task in tasksIO:
self.resourceControl.insertThreshold(site, taskType = task, maxSlots = IOBound,
pendingSlots = taskIOPending)
if self.tier0Mode:
# Set task thresholds for Tier0
logging.debug("Updating %s Express and Repack task thresholds." % site)
expressSlots = int(CPUBound * self.runningExpressPercent/100)
pendingExpress = int(expressSlots * self.pendingSlotsTaskPercent/100)
self.resourceControl.insertThreshold(site, 'Express', expressSlots, pendingExpress)
repackSlots = int(CPUBound * self.runningRepackPercent/100)
pendingRepack = int(repackSlots * self.pendingSlotsTaskPercent/100)
self.resourceControl.insertThreshold(site, 'Repack', repackSlots, pendingRepack)
def thresholdsByVOName(self, sites):
"""
_thresholdsByVOName_
Creates a dictionary with keys->VOName and values->threshold:
"""
thresholdbyVOName = {}
for site in sites:
voname = site['VOName']
value = site['Value']
if voname not in thresholdbyVOName:
if value is None:
logging.warn('Site %s does not have thresholds in SSB, assuming 0' % voname)
thresholdbyVOName[voname] = 0
else:
thresholdbyVOName[voname] = int(value)
else:
logging.error('I have a duplicated threshold entry in SSB for %s' % voname)
return thresholdbyVOName
def siteStatusByVOName(self, sites):
"""
_siteStatusByVOName_
Creates a dictionary with keys->VOName and values->status:
"""
statusBySite = {}
for site in sites:
voname = site['VOName']
status = site['Status']
if not status:
logging.error('Site %s does not have status in SSB' % voname)
continue
if voname not in statusBySite:
statusAgent = self.getState(str(status))
if not statusAgent:
logging.error("Unkwown status '%s' for site %s, please check SSB" % (status, voname))
continue
statusBySite[voname] = statusAgent
else:
logging.error('I have a duplicated status entry in SSB for %s' % voname)
return statusBySite
def getState(self, stateSSB):
"""
_getState_
Translates SSB states into resource control state
"""
ssb2agent = {'on': 'Normal',
'drain': 'Draining',
'down': 'Down',
'skip': 'Down'}
if stateSSB in ssb2agent:
return ssb2agent[stateSSB]
elif stateSSB == "tier0":
logging.debug('There is a site in tier0 status (Tier0Mode is %s)' % self.tier0Mode )
if self.tier0Mode:
return "Normal"
else:
return "Draining"
else:
return None
def updateSiteState(self, siteName, state):
"""
_updateSiteState_
Update only the site state in the resource control database.
"""
try:
self.resourceControl.changeSiteState(siteName, state)
except Exception as ex:
logging.error("Failed to update %s state to %s:" % (siteName, state))
logging.error(str(ex))
logging.error("Traceback: \n%s" % traceback.format_exc())
return