-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoden_rnn2wfa.py
604 lines (544 loc) · 23.7 KB
/
oden_rnn2wfa.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
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
from flask import Flask, make_response, request, abort
import pickle
import threading
import requests
import datetime
import hashlib
import time
import sys
import logging
import pathlib
import copy
import os
import train_rnn_on_wfa # ERASEHERE
import itertools
import json
import subprocess
import rnn2wfa # ERASEHERE
import util
def get_time_hash():
return datetime.datetime.now().strftime("%Y%m%d%H%M%S")
# State of worker. It can be ("idle",), ("working", task), ("done", task, res) or
lock_state = threading.Lock()
state_worker = ("idle",)
# ------ User write below ------
# Hostnames are written separated by breaks.
# hosts = """
# 999.999.999.999
# 999.999.999.998
# 999.999.999.997
# """
# The following try-except block reads hostnames from hosts.txt.
# If you wrote the hostnames above, please disable the block.
try:
hosts = pathlib.Path("hosts.txt").read_text()
except FileNotFoundError:
hosts = ""
ports = [8080]
name = "sample"
interval_polling = 5
timeout = 30
def make_params():
params = []
# reg = ["gpr", "krr", "dtr"]
reg = ["gpr"]
experimental_disable_equivalent = [False]
bfsopt = [(True, True)]
params += [("regr", {
"comment": f"regr{m}dist" + str(bfs) + str(sbd),
"eps": eps,
"max_length": 20,
"eta": 0.1,
"gamma": 0.1,
"cap_m": m,
"depth_eager_search": -1,
"regressor_maker_name": x,
"experimental_constant_allowance": True,
"experimental_automatic_eta": True,
"experimental_disable_restarting": True,
"experimental_bfs": bfs,
"experimental_sort_by_dist": sbd,
"experimental_disable_equivalent": e,
"experimental_skip_existing": False,
"experimental_halt_long_word": 20,
"experimental_wfa_only": True
}) for x in reg for e in experimental_disable_equivalent for bfs, sbd in bfsopt for m in [2, 5] for eps in [0.05]]
# quits = [500, 1000, 2000, 3000, 5000]
# params += [("search", {
# "comment": "search" + str(q),
# "e": 0.05,
# "quit_number": q,
# "experimental_reset": True,
# "experimental_disable_equivalent": ede,
# "experimental_skip_existing": False,
# "experimental_halt_long_word": 20
# }) for ede in experimental_disable_equivalent for q in quits]
return params
# Returns the list of the tasks
def make_tasks_artificial():
# rnns = """20190521160227_hualalai_masaki_1-1.zip
# hualalai_masaki_2-2.zip
# hualalai_masaki_3-4.zip
# hualalai_masaki_4-5.zip"""
# rnns = """20190514171225_rnn_no3_abcdefghijklmno_10_3.zip
# 20190514143034_rnn_no4_abcdefghij_15_3.zip"""
# rnns = "20190904144447-192-168-121-1_rnn_no3_abcdef_10_3.zip"
# sorted!
# rnns = """20190827110441-172-31-28-104_rnn_no1_abcdefghijklmno_10_3.zip
# 20190827125600-172-31-27-60_rnn_no4_abcd_10_3.zip
# 20190827085359-172-31-27-42_rnn_no4_abcdefghij_15_3.zip
# 20190827125514-172-31-20-198_rnn_no3_abcd_10_3.zip
# 20190827090320-172-31-27-60_rnn_no3_abcdefghijklmno_20_3.zip
# 20190827090310-172-31-18-182_rnn_no3_abcdefghijklmno_15_3.zip
# 20190827070625-172-31-29-101_rnn_no4_abcdefghijklmno_10_3.zip
# 20190827130614-172-31-29-75_rnn_no1_abcd_10_3.zip
# 20190827070655-172-31-18-182_rnn_no5_abcdefghijklmno_15_3.zip
# 20190827090330-172-31-25-112_rnn_no3_abcdefghijklmno_10_3.zip
# 20190827125557-172-31-25-112_rnn_no3_abcdef_10_3.zip
# 20190827090530-172-31-20-198_rnn_no3_abcdefghij_15_3.zip
# 20190827125536-172-31-18-182_rnn_no4_abcdef_10_3.zip
# 20190827105954-172-31-27-60_rnn_no2_abcdefghij_10_3.zip
# 20190827130150-172-31-17-80_rnn_no1_abcdef_10_3.zip
# 20190827130301-172-31-28-104_rnn_no2_abcd_10_3.zip
# 20190827110040-172-31-20-198_rnn_no1_abcdefghijklmno_15_3.zip
# 20190827090911-172-31-17-80_rnn_no2_abcdefghijklmno_15_3.zip
# 20190827070707-172-31-25-112_rnn_no4_abcdefghij_20_3.zip
# 20190827125343-172-31-29-101_rnn_no5_abcd_10_3.zip
# 20190827070217-172-31-27-42_rnn_no4_abcdefghijklmno_20_3.zip
# 20190827104555-172-31-27-42_rnn_no2_abcdefghijklmno_10_3.zip
# 20190827071125-172-31-17-80_rnn_no5_abcdefghij_15_3.zip
# 20190827090650-172-31-23-42_rnn_no2_abcdefghijklmno_20_3.zip
# 20190827090609-172-31-28-104_rnn_no3_abcdefghij_20_3.zip
# 20190827090831-172-31-29-75_rnn_no3_abcdefghij_10_3.zip
# 20190827105956-172-31-25-112_rnn_no1_abcdefghijklmno_20_3.zip
# 20190827070825-172-31-28-104_rnn_no5_abcdefghij_10_3.zip
# 20190827105920-172-31-18-182_rnn_no2_abcdefghij_15_3.zip
# 20190827071031-172-31-23-42_rnn_no4_abcdefghijklmno_15_3.zip
# 20190827070909-172-31-20-198_rnn_no5_abcdefghijklmno_10_3.zip
# 20190827105821-172-31-29-101_rnn_no2_abcdefghij_20_3.zip
# 20190827090218-172-31-29-101_rnn_no4_abcdefghij_10_3.zip
# 20190827125741-172-31-23-42_rnn_no2_abcdef_10_3.zip
# 20190827110535-172-31-17-80_rnn_no1_abcdefghij_10_3.zip
# 20190827070645-172-31-27-60_rnn_no5_abcdefghijklmno_20_3.zip
# 20190827110218-172-31-23-42_rnn_no1_abcdefghij_20_3.zip
# 20190827123757-172-31-27-42_rnn_no5_abcdef_10_3.zip
# 20190827070915-172-31-29-75_rnn_no5_abcdefghij_20_3.zip
# 20190827110716-172-31-29-75_rnn_no1_abcdefghij_15_3.zip"""
# rnns = """20190513093734_rnn_no5_abcdef_10_3.zip
# 20190513115614_rnn_no3_abcdef_10_3.zip
# 20190513094050_rnn_no5_abcd_10_3.zip
# 20190513120311_rnn_no2_abcdef_10_3.zip
# 20190515054726_rnn_no4_abcdef_10_3.zip
# 20190515063038_rnn_no3_abcd_10_3.zip
# 20190513094540_rnn_no4_abcd_10_3.zip
# 20190513121140_rnn_no2_abcd_10_3.zip
# 20190513135055_rnn_no1_abcdef_10_3.zip
# 20190513135613_rnn_no1_abcd_10_3.zip
# 20190515060412_rnn_no3_abcdefghij_10_3.zip
# 20190515084348_rnn_no2_abcdefghij_20_3.zip
# 20190515084609_rnn_no2_abcdefghij_10_3.zip
# 20190515112429_rnn_no1_abcdefghijklmno_10_3.zip
# 20190514142823_rnn_no4_abcdefghij_20_3.zip
# 20190515084307_rnn_no2_abcdefghijklmno_10_3.zip
# 20190514171225_rnn_no3_abcdefghijklmno_10_3.zip
# 20190514091252_rnn_no5_abcdefghijklmno_20_3.zip
# 20190514091232_rnn_no5_abcdefghijklmno_15_3.zip
# 20190514142922_rnn_no4_abcdefghijklmno_10_3.zip
# 20190514170722_rnn_no3_abcdefghijklmno_20_3.zip
# 20190514143253_rnn_no4_abcdefghij_10_3.zip
# 20190515112326_rnn_no1_abcdefghijklmno_15_3.zip
# 20190515084323_rnn_no2_abcdefghijklmno_20_3.zip
# 20190515084246_rnn_no2_abcdefghijklmno_15_3.zip
# 20190515060703_rnn_no3_abcdefghij_20_3.zip
# 20190514142303_rnn_no4_abcdefghijklmno_15_3.zip
# 20190514114707_rnn_no5_abcdefghij_15_3.zip
# 20190514114621_rnn_no5_abcdefghij_20_3.zip
# 20190515112145_rnn_no1_abcdefghijklmno_20_3.zip
# 20190514091009_rnn_no5_abcdefghijklmno_10_3.zip
# 20190515060653_rnn_no3_abcdefghij_15_3.zip
# 20190514115036_rnn_no5_abcdefghij_10_3.zip
# 20190514142246_rnn_no4_abcdefghijklmno_20_3.zip
# 20190515131517_rnn_no1_abcdefghij_10_3.zip
# 20190514170952_rnn_no3_abcdefghijklmno_15_3.zip
# 20190514143034_rnn_no4_abcdefghij_15_3.zip
# 20190515084532_rnn_no2_abcdefghij_15_3.zip
# 20190515135758_rnn_no1_abcdefghij_20_3.zip
# 20190515135922_rnn_no1_abcdefghij_15_3.zip"""
#biased
rnns = """20190827130614-172-31-29-75_rnn_no1_abcd_10_3.zip
20190827130150-172-31-17-80_rnn_no1_abcdef_10_3.zip
20190827110535-172-31-17-80_rnn_no1_abcdefghij_10_3.zip
20190827110716-172-31-29-75_rnn_no1_abcdefghij_15_3.zip
20190827110218-172-31-23-42_rnn_no1_abcdefghij_20_3.zip
20190827110441-172-31-28-104_rnn_no1_abcdefghijklmno_10_3.zip
20190827110040-172-31-20-198_rnn_no1_abcdefghijklmno_15_3.zip
20190827105956-172-31-25-112_rnn_no1_abcdefghijklmno_20_3.zip
20190827130301-172-31-28-104_rnn_no2_abcd_10_3.zip
20190827125741-172-31-23-42_rnn_no2_abcdef_10_3.zip
20190827105954-172-31-27-60_rnn_no2_abcdefghij_10_3.zip
20190827105920-172-31-18-182_rnn_no2_abcdefghij_15_3.zip
20190827105821-172-31-29-101_rnn_no2_abcdefghij_20_3.zip
20190827104555-172-31-27-42_rnn_no2_abcdefghijklmno_10_3.zip
20190827090911-172-31-17-80_rnn_no2_abcdefghijklmno_15_3.zip
20190827090650-172-31-23-42_rnn_no2_abcdefghijklmno_20_3.zip
20190827125514-172-31-20-198_rnn_no3_abcd_10_3.zip
20190904144447-192-168-121-1_rnn_no3_abcdef_10_3.zip
20190827090831-172-31-29-75_rnn_no3_abcdefghij_10_3.zip
20190827090530-172-31-20-198_rnn_no3_abcdefghij_15_3.zip
20190827090609-172-31-28-104_rnn_no3_abcdefghij_20_3.zip
20190827090330-172-31-25-112_rnn_no3_abcdefghijklmno_10_3.zip
20190827090310-172-31-18-182_rnn_no3_abcdefghijklmno_15_3.zip
20190827090320-172-31-27-60_rnn_no3_abcdefghijklmno_20_3.zip
20190827125600-172-31-27-60_rnn_no4_abcd_10_3.zip
20190827125536-172-31-18-182_rnn_no4_abcdef_10_3.zip
20190827090218-172-31-29-101_rnn_no4_abcdefghij_10_3.zip
20190827085359-172-31-27-42_rnn_no4_abcdefghij_15_3.zip
20190827070707-172-31-25-112_rnn_no4_abcdefghij_20_3.zip
20190827070625-172-31-29-101_rnn_no4_abcdefghijklmno_10_3.zip
20190827071031-172-31-23-42_rnn_no4_abcdefghijklmno_15_3.zip
20190827070217-172-31-27-42_rnn_no4_abcdefghijklmno_20_3.zip
20190827125343-172-31-29-101_rnn_no5_abcd_10_3.zip
20190827123757-172-31-27-42_rnn_no5_abcdef_10_3.zip
20190827070825-172-31-28-104_rnn_no5_abcdefghij_10_3.zip
20190827071125-172-31-17-80_rnn_no5_abcdefghij_15_3.zip
20190827070915-172-31-29-75_rnn_no5_abcdefghij_20_3.zip
20190827070909-172-31-20-198_rnn_no5_abcdefghijklmno_10_3.zip
20190827070655-172-31-18-182_rnn_no5_abcdefghijklmno_15_3.zip
20190827070645-172-31-27-60_rnn_no5_abcdefghijklmno_20_3.zip"""
rnns = rnns.split("\n")
rnns = [x.strip() for x in rnns]
params = make_params()
tasks = []
for rnn, param in itertools.product(rnns, params):
splitted = rnn.split("_")[2:]
tail = "_".join(splitted)
s3 = f"extract_{tail}"
method = param[0]
eqq_param = param[1]
tasks.append({"method": method, "eqq_param": eqq_param, "s3": s3, "rnn": rnn, "args_RNN": "artificial"})
return tasks
def make_tasks_ADFA():
tasks = []
for param, top_n in itertools.product(make_params(), [151, 10, 20]):
argsrnn = f"adfa_3_{top_n}.zip"
method = param[0]
eqq_param = param[1]
tasks.append({"method": method, "eqq_param": eqq_param,
"s3": "extract_" + argsrnn, "rnn": "hoge", "args_RNN": argsrnn})
return tasks
def make_tasks():
return make_tasks_artificial()
# return make_tasks_ADFA()
# Takes a task and return the result
def calc(d):
with open("eqq_param.json", "w") as f:
json.dump(d["eqq_param"], f)
z = rnn2wfa.run(args_s3rnn=d["rnn"],
args_RNN=d["args_RNN"],
args_tol_rank_init=rnn2wfa.default_tol_rank_init,
args_tol_rank_decay_rate=0.9,
args_tol_rank_lower_bound=rnn2wfa.default_tol_rank_lower_bound,
args_qot_timeout=rnn2wfa.default_qot_timeout,
args_eqq_type=d["method"],
args_eqq_param="eqq_param.json",
args_save_process=True,
args_timeout=10000,
args_max_length=rnn2wfa.default_max_length,
args_s3=d["s3"])
# util.notify_slack(z + "/" + str(d))
return z
# Called when no tasks are assgined to a worker
def handle_finish_machine(uri, name):
pass
# Called when all the tasks are processed
def handle_finish_tasks():
util.notify_slack("finished all!")
pass
# Returns a string that is shown when 'http://(hostname):8080/' is accessed
def show_status():
return "I'm working well!" + state_worker[0]
# ------ User write above ------
def get_hash(o):
return hashlib.md5(pickle.dumps(o)).hexdigest()
# Prepare Flask
app = Flask(__name__)
# Make pages
@app.route("/", methods=["GET"])
def respond_home():
return show_status()
def invoke_calc(task):
global state_worker
try:
res = calc(copy.copy(task))
lock_state.acquire()
state_worker = ("done", task, res)
lock_state.release()
except Exception as e:
import traceback, io
with io.StringIO() as f:
traceback.print_exc(file=f)
app.logger.error(f.getvalue())
lock_state.acquire()
state_worker = ("error", task, f.getvalue())
lock_state.release()
@app.route("/calc", methods=["POST"])
def respond_calc():
global state_worker
app.logger.info("Got calculation request".format())
task = pickle.loads(request.data)
try:
lock_state.acquire()
if state_worker[0] == "idle":
state_worker = ("working", task)
threading.Thread(target=invoke_calc, args=(task,)).start()
app.logger.info("Accepting task".format())
else:
lock_state.release()
app.logger.info("Rejecting the request because the state is {0}".format(state_worker[0]))
abort(503, {})
lock_state.release()
except Exception as e:
import traceback, io
with io.StringIO() as f:
traceback.print_exc(file=f)
app.logger.error(f.getvalue())
state_worker = ("error", task, f.getvalue())
return "Accepted your task"
@app.route("/retrieve", methods=["POST"])
def respond_retrieve():
global state_worker
response = make_response()
app.logger.info("Got retrieval request".format())
task_request = pickle.loads(request.data)
task_request_hash = get_hash(task_request)
if state_worker[0] == "idle":
app.logger.error("The state was idle".format())
abort(404, {}) # 404
elif state_worker[0] == "working":
app.logger.info("The state was working".format())
abort(503, {}) # Service Unavailable
elif state_worker[0] == "done":
app.logger.info("The state was done".format())
lock_state.acquire()
_, task, res = state_worker
task_hash = get_hash(task)
if task_hash != task_request_hash:
app.logger.error("The task we have done and the task of the request are different".format(),
extra={"who": "retrieve"})
app.logger.error("Task we have: {0}".format(task),
extra={"who": "retrieve"})
app.logger.error("Task of request: {0}".format(task_request),
extra={"who": "retrieve"})
lock_state.release()
abort(404, {})
res = pickle.dumps({"task": task, "result": pickle.dumps(res)})
response.data = res
response.mimetype = "application/octet-stream"
state_worker = ("idle",)
app.logger.info("Returning the result".format())
lock_state.release()
return response
elif state_worker[0] == "error":
app.logger.info("The state was error".format())
lock_state.acquire()
_, task, error = state_worker
res = pickle.dumps({"task": task, "error": error})
response.data = res
response.mimetype = "application/octet-stream"
state_worker = ("idle",)
lock_state.release()
return response
app.logger.info("Unexpected state {0}".format(state_worker))
abort(500, {}) # Internal server error
@app.route("/status", methods=["GET"])
def respond_status():
global state_worker
return state_worker[0]
def caller(server, tasks, finisheds, lock, total):
time_start = time.time()
uri_server = server[0]
name_server = server[1]
rootLogger.info("Starting {0}@{1}".format(name_server, uri_server), extra={"who": name_server})
while True:
lock.acquire()
if tasks == []:
lock.release()
break
task = tasks.pop()
rootLogger.info("Popped".format(), extra={"who": name_server})
lock.release()
try:
filename = "{0}_{1}.done.pickle".format(name_server, get_time_hash())
filename_error = "{0}_{1}.error.pickle".format(name_server, get_time_hash())
data = pickle.dumps(task)
res = requests.post(uri_server + "calc", data=data, timeout=timeout)
if res.status_code == 200:
rootLogger.info("Request is accepted".format(), extra={"who": name_server})
while True:
time.sleep(interval_polling)
# rootLogger.info("Polling".format(), extra={"who": name_server})
res2 = requests.post(uri_server + "retrieve", data=data, timeout=timeout)
if res2.status_code == 200:
res2.raw.decode_content = True
res = pickle.loads(res2.content)
if "result" in res:
with open(filename, "wb") as f:
rootLogger.info("Saving the result as {0}".format(filename),
extra={"who": name_server})
f.write(res2.content)
break
elif "error" in res:
rootLogger.info(
"Internal error occurred in the remote machine on the task: {0}".format(res["error"]),
extra={"who": name_server})
with open(filename_error, "wb") as f:
rootLogger.info("Saving the error result as {0}".format(filename_error),
extra={"who": name_server})
f.write(res2.content)
break
else:
raise Exception("Invalid result is given")
elif res2.status_code == 503:
pass # the remote is working
elif res2.status_code == 404:
raise Exception("The remote machine is in idle. The task was gone away...")
else:
raise Exception("Got unexpected error code {0}".format(res2.status_code))
time_elapsed = time.time() - time_start
lock.acquire()
finisheds.append(task)
lock.release()
speed = time_elapsed / len(finisheds)
eta = speed * (total - len(finisheds))
rootLogger.info(
"Finished {0}/{1} tasks ({2} in the queue). ETA is {3}".format(len(finisheds), total, len(tasks),
eta),
extra={"who": name_server})
else:
rootLogger.info("Retrieving failed with {1}".format(res.status_code), extra={"who": name_server})
except Exception as e:
import traceback, io
with io.StringIO() as f:
traceback.print_exc(file=f)
rootLogger.error("Request failed with the following error: {0}".format(f.getvalue()),
extra={"who": name_server})
# put the failed task back to the queue
rootLogger.info("Putting back the failed task to the queue", extra={"who": name_server})
lock.acquire()
tasks.append(task)
lock.release()
break
rootLogger.info("Closing".format(), extra={"who": name_server})
handle_finish_machine(uri_server, name_server)
def get_servers():
servers = [x.strip() for x in hosts.split("\n") if x.strip() != ""]
servers = ["http://{0}:{1}/".format(x, y) for x in servers for y in ports]
servers = [(server, name + str(i)) for i, server in enumerate(servers)]
return servers
def get_status_remotes():
xs = []
servers = get_servers()
for server in servers:
try:
res = requests.get(server[0] + "status")
xs.append((server[0], res.content.decode()))
except:
xs.append((server[0], "error"))
return xs
if __name__ == "__main__":
# Prepare logger
global rootLogger
global logFile
if len(sys.argv) < 2:
print("No modes specified")
sys.exit(1)
if sys.argv[1] == "worker":
logFormatter = logging.Formatter("%(asctime)s [%(levelname)s] %(message)s")
else:
logFormatter = logging.Formatter("%(asctime)s [%(levelname)s] [%(who)s] %(message)s")
rootLogger = logging.getLogger("oden")
rootLogger.setLevel(logging.INFO)
logFile = "{0}.log".format(get_time_hash())
fileHandler = logging.FileHandler(logFile)
fileHandler.setFormatter(logFormatter)
rootLogger.addHandler(fileHandler)
consoleHandler = logging.StreamHandler()
consoleHandler.setFormatter(logFormatter)
rootLogger.addHandler(consoleHandler)
# Main
# print(sys.argv[1])
if sys.argv[1] in ["manager", "test", "resume"]:
tasks = make_tasks()
resume = False
if sys.argv[1] == "resume":
resume = True
rootLogger.info("Starting resume mode".format(), extra={"who": "resume"})
# hoge
hash2task = {get_hash(v): v for v in tasks}
tasks_hash = [get_hash(t) for t in tasks]
tasks_mset = {h: tasks_hash.count(h) for h in hash2task.keys()}
dones = []
for i in pathlib.Path(".").glob("{0}*.done.pickle".format(name)):
with open(i, "rb") as f:
dones.append(pickle.load(f)["task"])
dones_hash = [get_hash(t) for t in dones]
dones_mset = {h: dones_hash.count(h) for h in hash2task.keys()}
remaining_mset = {h: tasks_mset[h] - dones_mset[h] for h in hash2task.keys()}
tasks = []
for k, v in remaining_mset.items():
tasks += [copy.copy(hash2task[k]) for _ in range(v)]
rootLogger.info("Loaded {0} tasks".format(len(tasks)), extra={"who": "resume"})
sys.argv[1] = "manager"
if sys.argv[1] == "manager":
rootLogger.info("Starting manager mode", extra={"who": "manager"})
# check if the remotes are ready
for i in get_status_remotes():
if i[1] != "idle":
rootLogger.error(
"Machine {0} is not in idle ({1}). Cannot start the calculation.".format(i[0], i[1]))
sys.exit(1)
# check if the previous calculation remaining
if any(pathlib.Path(".").glob("{0}*.pickle".format(name))) and (not resume):
ans = ""
while True:
ans = input(
"The previous calculations seems remaining. Do you really start the calculation? (y/n)")
if ans.lower().startswith("y"):
break
elif ans.lower().startswith("n"):
sys.exit(1)
#
servers = get_servers()
rootLogger.info("Servers: " + str(servers), extra={"who": "manager"})
lock = threading.Lock()
num_tasks = len(tasks)
finisheds = []
rootLogger.info("We have {0} tasks.".format(num_tasks), extra={"who": "manager"})
threads = []
for server in servers:
t = threading.Thread(target=caller, args=(server, tasks, finisheds, lock, num_tasks))
t.start()
threads.append(t)
while True:
if all([(not t.is_alive()) for t in threads]):
handle_finish_tasks()
break
elif sys.argv[1] == "test":
with open("test.log", "w") as f:
rootLogger.info("Starting test mode", extra={"who": "test"})
for i in make_tasks():
rootLogger.info("Starting task {0}".format(i), extra={"who": "manager"})
res = calc(i)
print(res)
f.write(res + "\n")
elif sys.argv[1] == "worker":
if len(sys.argv) > 2:
port = int(sys.argv[2])
else:
port = 8080
app.run(host='0.0.0.0', port=port)
elif sys.argv[1] == "status":
for i in get_status_remotes():
print("{0}\t{1}".format(i[0], i[1]))
else:
rootLogger.fatal("Invalid argument {0}".format(sys.argv[1]), extra={"who": "error"})