Blame view

egs/gp/s1/utils/submit_jobs.sh 5.42 KB
8dcb6dfcb   Yannick Estève   first commit
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
  #!/bin/bash -u
  
  # Copyright 2012  Arnab Ghoshal
  
  # Licensed under the Apache License, Version 2.0 (the "License");
  # you may not use this file except in compliance with the License.
  # You may obtain a copy of the License at
  #
  #  http://www.apache.org/licenses/LICENSE-2.0
  #
  # THIS CODE IS PROVIDED *AS IS* BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  # KIND, EITHER EXPRESS OR IMPLIED, INCLUDING WITHOUT LIMITATION ANY IMPLIED
  # WARRANTIES OR CONDITIONS OF TITLE, FITNESS FOR A PARTICULAR PURPOSE,
  # MERCHANTABLITY OR NON-INFRINGEMENT.
  # See the Apache 2 License for the specific language governing permissions and
  # limitations under the License.
  
  set -o errexit
  
  function error_exit () {
    echo -e "$@" >&2; exit 1;
  }
  
  function readposint () {
    local retval=`expr "X$1" : '[^=]*=\(.*\)'`;
    retval=${retval#0*}  # Strip any leading 0's
    [[ "$retval" =~ ^[1-9][0-9]*$ ]] \
      || error_exit "Argument \"$retval\" not a positive integer."
    echo $retval
  }
  
  PROG=`basename $0`;
  usage="Usage: $PROG [options] --log=logfile command
  
  Runs the supplied command and redirect the stdout & stderr to logfile.
  
  With the --qcmd option, the command is submitted to a grid engine.
  
  Any 'TASK_ID' in logfile or command is replaced with job number or \$SGE_TASK_ID (for SGE).
  
  
  Required arguments:
  
    --log=FILE\tOutput of command redirected to this file.
  
  
  Options:
  
    --njobs=INT\tNumber of jobs to run (default=1). Assumes split data exists.
  
    --nosync\tWait for all jobs to finish without using the -sync option (off by default).
  
    --qcmd=STRING\tCommand for submitting a job to a grid engine (e.g. qsub) including switches.
  
  ";
  
  if [ $# -lt 2 ]; then
    error_exit $usage;
  fi
  
  NJOBS=1     # Default number of jobs
  QCMD=""     # No grid usage by default
  SYNC=1      # Use -sync option for qsub by default
  while [ $# -gt 1 ]; do
    case "${1# *}" in  # ${1# *} strips any leading spaces from the arguments
    --help) echo -e $usage; exit 0 ;;
    --qcmd=*)
    QCMD=`expr "X$1" : '[^=]*=\(.*\)'`; shift ;;
    --njobs=*)
    NJOBS=`readposint $1`; shift ;;
    --nosync) SYNC=0; shift ;;
    --log=*)
    LOGF=`expr "X$1" : '[^=]*=\(.*\)'`; shift ;;
    -*)  echo "Unknown argument: $1, exiting"; echo -e $usage; exit 1 ;;
    '')  shift ;;  # Handle any empty arguments
    *)   break ;;  # interpreted as the command to execute
    esac
  done
  
  logfile_base=`basename $LOGF .log`
  logfile_dir=`dirname $LOGF`
  mkdir -p $logfile_dir;
  
  # Now, parse the command to execute
  exec_cmd="";
  while [ $# -gt 0 ]; do
    case "$1" in
    *\"*) exec_cmd=$exec_cmd"'''$1''' "; shift ;;
    *\ *) exec_cmd=$exec_cmd"\"$1\" "; shift ;;
       *) exec_cmd=$exec_cmd"$1 "; shift ;;
    esac
  done
  
  function run_locally () {
    rm -f $logfile_dir/.error;
    for n in `seq 1 $NJOBS`; do
      local this_logfile=${logfile_base//TASK_ID/$n}
      this_logfile=$logfile_dir"/"$this_logfile".log"
      local this_command=${exec_cmd//TASK_ID/$n}
      ( echo -e "# Command:
  # $this_command";
        echo "# Running on: "`hostname`;
        echo "# Started at: "`date`;
        eval $this_command || touch $logfile_dir/.error
        echo "# Finished at: "`date` ) >> $this_logfile 2>&1 &
    done
    wait;
    [ -f $logfile_dir/.error ] && { rm -f $logfile_dir/.error; \
        error_exit "One (or more) locally run jobs failed."; }
    exit 0;
  }
  
  function submit_sync () {
    local qdir=$1;
    local batch_file=$2;
    local command=$3
    local logfile=$4
    local qlog=$qdir/queue.log
  
    printf "#!/bin/bash
  #\$ -S /bin/bash
  #\$ -V -cwd -j y
  " > $batch_file
    { printf "{ cd $PWD
    . ./path.sh
    echo Running on: \`hostname\`
  ";
      printf "  echo Started at: \`date\`
    $command
    ret=\$\?
  ";
      printf "  echo Finished at: \`date\`
  } >& %s
  exit \$ret
  " "$logfile"
      printf "# Submitted with:
  "
      printf "# $QCMD -sync y -o $qlog -t 1-$NJOBS $batch_file >> $qlog 2>&1
  "
    } >> $batch_file
  
    $QCMD -sync y -o $qlog -t 1-${NJOBS} $batch_file >& $qlog
    exit $?
  }
  
  function submit_nosync () {
    local qdir=$1;  rm -f $qdir/error
    local batch_file=$2;
    local command=$3
    local logfile=$4
    local qlog=$qdir/queue.log
  
    printf "#!/bin/bash
  #\$ -S /bin/bash
  #\$ -V -cwd -j y
  " > $batch_file
    { printf "{ cd $PWD
    . ./path.sh
    echo Running on: \`hostname\`
  ";
      printf "  echo Started at: \`date\`
  ";
      printf "  $command || { echo \$SGE_TASK_ID >> $qdir/error; ret=1; }
  ";
      printf "  echo Finished at: \`date\`
  } >& %s
  exit \$ret
  " "$logfile"
      printf "# Submitted with:
  "
      printf "# $QCMD -sync n -o $qlog -t 1-$NJOBS $batch_file >> $qlog 2>&1
  "
    } >> $batch_file
  
    local qsub_message=`$QCMD -sync n -o $qlog -t 1-${NJOBS} $batch_file`;
    echo $qsub_message > $qlog
    local jobid=$(echo $qsub_message | awk '{print $3}')
    jobid=${jobid//.*/}
    while [[ `qstat|grep $jobid` ]] ; do sleep 60 ; done
    if [ -f $qdir/error ]; then exit 1; else exit 0; fi
  }
  
  function run_on_grid () {
    local this_logfile=${logfile_base//TASK_ID/\$SGE_TASK_ID}
    this_logfile=$logfile_dir"/"$this_logfile".log"
    # If log files are in a separate 'log' directory, create the job submission
    # scripts one level up.
    local qdir=${logfile_dir/%log/q}
    mkdir -p $qdir
    local this_command=${exec_cmd//TASK_ID/\$SGE_TASK_ID}
    local batch_file=$qdir"/"${logfile_base//TASK_ID/}".sh"
    batch_file=${batch_file//../.}
  
    if [ $SYNC -eq 1 ]; then
      submit_sync "$qdir" "$batch_file" "$this_command" "$this_logfile"
    else
      submit_nosync "$qdir" "$batch_file" "$this_command" "$this_logfile"
    fi
    exit 99  # Should never be reached!
  }
  
  if [ -z "$QCMD" ]; then
    run_locally;
  else
    run_on_grid;
  fi