This repository has been archived by the owner on Jan 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
/
pilot.py
executable file
·566 lines (464 loc) · 21.4 KB
/
pilot.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
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
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
#!/usr/bin/env python
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
# http://www.apache.org/licenses/LICENSE-2.0
#
# Authors:
# - Mario Lassnig, [email protected], 2016-2017
# - Daniel Drizhuk, [email protected], 2017
# - Paul Nilsson, [email protected], 2017-2019
from __future__ import print_function # Python 2 (2to3 complains about this)
from __future__ import absolute_import
import argparse
import logging
import sys
import threading
import time
from os import getcwd, chdir, environ
from os.path import exists, join
from shutil import rmtree
from pilot.common.errorcodes import ErrorCodes
from pilot.common.exception import PilotException
from pilot.info import infosys
from pilot.util.auxiliary import pilot_version_banner, shell_exit_code
from pilot.util.constants import SUCCESS, FAILURE, ERRNO_NOJOBS, PILOT_START_TIME, PILOT_END_TIME, get_pilot_version, \
SERVER_UPDATE_NOT_DONE, PILOT_MULTIJOB_START_TIME
from pilot.util.filehandling import get_pilot_work_dir, mkdirs, establish_logging
from pilot.util.harvester import is_harvester_mode
from pilot.util.https import https_setup
from pilot.util.timing import add_to_pilot_timing
errors = ErrorCodes()
def main():
"""
Main function of PanDA Pilot 2.
Prepare for and execute the requested workflow.
:return: exit code (int).
"""
# get the logger
logger = logging.getLogger(__name__)
# print the pilot version
pilot_version_banner()
# define threading events
args.graceful_stop = threading.Event()
args.abort_job = threading.Event()
args.job_aborted = threading.Event()
# define useful variables
args.retrieve_next_job = True # go ahead and download a new job
args.signal = None # to store any incoming signals
args.signal_counter = 0 # keep track of number of received kill signal (suicide counter)
args.kill_time = 0 # keep track of when first kill signal arrived
# perform https setup
if args.use_https:
https_setup(args, get_pilot_version())
# initialize InfoService
try:
infosys.init(args.queue)
# check if queue is ACTIVE
if infosys.queuedata.state != 'ACTIVE':
logger.critical('specified queue is NOT ACTIVE: %s -- aborting', infosys.queuedata.name)
return errors.PANDAQUEUENOTACTIVE
except PilotException as error:
logger.fatal(error)
return error.get_error_code()
# set the site name for rucio ## is it really used?
environ['PILOT_RUCIO_SITENAME'] = infosys.queuedata.site
# store the site name as set with a pilot option
environ['PILOT_SITENAME'] = infosys.queuedata.resource #args.site # TODO: replace with singleton
# set requested workflow
logger.info('pilot arguments: %s', str(args))
workflow = __import__('pilot.workflow.%s' % args.workflow, globals(), locals(), [args.workflow], 0) # Python 3, -1 -> 0
# execute workflow
try:
exit_code = workflow.run(args)
except Exception as e:
logger.fatal('main pilot function caught exception: %s', e)
exit_code = None
return exit_code
class Args:
"""
Dummy namespace class used to contain pilot arguments.
"""
pass
def str2bool(v):
""" Helper function to convert string to bool """
if isinstance(v, bool):
return v
if v.lower() in ('yes', 'true', 't', 'y', '1'):
return True
elif v.lower() in ('no', 'false', 'f', 'n', '0'):
return False
else:
raise argparse.ArgumentTypeError('Boolean value expected.')
def get_args():
"""
Return the args from the arg parser.
:return: args (arg parser object).
"""
arg_parser = argparse.ArgumentParser()
# pilot log creation
arg_parser.add_argument('--no-pilot-log',
dest='nopilotlog',
action='store_true',
default=False,
help='Do not write the pilot log to file')
# pilot work directory
arg_parser.add_argument('-a',
dest='workdir',
default="",
help='Pilot work directory')
# debug option to enable more log messages
arg_parser.add_argument('-d',
dest='debug',
action='store_true',
default=False,
help='Enable debug mode for logging messages')
# the choices must match in name the python module in pilot/workflow/
arg_parser.add_argument('-w',
dest='workflow',
default='generic',
choices=['generic', 'generic_hpc',
'production', 'production_hpc',
'analysis', 'analysis_hpc',
'eventservice_hpc', 'stagein', 'payload_stageout'],
help='Pilot workflow (default: generic)')
# graciously stop pilot process after hard limit
arg_parser.add_argument('-l',
dest='lifetime',
default=324000,
required=False,
type=int,
help='Pilot lifetime seconds (default: 324000 s)')
# set the appropriate site, resource and queue
arg_parser.add_argument('-q',
dest='queue',
required=True,
help='MANDATORY: queue name (e.g., AGLT2_TEST-condor)')
arg_parser.add_argument('-r',
dest='resource',
required=False, # From v 2.2.0 the resource name is internally set
help='OBSOLETE: resource name (e.g., AGLT2_TEST)')
arg_parser.add_argument('-s',
dest='site',
required=False, # From v 2.2.1 the site name is internally set
help='OBSOLETE: site name (e.g., AGLT2_TEST)')
# graciously stop pilot process after hard limit
arg_parser.add_argument('-j',
dest='job_label',
default='ptest',
help='Job prod/source label (default: ptest)')
# pilot version tag; PR or RC
arg_parser.add_argument('-i',
dest='version_tag',
default='PR',
help='Version tag (default: PR, optional: RC)')
arg_parser.add_argument('-z',
dest='update_server',
action='store_false',
default=True,
help='Disable server updates')
arg_parser.add_argument('-t',
dest='verify_proxy',
action='store_false',
default=True,
help='Disable proxy verification')
arg_parser.add_argument('-u',
dest='verify_payload_proxy',
action='store_false',
default=True,
help='Disable payload proxy verification')
# graciously stop pilot process after hard limit
arg_parser.add_argument('-v',
dest='getjob_requests',
default=2,
required=False,
type=int,
help='Number of getjob requests')
arg_parser.add_argument('-x',
dest='getjob_failures',
default=5,
required=False,
type=int,
help='Maximum number of getjob request failures in Harvester mode')
# SSL certificates
arg_parser.add_argument('--cacert',
dest='cacert',
default=None,
help='CA certificate to use with HTTPS calls to server, commonly X509 proxy',
metavar='path/to/your/certificate')
arg_parser.add_argument('--capath',
dest='capath',
default=None,
help='CA certificates path',
metavar='path/to/certificates/')
# Server URLs and ports
arg_parser.add_argument('--url',
dest='url',
default='', # the proper default is stored in default.cfg
help='PanDA server URL')
arg_parser.add_argument('-p',
dest='port',
default=25443,
help='PanDA server port')
arg_parser.add_argument('--queuedata-url',
dest='queuedata_url',
default='',
help='Queuedata server URL')
# Country group
arg_parser.add_argument('--country-group',
dest='country_group',
default='',
help='Country group option for getjob request')
# Working group
arg_parser.add_argument('--working-group',
dest='working_group',
default='',
help='Working group option for getjob request')
# Allow other country
arg_parser.add_argument('--allow-other-country',
dest='allow_other_country',
type=str2bool,
default=False,
help='Is the resource allowed to be used outside the privileged group?')
# Allow same user
arg_parser.add_argument('--allow-same-user',
dest='allow_same_user',
type=str2bool,
default=True,
help='Multi-jobs will only come from same taskID (and thus same user)')
# Experiment
arg_parser.add_argument('--pilot-user',
dest='pilot_user',
default='generic',
required=True,
help='Pilot user (e.g. name of experiment corresponding to pilot plug-in)')
# Harvester specific options (if any of the following options are used, args.harvester will be set to True)
arg_parser.add_argument('--harvester-workdir',
dest='harvester_workdir',
default='',
help='Harvester work directory')
arg_parser.add_argument('--harvester-datadir',
dest='harvester_datadir',
default='',
help='Harvester data directory')
arg_parser.add_argument('--harvester-eventstatusdump',
dest='harvester_eventstatusdump',
default='',
help='Harvester event status dump json file containing processing status')
arg_parser.add_argument('--harvester-workerattributes',
dest='harvester_workerattributes',
default='',
help='Harvester worker attributes json file containing job status')
arg_parser.add_argument('--harvester-submit-mode',
dest='harvester_submitmode',
default='PULL',
help='Harvester submit mode (PUSH or PULL [default])')
arg_parser.add_argument('--resource-type',
dest='resource_type',
default='',
type=str,
choices=['SCORE', 'MCORE', 'SCORE_HIMEM', 'MCORE_HIMEM'],
help='Resource type; MCORE, SCORE, SCORE_HIMEM or MCORE_HIMEM')
arg_parser.add_argument('--use-https',
dest='use_https',
type=str2bool,
default=True,
help='Use HTTPS protocol for communications with server')
arg_parser.add_argument('--cleanup',
dest='cleanup',
type=str2bool,
default=True,
help='Cleanup work directory after pilot has finished')
arg_parser.add_argument('--use-realtime-logging',
dest='use_realtime_logging',
type=str2bool,
default=False,
help='Use near real-time logging')
arg_parser.add_argument('--realtime-logging-server',
dest='realtime_logging_server',
default='',
help='Near real-time logging server')
# Harvester and Nordugrid specific options
arg_parser.add_argument('--input-dir',
dest='input_dir',
default='',
help='Input directory')
arg_parser.add_argument('--output-dir',
dest='output_dir',
default='',
help='Output directory')
arg_parser.add_argument('--job-type',
dest='jobtype',
default='',
help='Job type (managed, user)')
arg_parser.add_argument('--use-rucio-traces',
dest='use_rucio_traces',
type=str2bool,
default=True,
help='Use rucio traces')
# HPC options
arg_parser.add_argument('--hpc-resource',
dest='hpc_resource',
default='',
help='Name of the HPC (e.g. Titan)')
arg_parser.add_argument('--hpc-mode',
dest='hpc_mode',
default='manytoone',
help='HPC mode (manytoone, jumbojobs)')
arg_parser.add_argument('--es-executor-type',
dest='executor_type',
default='generic',
help='Event service executor type (generic, raythena)')
return arg_parser.parse_args()
def create_main_work_dir(args):
"""
Create and return the pilot's main work directory.
The function also sets args.mainworkdir and cd's into this directory.
:param args: pilot arguments object.
:return: exit code (int), main work directory (string).
"""
exit_code = 0
if args.workdir != "":
mainworkdir = get_pilot_work_dir(args.workdir)
try:
# create the main PanDA Pilot work directory
mkdirs(mainworkdir)
except PilotException as error:
# print to stderr since logging has not been established yet
print('failed to create workdir at %s -- aborting: %s' % (mainworkdir, error), file=sys.stderr)
exit_code = shell_exit_code(error._errorCode)
else:
mainworkdir = getcwd()
args.mainworkdir = mainworkdir
chdir(mainworkdir)
return exit_code, mainworkdir
def set_environment_variables(args, mainworkdir):
"""
Set environment variables. To be replaced with singleton implementation.
This function sets PILOT_WORK_DIR, PILOT_HOME, PILOT_SITENAME, PILOT_USER and PILOT_VERSION and others.
:param args: args object.
:param mainworkdir: work directory (string).
:return:
"""
# working directory as set with a pilot option (e.g. ..)
environ['PILOT_WORK_DIR'] = args.workdir # TODO: replace with singleton
# main work directory (e.g. /scratch/PanDA_Pilot2_3908_1537173670)
environ['PILOT_HOME'] = mainworkdir # TODO: replace with singleton
# pilot source directory (e.g. /cluster/home/usatlas1/gram_scratch_hHq4Ns/condorg_oqmHdWxz)
environ['PILOT_SOURCE_DIR'] = args.sourcedir # TODO: replace with singleton
# set the pilot user (e.g. ATLAS)
environ['PILOT_USER'] = args.pilot_user # TODO: replace with singleton
# internal pilot state
environ['PILOT_JOB_STATE'] = 'startup' # TODO: replace with singleton
# set the pilot version
environ['PILOT_VERSION'] = get_pilot_version()
# set the default wrap-up/finish instruction
environ['PILOT_WRAP_UP'] = 'NORMAL'
# proxy verifications
environ['PILOT_PROXY_VERIFICATION'] = '%s' % args.verify_proxy
environ['PILOT_PAYLOAD_PROXY_VERIFICATION'] = '%s' % args.verify_payload_proxy
# keep track of the server updates, if any
environ['SERVER_UPDATE'] = SERVER_UPDATE_NOT_DONE
# set the (HPC) resource name (if set in options)
environ['PILOT_RESOURCE_NAME'] = args.hpc_resource
# allow for the possibility of turning off rucio traces
environ['PILOT_USE_RUCIO_TRACES'] = str(args.use_rucio_traces)
# event service executor type
environ['PILOT_ES_EXECUTOR_TYPE'] = args.executor_type
if args.output_dir:
environ['PILOT_OUTPUT_DIR'] = args.output_dir
# keep track of the server urls
_port = ":%s" % args.port
url = args.url if _port in args.url else args.url + _port
environ['PANDA_SERVER_URL'] = url
environ['QUEUEDATA_SERVER_URL'] = '%s' % args.queuedata_url
def wrap_up(initdir, mainworkdir, args):
"""
Perform cleanup and terminate logging.
:param initdir: launch directory (string).
:param mainworkdir: main work directory (string).
:param args: pilot arguments object.
:return: exit code (int).
"""
exit_code = 0
# cleanup pilot workdir if created
if initdir != mainworkdir and args.cleanup:
chdir(initdir)
try:
rmtree(mainworkdir)
except Exception as e:
logging.warning("failed to remove %s: %s", mainworkdir, e)
else:
logging.info("removed %s", mainworkdir)
# in Harvester mode, create a kill_worker file that will instruct Harvester that the pilot has finished
if args.harvester:
from pilot.util.harvester import kill_worker
kill_worker()
try:
exit_code = trace.pilot['error_code']
except Exception:
exit_code = trace
else:
logging.info('traces error code: %d', exit_code)
if trace.pilot['nr_jobs'] <= 1:
if exit_code != 0:
logging.info('an exit code was already set: %d (will be converted to a standard shell code)', exit_code)
elif trace.pilot['nr_jobs'] > 0:
if trace.pilot['nr_jobs'] == 1:
logging.getLogger(__name__).info('pilot has finished (%d job was processed)', trace.pilot['nr_jobs'])
else:
logging.getLogger(__name__).info('pilot has finished (%d jobs were processed)', trace.pilot['nr_jobs'])
exit_code = SUCCESS
elif trace.pilot['state'] == FAILURE:
logging.critical('pilot workflow failure -- aborting')
elif trace.pilot['state'] == ERRNO_NOJOBS:
logging.critical('pilot did not process any events -- aborting')
exit_code = ERRNO_NOJOBS
logging.info('pilot has finished')
logging.shutdown()
return shell_exit_code(exit_code)
def get_pilot_source_dir():
"""
Return the pilot source directory.
:return: full path to pilot source directory.
"""
cwd = getcwd()
if exists(join(join(cwd, 'pilot2'), 'pilot.py')): # in case wrapper has untarred src as pilot2 in init dir
return join(cwd, 'pilot2')
elif exists(join(cwd, 'pilot.py')): # in case pilot gets launched from within the src dir
return cwd
else:
# could throw error here, but logging is not setup yet - fail later
return cwd
if __name__ == '__main__':
"""
Main function of pilot module.
"""
# get the args from the arg parser
args = get_args()
# Define and set the main harvester control boolean
args.harvester = is_harvester_mode(args)
# initialize the pilot timing dictionary
args.timing = {} # TODO: move to singleton?
# initialize job status dictionary (e.g. used to keep track of log transfers)
args.job_status = {} # TODO: move to singleton or to job object directly?
# store T0 time stamp
add_to_pilot_timing('0', PILOT_START_TIME, time.time(), args)
add_to_pilot_timing('1', PILOT_MULTIJOB_START_TIME, time.time(), args)
# if requested by the wrapper via a pilot option, create the main pilot workdir and cd into it
args.sourcedir = getcwd() #get_pilot_source_dir()
exit_code, mainworkdir = create_main_work_dir(args)
if exit_code != 0:
sys.exit(exit_code)
# set environment variables (to be replaced with singleton implementation)
set_environment_variables(args, mainworkdir)
# setup and establish standard logging
establish_logging(debug=args.debug, nopilotlog=args.nopilotlog)
# execute main function
trace = main()
# store final time stamp (cannot be placed later since the mainworkdir is about to be purged)
add_to_pilot_timing('0', PILOT_END_TIME, time.time(), args, store=False)
# perform cleanup and terminate logging
exit_code = wrap_up(args.sourcedir, mainworkdir, args)
# the end.
sys.exit(exit_code)