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
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
|
'''
run processes asynchronously on various machines, with a callback
on process exit.
'''
# to do someday:
#
# This feature should really be broken into 3 parts:
# - remotely execute on another machine
# - track concurrent execution
# - reserve resource usage
#
# To start a process, ask for a resource reservation. (Currently, the
# only resource we track is CPUs.) If we don't get a reservation, we
# don't run right away.
#
# If we do, use the remote exec to run the process on the target machine.
# This is the part that knows hosts.ini. (We also use hosts.ini to declare
# resource availability.)
#
# When the process finishes, release the resource reservation.
#
from __future__ import print_function
import subprocess
import time
import datetime
import os
import os.path
import traceback
import sys
import errno
import re
from . import nodes
try:
import configparser as ConfigParser
except ImportError:
import ConfigParser
def config_yes_no(d,which) :
if not which in d :
return False
s = d[which]
return s.strip()[0].lower() in ( 'y', 't', '1' )
debug=0
if 'STEUERMANN_DEBUG' in os.environ:
try:
debug = int(os.environ['STEUERMANN_DEBUG'])
except ValueError:
print('STEUERMANN_DEBUG expects an integer value', file=sys.stderr)
exit(1)
#####
class struct :
pass
#####
class run_exception(Exception) :
pass
class runner(object):
# dict of all current running processes, indexed by node name
all_procs = None
# index of nodes
node_index = None
#
host_info_cache = None
# dict of how many commands we have running for that machine
howmany = None
#####
#
def __init__( self, nodes, hosts_ini ) :
self.all_procs = { }
self.node_index = nodes
self.load_host_info(filename = hosts_ini)
self.host_info_cache = { }
self.resources = {}
self.resources_avail = {}
#####
# start a process
def run( self, node, run_name, logfile_name, no_run = False ):
'''
run a process
return is:
D - host disabled
M - not run; resource limit
R - running
'''
try :
try :
args = self.get_host_info(node.host)
except Exception as e :
log_traceback()
print("ERROR: do not know how to run on %s"%node.host)
print(e)
raise
if ( config_yes_no(args,'disable') ) :
return 'D'
# track resources
if node.host not in self.resources.keys():
self.resources[node.host] = {}
self.resources_avail[node.host] = {}
for key, val in args.items():
if key.startswith('res_'):
key = key.lstrip('res_')
self.resources[node.host][key] = int(val)
if key not in self.resources_avail[node.host].keys():
self.resources_avail[node.host][key] = int(val)
# check if enough resources on host and return if not
enough = True
for res, amount in node.resources.items():
if res in self.resources[node.host].keys():
avail = self.resources_avail[node.host][res]
if amount > avail:
enough = False
break
if not enough:
return 'M'
# allocate host resources
for res, amount in node.resources.items():
if res in self.resources[node.host].keys():
self.resources_avail[node.host][res] -= amount
if debug :
print("run",node.name)
print("....%s:%s/%s\n"%(node.host, node.table, node.cmd))
node.running = 1
args = args.copy()
args.update(
script=node.script,
script_type=node.script_type,
host=node.host,
table=node.table,
cmd=node.cmd,
node=node.name,
w_node=node.name.replace("/","_").replace(":","_"),
runname=run_name,
)
# also stick everything from env into args (if not already defined)
for k, v in os.environ.items():
if k not in args.keys():
args[k] = v
# we want things defined in the CONDITIONS block to be part of args
# (except for hostname)
for k, v in nodes.saved_conditions.items():
if v == True:
v = 'True'
if v == False:
v = 'False'
if not k == 'hostname' and not k == 'node':
args[k] = v
if debug :
print("ARGS")
for x in sorted([x for x in args]) :
print('%s=%s'%(x,args[x]))
args['script'] = args['script'] % args
if args['script_type'] == 'r' :
run = args['run']
elif args['script_type'] == 'l' :
run = args['local']
else :
raise Exception()
t = [ ]
for x in run :
# bug: what to do in case of keyerror
t.append(x % args)
run = t
if debug :
print("RUN",run)
try :
os.makedirs( os.path.dirname(logfile_name) )
except OSError as e :
if e.errno == errno.EEXIST :
pass
else :
raise
# open the log file, write initial notes
logfile = open(logfile_name, "w")
logfile.write('%s %s\n'%(datetime.datetime.now(),run))
logfile.flush()
# debug - just say the name of the node we would run
if ( no_run ) :
run = [ 'echo', 'disable run - node=', node.name ]
# start running the process
if debug :
print("RUN",run)
p = subprocess.Popen(
args=run,
stdout=logfile,
stderr=subprocess.STDOUT,
shell=False, close_fds=True
)
# remember the popen object for the process; remember the open log file
n = struct()
n.proc = p
n.logfile = logfile
n.logfile_name = logfile_name
# remember the process is running
self.all_procs[node.name] = n
return 'R'
except Exception as e :
log_traceback()
txt= "ERROR RUNNING %s"%node.name
raise run_exception(txt)
#####
# callback when a node finishes
def finish( self, node_name, status):
node = self.node_index[node_name]
args = self.get_host_info(node.host)
# de-allocate host resources
for res, amount in node.resources.items():
if res in self.resources[node.host].keys():
self.resources_avail[node.host][res] += amount
if debug :
hostname = args['hostname']
print("finish %s %s"%(hostname,node_name))
# note the termination of the process at the end of the log file
logfile = self.all_procs[node_name].logfile
logfile.seek(0, os.SEEK_END) # end of file
logfile.write('\n%s exit=%s\n'%(datetime.datetime.now(),status))
logfile.close()
# note the completion of the command
if debug :
print("finish",node.name)
node.running = 0
node.finished = 1
node.exit_status = status
#####
# poll for exited child processes - this whole thing could could
# be event driven, but I don't care to work out the details right
# now.
def poll( self ) :
# look at all active processes
for name in self.all_procs :
# see if name has finished
p = self.all_procs[name].proc
n = p.poll()
if n is not None :
# marke the node finished
self.finish(name,n)
#
status = p.returncode
# remove it from the list of pending processes
del self.all_procs[name]
# Return the identity of the exited process.
# There may be more, but we will come back and poll again.
return ( name, status )
return None
#####
def display_procs( self ) :
# display currently active child processes
print("procs:")
for x in sorted(self.all_procs) :
print(" ",x)
print("")
#####
def _host_get_names( self, cfg, section ) :
d = { }
# pick all the variables out of this section
try :
for name, value in cfg.items(section) :
if value.startswith('[') :
# it is a list
d[name] = eval(value)
elif name.endswith('$') :
# this is ugly, but we'll do it for now
x = value.split('$')
x = x[0] + os.environ[x[1]]
d[name[:-1]] = x
else :
# everything else is plain text
d[name] = value
return d
except ConfigParser.NoSectionError :
print("No config section in hosts.ini: %s"%section)
return { }
def load_host_info( self, filename ) :
if os.path.exists(filename):
pass
# print 'READING HOST INFO FROM %s' %filename
else:
print('ERROR - %s does not exist' %filename)
sys.exit(1)
# read the config file
self.cfg = ConfigParser.RawConfigParser()
self.cfg.read(filename)
def get_host_info(self, host) :
if not host in self.host_info_cache :
d = self._host_get_names(self.cfg, host)
if 'like' in d :
# get the dict of what this entry is like, copy it,
# and update it with the values for this entry
d1 = self.get_host_info(d['like'])
d1 = d1.copy()
d1.update(d)
d = d1
del d['like']
# default hostname is the name from the section header
if not 'hostname' in d :
d['hostname'] = host
self.host_info_cache[host] = d
return self.host_info_cache[host]
#####
# The traceback interface is awkward in python; here is something I copied from pyetc:
def log_traceback() :
# You would think that the python traceback module contains
# something useful to do this, but it always returns multi-line
# strings. I want each line of output logged separately so the log
# file remains easy to process, so I reverse engineered this out of
# the logging module.
print("LOG TRACEBACK:")
try:
etype, value, tb = sys.exc_info()
tbex = traceback.extract_tb( tb )
print(tbex)
for filename, lineno, name, line in tbex :
print('%s:%d, in %s'%(filename,lineno,name))
if line:
print(' %s'%line.strip())
for x in traceback.format_exception_only( etype, value ) :
print(": %s",x)
print("---")
finally:
# If you don't clear these guys, you can make loops that
# the garbage collector has to work hard to eliminate.
etype = value = tb = None
|