forked from LPD-EPFL/AggregaThor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
deploy.py
329 lines (303 loc) · 11 KB
/
deploy.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
# coding: utf-8
###
# @file deploy.py
# @author Sébastien Rouault <[email protected]>
# Georgios Damaskinos <[email protected]>
# Arsany Guirguis <[email protected]>
# Grigori Fursin <[email protected]>
#
# @section LICENSE
#
# Copyright © 2018-2019 Sébastien ROUAULT.
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
#
# @section DESCRIPTION
#
# TF cluster automated deployment over SSH.
###
if __name__ != "__main__":
raise RuntimeError("Script " + repr(__file__) + " is to be used as the main module only")
import argparse
import os
import signal
import socket
import subprocess
import sys
import time
import shlex
# Special import scheme for stand-alone instances
try:
import tools
cluster_parse = tools.cluster_parse
cluster_parsers = tools.cluster_parsers
except Exception:
import json
cluster_parse = lambda x: json.loads(x)
cluster_parsers = ""
# ---------------------------------------------------------------------------- #
# Graceful termination
# Registered exit callbacks and calling
exit_callbacks = []
exit_pending = False
def mark_exit(*args, **kwargs):
""" Simply mark exit as pending.
"""
global exit_pending
exit_pending = True
def clean_exit(code, *args, **kwargs):
""" Call all the exit callbacks, then exit.
Args:
code Return code
... Arguments to forward to the callbacks
"""
# Call registered callbacks
global exit_callbacks
for callback in exit_callbacks:
callback(*args, **kwargs)
# Actual exit
exit(code)
# Signal handlers
signal.signal(signal.SIGINT, mark_exit)
signal.signal(signal.SIGTERM, mark_exit)
# ---------------------------------------------------------------------------- #
# Command line
# Description
parser = argparse.ArgumentParser(formatter_class=argparse.RawTextHelpFormatter)
parser.add_argument("--cluster",
type=str,
required=True,
help="Full cluster specification, JSON format: {\"<jobname>\": [\"hostname:port\", ...], ...}" + ("" if len(cluster_parsers) == 0 else ", or special value(s): " + cluster_parsers))
parser.add_argument("--deploy",
action="store_true",
default=False,
help="Whether this instance must deploy the whole cluster through SSH")
parser.add_argument("--id",
type=str,
help="This node's role, format: <job>:<id>")
parser.add_argument("--nice",
nargs="*",
help="Make this process nice, or list of job(s) which tasks must maximize their respective niceness level")
parser.add_argument("--omit",
action="store_true",
default=False,
help="Do not start the node's server instance, can be used only with '--id' and '--deploy'")
parser.add_argument("--MPI",
action="store_true",
default=False,
help="Run with MPI instead of gRPC.")
parser.add_argument("--runner",
type=str,
default= '',
help="Arguments should be passed to runner.py. This is used if MPI is required")
parser.add_argument("--UDP",
type=int,
default=0,
help="Number of workers running over UDP (could be seen as Byzantine)")
# ID parser
def parse_id(text):
""" Parse and return the <job>:<id> string.
Args:
text String to parse
Returns:
This node's job name, this node's id
"""
sep = text.rfind(":")
if sep < -1:
raise ValueError("Invalid ID format")
nid = int(text[sep + 1:])
if nid < 0:
raise ValueError("Expected non-negative node ID")
return text[:sep], nid
# Command line parsing and checks
args = parser.parse_args(sys.argv[1:])
cluster = cluster_parse(args.cluster)
cluster_repr = repr(cluster).replace("'", "\"")
#hosts = ""
host_arr = []
ps_node = ""
nb_workers=0
for node_job, hostss in cluster.items():
if node_job == 'ps':
ps_node = hostss[0][:hostss[0].find(':')]
continue
else:
nb_workers = len(hostss)
for host in hostss:
host_arr.append(host[:host.find(':')])
#for host in host_arr:
# hosts = hosts + "," + host
#hosts = hosts + "," + ps_node
#hosts=hosts[1:] #to remove the first ","
hostsss = host_arr
hostsss.insert(0,ps_node)
common_mpi_cmd = "-x USE_UDP=1 -x MPI_DISABLED=0 -x PS="+ ps_node +" -x Worker="+str(nb_workers)+" -x UDP_WORKERS=" + str(args.UDP)
nices = args.nice if args.nice is not None else []
for job in nices:
if job not in cluster:
print("\033[1;33mJob " + repr(job) + " does not appear in the cluster specification, hence cannot be nice\033[0m")
deploy = args.deploy
omit = args.omit
mpi = args.MPI
runner = args.runner
if args.id is None:
if not deploy:
raise RuntimeError("Nothing to do (no deployment and no node ID)")
if omit:
raise RuntimeError("Cannot omit starting the node's server instance if its identity is unknown")
this_job, this_id = None, None
else:
if omit and not deploy:
raise RuntimeError("Nothing to do (no server start and no deployment)")
this_job, this_id = parse_id(args.id)
if this_job not in cluster or this_id >= len(cluster[this_job]):
raise ValueError("Role is not in the specified cluster")
be_nice = args.nice is not None and (args.nice == [] or this_job in args.nice)
del args
# ---------------------------------------------------------------------------- #
# (NFS-free) SSH deployment
source = None
def deploy_source():
""" Lazy-load and return the source code of the current script.
Returns:
This script source code
"""
global source
if source is None:
with open(__file__, "rb") as f:
source = f.read()
return source
def deploy_one(host, cluster, node_job, node_id):
""" Deploy a cluster node through SSH.
Args:
host Target host name
cluster Full cluster specification
node_job Node's job name
node_id Node's task id
"""
global mpi
src = deploy_source()
if not mpi:
args = ["ssh", host, sys.executable]
handler = subprocess.Popen(args, stdin=subprocess.PIPE)
exit_callbacks.append(lambda *args, **kwargs: handler.terminate())
# Need to propogate path to TensorFlow if installed in a user space or unusual path
pythonpath = os.environ.get('PYTHONPATH', '')
syspaths = ''
syspaths_added = []
for pp in pythonpath.split(':'):
if pp != '' and pp not in syspaths_added:
syspaths += "sys.path.append(" + repr(pp) + "); "
syspaths_added.append(pp)
cmd = ("import sys; " + syspaths + " sys.argv = [\"\", \"--cluster\", " + repr(cluster_repr) + ", " + ("\"--nice\", " if node_job in nices else "") + "\"--id\", " + repr(node_job + ":" + str(node_id)) + "," + ("\"--MPI\"" if mpi else "") + "];" + os.linesep).encode()
if not mpi:
handler.stdin.write(cmd)
handler.stdin.write(src)
handler.stdin.close()
else:
# cmd = sys.executable + " << EOF \n" + cmd.decode("utf-8") + " " + src.decode("utf-8") + "EOF"
dirname, filename = os.path.split(os.path.abspath(__file__))
# cmd = sys.executable + " " + dirname + "\dep.py "
#Write the new file then send it to the target host
ff = open("dep"+str(node_id)+".py","w+")
ff.write(cmd.decode("utf-8") + " " + src.decode("utf-8"))
ff.close()
cmd = sys.executable + " " + dirname + "/dep"+str(node_id)+".py"
cp_cmd = "scp " + dirname+ "/dep"+str(node_id)+".py "+host+":"+dirname+"/"
handler = subprocess.Popen(cp_cmd, shell = True)
exit_callbacks.append(lambda *args, **kwargs: handler.terminate())
return cmd
def deploy_all(cluster, this_job, this_id):
""" Deploy all the given cluster through SSH, except this node if specified, register the exit handler.
Args:
cluster Full cluster specification
this_job This node's job name, that won't be deployed (None to deploy all)
this_id This node's task id
"""
global mpi
global common_mpi_cmd
common = ": " + common_mpi_cmd + " -np 1 -host "
wrk_command= ""
hosts_idx = 1
for node_job, hosts in cluster.items():
for node_id in range(len(hosts)):
if exit_pending:
return
if this_job and node_job == this_job and node_id == this_id: # Do not deploy (again) this node
continue
# Host name parsing
host = hosts[node_id]
hpos = host.find(":")
if hpos < 0:
raise ValueError("Invalid hostname:port format")
host = host[:hpos]
# Deploy node
cmd = deploy_one(host, cluster, node_job, node_id)
if mpi:
wrk_command = wrk_command+ " " + common + hostsss[hosts_idx] + " " + cmd
hosts_idx+=1
return wrk_command
# ---------------------------------------------------------------------------- #
# TensorFlow server
def server_as(cluster, node_job, node_id):
""" Create and start a TF cluster server.
Args:
cluster Full cluster specification
this_job This node's job name
this_id This node's task id
"""
global mpi
if be_nice:
os.nice(19)
import tensorflow as tf
cluster = tf.train.ClusterSpec(cluster)
if mpi:
proto = 'grpc+mpi'
sys.stdout.flush()
else:
proto = 'grpc'
server = tf.train.Server(cluster, job_name=this_job, task_index=this_id, start=True, protocol=proto)
print("\033[1;30m[" + node_job + ":" + str(node_id) + "]\033[1;32m " + server.target.decode().replace("localhost", socket.gethostname()) + (" (nice)" if be_nice else "") + "\033[0m")
# ---------------------------------------------------------------------------- #
# Main
# Deploy if asked
if not exit_pending and deploy:
wrk_cmd = deploy_all(cluster, this_job, this_id)
if mpi:
assert len(runner) != 0, "runner.py arguments should be passed if MPI is used"
cmd = "/usr/local/bin/mpirun --allow-run-as-root -quiet" + " " + common_mpi_cmd + " -np 1 -host " + hostsss[0] +" " + sys.executable + " runner.py " + runner + " " + wrk_cmd #Run this on the PS node
sys.stdout.flush()
handler = subprocess.Popen(cmd, shell=True)
exit_callbacks.append(lambda *args, **kwargs: handler.terminate())
# Serve if asked
if not exit_pending and this_job is not None:
if omit:
print("\033[1;30m[" + this_job + ":" + str(this_id) + "]\033[1;34m No server running\033[0m")
else:
server_as(cluster, this_job, this_id)
# Flush standard outputs
sys.stdout.flush()
sys.stderr.flush()
# Wait exit request
while not exit_pending:
time.sleep(1)
if os.getppid() <= 1:
break
# Clean exit
clean_exit(0)