59e63bc minor 6233050 ok 14477f9 add namenode 75a6d34 add libhdfs opts e3c76bf minmum fix 8b3c435 chg 2035799 test code 7751b2b add debug 7690313 ok bd346b4 ok faba1dc add testload 6f7783e add testload e5f0340 ok 3ed9ec8 chg e552ac4 ask for more ram in am b2505e3 only stop nm when sucess bc696c9 add queue info f3e867e add option queue 5dc843c refactor fileio cd9c81b quick fix 1e23af2 add virtual destructor to iseekstream f165ffb fix hdfs 8cc6508 allow demo to pass in env fad4d69 ok 0fd6197 fix more 7423837 fix more d25de54 add temporal solution, run_yarn_prog.py e5a9e31 final attempt ed3bee8 add command back 0774000 add hdfs to resource 9b66e7e fix hadoop 6812f14 ok 08e1c16 change hadoop prefix back to hadoop home d6b6828 Update build.sh 146e069 bugfix: logical boundary for ring buffer 19cb685 ok 4cf3c13 Merge branch 'master' of ssh://github.com/tqchen/rabit 20daddb add tracker c57dad8 add ringbased passing and batch schedule 295d8a1 update 994cb02 add sge 014c866 OK git-subtree-dir: subtree/rabit git-subtree-split: 59e63bc1354c9ff516d72d9a6468f6c431627202
97 lines
3.2 KiB
Python
Executable File
97 lines
3.2 KiB
Python
Executable File
#!/usr/bin/env python
|
|
"""
|
|
This is the demo submission script of rabit for submitting jobs in local machine
|
|
"""
|
|
import argparse
|
|
import sys
|
|
import os
|
|
import subprocess
|
|
from threading import Thread
|
|
import rabit_tracker as tracker
|
|
if os.name == 'nt':
|
|
WRAPPER_PATH = os.path.dirname(__file__) + '\\..\\wrapper'
|
|
else:
|
|
WRAPPER_PATH = os.path.dirname(__file__) + '/../wrapper'
|
|
|
|
parser = argparse.ArgumentParser(description='Rabit script to submit rabit job locally using python subprocess')
|
|
parser.add_argument('-n', '--nworker', required=True, type=int,
|
|
help = 'number of worker proccess to be launched')
|
|
parser.add_argument('-v', '--verbose', default=0, choices=[0, 1], type=int,
|
|
help = 'print more messages into the console')
|
|
parser.add_argument('command', nargs='+',
|
|
help = 'command for rabit program')
|
|
args = parser.parse_args()
|
|
|
|
# bash script for keepalive
|
|
# use it so that python do not need to communicate with subprocess
|
|
echo="echo %s rabit_num_trial=$nrep;"
|
|
keepalive = """
|
|
nrep=0
|
|
rc=254
|
|
while [ $rc -eq 254 ];
|
|
do
|
|
export rabit_num_trial=$nrep
|
|
%s
|
|
%s
|
|
rc=$?;
|
|
nrep=$((nrep+1));
|
|
done
|
|
"""
|
|
|
|
def exec_cmd(cmd, taskid, worker_env):
|
|
if cmd[0].find('/') == -1 and os.path.exists(cmd[0]) and os.name != 'nt':
|
|
cmd[0] = './' + cmd[0]
|
|
cmd = ' '.join(cmd)
|
|
env = os.environ.copy()
|
|
for k, v in worker_env.items():
|
|
env[k] = str(v)
|
|
env['rabit_task_id'] = str(taskid)
|
|
env['PYTHONPATH'] = WRAPPER_PATH
|
|
|
|
ntrial = 0
|
|
while True:
|
|
if os.name == 'nt':
|
|
env['rabit_num_trial'] = str(ntrial)
|
|
ret = subprocess.call(cmd, shell=True, env = env)
|
|
if ret == 254:
|
|
ntrial += 1
|
|
continue
|
|
else:
|
|
if args.verbose != 0:
|
|
bash = keepalive % (echo % cmd, cmd)
|
|
else:
|
|
bash = keepalive % ('', cmd)
|
|
ret = subprocess.call(bash, shell=True, executable='bash', env = env)
|
|
if ret == 0:
|
|
if args.verbose != 0:
|
|
print 'Thread %d exit with 0' % taskid
|
|
return
|
|
else:
|
|
if os.name == 'nt':
|
|
os.exit(-1)
|
|
else:
|
|
raise Exception('Get nonzero return code=%d' % ret)
|
|
#
|
|
# Note: this submit script is only used for demo purpose
|
|
# submission script using pyhton multi-threading
|
|
#
|
|
def mthread_submit(nslave, worker_args, worker_envs):
|
|
"""
|
|
customized submit script, that submit nslave jobs, each must contain args as parameter
|
|
note this can be a lambda function containing additional parameters in input
|
|
Parameters
|
|
nslave number of slave process to start up
|
|
args arguments to launch each job
|
|
this usually includes the parameters of master_uri and parameters passed into submit
|
|
"""
|
|
procs = {}
|
|
for i in range(nslave):
|
|
procs[i] = Thread(target = exec_cmd, args = (args.command + worker_args, i, worker_envs))
|
|
procs[i].daemon = True
|
|
procs[i].start()
|
|
for i in range(nslave):
|
|
procs[i].join()
|
|
|
|
# call submit, with nslave, the commands to run each job and submit function
|
|
tracker.submit(args.nworker, [], fun_submit = mthread_submit, verbose = args.verbose)
|