submit.sh 1.6 KB
Newer Older
X
xiexionghang 已提交
1 2 3 4 5 6 7 8 9 10 11
#!/bin/bash

source ./package/my_nets/config.py

rm -r tmp/*
mkdir tmp
cd tmp

mkdir ./package
cp -r ../package/python ./package
cp -r ../package/my_nets/* ./package
L
linan17 已提交
12
cp -r ../hadoop-client_mpi ./package/hadoop-client
X
xiexionghang 已提交
13 14 15 16 17
cp ../qsub_f.conf ./
cp ../job.sh ./
cp ../job.sh ./package

if [ "a${sparse_table_storage}" = "assd" ];then
L
linan17 已提交
18 19
    sed -i 's/DownpourSparseTable/DownpourSparseSSDTable/g' ./package/reqi_fleet_desc
    sed -i 's/sparse_table_cache_rate: 0.00055/sparse_table_cache_rate: 0.0025/g' ./package/reqi_fleet_desc
X
xiexionghang 已提交
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
fi

current=`date "+%Y-%m-%d %H:%M:%S"`
timeStamp=`date -d "$current" +%s`
output_path=${output_path#*:}
hdfs_output=${output_path}/$timeStamp

export HADOOP_HOME="${local_hadoop_home}"

MPI_NODE_MEM=${node_memory}
echo "SERVER=${mpi_server}" > qsub_f.conf
echo "QUEUE=${mpi_queue}" >> qsub_f.conf
echo "PRIORITY=${mpi_priority}" >> qsub_f.conf
echo "USE_FLAGS_ADVRES=yes" >> qsub_f.conf

if [ "a${sparse_table_storage}" = "assd" ];then
    ${smart_client_home}/bin/qsub_f \
    -N $task_name \
    --conf ./qsub_f.conf \
    --hdfs $fs_name  \
    --ugi $fs_ugi \
    --hout $hdfs_output \
    --am-type smart_am \
    --files ./package \
    --workspace /home/ssd1/normandy/maybach \
    -l nodes=$nodes,walltime=1000:00:00,pmem-hard=$MPI_NODE_MEM,pcpu-soft=280,pnetin-soft=1000,pnetout-soft=1000 ./job.sh
else
    ${smart_client_home}/bin/qsub_f \
    -N $task_name \
    --conf ./qsub_f.conf \
    --hdfs $fs_name  \
    --ugi $fs_ugi \
    --hout $hdfs_output \
    --am-type smart_am \
    --files ./package \
    -l nodes=$nodes,walltime=1000:00:00,pmem-hard=$MPI_NODE_MEM,pcpu-soft=280,pnetin-soft=1000,pnetout-soft=1000 ./job.sh
fi