-
Notifications
You must be signed in to change notification settings - Fork 10
/
zenApiJobsRouterHelper.py
47 lines (43 loc) · 1.44 KB
/
zenApiJobsRouterHelper.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
import zenApiLib
import logging
from time import time, sleep
if not ('logging' in dir()):
import logging
logging.basicConfig(
format = '%(asctime)s %(levelname)s %(name)s: %(message)s'
)
logging.getLogger().setLevel(logging.ERROR)
api = zenApiLib.zenConnector(section = 'default', routerName = 'JobsRouter')
def checkJobStatus(jobid):
result = api.callMethod('getInfo', jobid=jobid)
try:
status = result['result']['data']['status']
except (KeyError, ValueError):
status = 'UNKNOWN! Invalid Job ID or other failure'
return status
def watchStatus(jobid, timeout=300):
'''
This is a blocking method that will check on the status of
a job every n seconds until it's either completed, aborted,
failed, or a timeout is reached. It returns a tuple with the
success status of the job, and a bool for Success or Failure
'''
jobStatus = 'Unknown'
starttime = time()
while jobStatus != 'SUCCESS':
currtime = time()
jobStatus = checkJobStatus(jobid)
if starttime + timeout <= currtime:
jobStatus = 'TIMEOUT'
break
elif jobStatus == 'ABORTED':
break
sleep(3)
if jobStatus == 'FAILURE':
return jobStatus, False
elif jobStatus == 'ABORTED':
return jobStatus, False
elif jobStatus == 'TIMEOUT':
return jobStatus, False
elif jobStatus == 'SUCCESS':
return jobStatus, True