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
|
#!/usr/bin/env python3
"""A simple utility to unpickle some code, run it, and pickle the
results.
"""
import logging
import os
import signal
import sys
import threading
import time
from typing import Optional
import cloudpickle # type: ignore
import psutil # type: ignore
import argparse_utils
import bootstrap
import config
from stopwatch import Timer
from thread_utils import background_thread
logger = logging.getLogger(__file__)
cfg = config.add_commandline_args(
f"Remote Worker ({__file__})",
"Helper to run pickled code remotely and return results",
)
cfg.add_argument(
'--code_file',
type=str,
required=True,
metavar='FILENAME',
help='The location of the bundle of code to execute.',
)
cfg.add_argument(
'--result_file',
type=str,
required=True,
metavar='FILENAME',
help='The location where we should write the computation results.',
)
cfg.add_argument(
'--watch_for_cancel',
action=argparse_utils.ActionNoYes,
default=True,
help='Should we watch for the cancellation of our parent ssh process?',
)
@background_thread
def watch_for_cancel(terminate_event: threading.Event) -> None:
logger.debug('Starting up background thread...')
p = psutil.Process(os.getpid())
while True:
saw_sshd = False
ancestors = p.parents()
for ancestor in ancestors:
name = ancestor.name()
pid = ancestor.pid
logger.debug(f'Ancestor process {name} (pid={pid})')
if 'ssh' in name.lower():
saw_sshd = True
break
if not saw_sshd:
logger.error(
'Did not see sshd in our ancestors list?! Committing suicide.'
)
os.system('pstree')
os.kill(os.getpid(), signal.SIGTERM)
time.sleep(5.0)
os.kill(os.getpid(), signal.SIGKILL)
sys.exit(-1)
if terminate_event.is_set():
return
time.sleep(1.0)
def cleanup_and_exit(
thread: Optional[threading.Thread],
stop_thread: Optional[threading.Event],
exit_code: int,
) -> None:
if stop_thread is not None:
stop_thread.set()
assert thread is not None
thread.join()
sys.exit(exit_code)
@bootstrap.initialize
def main() -> None:
in_file = config.config['code_file']
out_file = config.config['result_file']
thread = None
stop_thread = None
if config.config['watch_for_cancel']:
(thread, stop_thread) = watch_for_cancel()
logger.debug(f'Reading {in_file}.')
try:
with open(in_file, 'rb') as rb:
serialized = rb.read()
except Exception as e:
logger.exception(e)
logger.critical(f'Problem reading {in_file}. Aborting.')
cleanup_and_exit(thread, stop_thread, 1)
logger.debug(f'Deserializing {in_file}.')
try:
fun, args, kwargs = cloudpickle.loads(serialized)
except Exception as e:
logger.exception(e)
logger.critical(f'Problem deserializing {in_file}. Aborting.')
cleanup_and_exit(thread, stop_thread, 2)
logger.debug('Invoking user code...')
with Timer() as t:
ret = fun(*args, **kwargs)
logger.debug(f'User code took {t():.1f}s')
logger.debug('Serializing results')
try:
serialized = cloudpickle.dumps(ret)
except Exception as e:
logger.exception(e)
logger.critical(f'Could not serialize result ({type(ret)}). Aborting.')
cleanup_and_exit(thread, stop_thread, 3)
logger.debug(f'Writing {out_file}.')
try:
with open(out_file, 'wb') as wb:
wb.write(serialized)
except Exception as e:
logger.exception(e)
logger.critical(f'Error writing {out_file}. Aborting.')
cleanup_and_exit(thread, stop_thread, 4)
cleanup_and_exit(thread, stop_thread, 0)
if __name__ == '__main__':
main()
|