-
Notifications
You must be signed in to change notification settings - Fork 2
/
run_SGEJobCancel.sh
executable file
·491 lines (405 loc) · 15.8 KB
/
run_SGEJobCancel.sh
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
#!/bin/bash
#***************************************************************************************
# brief:
# --resubmit SGE jobs
# --usage: ./run_SGEJobCancel.sh ${Option}
#
# --e.g:
# 1) cancel all jobs
# ./run_SGEJobCancel.sh All
#
# 2) cancel all releated jobs of given YUVs
# ./run_SGEJobCancel.sh YUV 01.yuv 02.yuv
#
# 2) cancel given Job IDs
# ./run_SGEJobCancel.sh JobID 123 124 126
#
#
#
#date: 6/09/2015 Created
#***************************************************************************************
runUsage()
{
echo ""
echo -e "\033[32m usage: ./run_SGEJobCancel.sh \${Option} \033[0m"
echo ""
echo -e "\033[32m --e.g: \033[0m"
echo -e "\033[32m 1) cancel all jobs \033[0m"
echo -e "\033[32m ./run_SGEJobCancel.sh All \033[0m"
echo ""
echo -e "\033[32m 2) cancel all releated jobs of given YUVs \033[0m"
echo -e "\033[32m ./run_SGEJobCancel.sh YUV 01.yuv 02.yuv \033[0m"
echo ""
echo -e "\033[32m 3) cancel given Job IDs \033[0m"
echo -e "\033[32m ./run_SGEJobCancel.sh JobID 123 124 126 \033[0m"
echo ""
}
runInit()
{
declare -a aSubmittedSGEJobIDList
declare -a aSubmittedSGEJobNameList
declare -a aSubmittedSGEJobInfoList
declare -a aReSubmittedYUVList
declare -a aReSubmittedSGEJobFileList
declare -a aReSubmittedSGEJobOutFileList
declare -a aReSubmittedSGEJobFlagFileList
declare -a aReSubmittedSGEJobErrorInfoFileList
declare -a aReSubmittedSGEJobSHA1List
declare -a aReSubmittedSGEJobAllCasesFileList
declare -a aReSubmittedSGEJobErrorCasesFileList
declare -a aReSubmittedSGEJobTestReportFileList
declare -a aResubmitSGEJobIDList
declare -a aResubmitSGEJobNameList
declare -a aResubmitSGEJobInfoList
declare -a aUpdateLogFlagList
let "ReSubmittedJobNum = 0"
let "MatchedJobIDNum = 0"
CurrentDir=`pwd`
TestSpace=${CurrentDir}/AllTestData
TestResultDir=${CurrentDir}/FinalResult
SGEJobSubmitJobLog="${CurrentDir}/SGEJobsSubmittedInfo.log"
date
DateInfo=`date`
DateInfo=`echo ${DateInfo} | awk '{for(i=1;i<=NF;i++) printf("--%s",$i)}'`
BackupSGEJobSubmitJobLog=${SGEJobSubmitJobLog}-${DateInfo}.log
JobCancelLog="${CurrentDir}/ReSubmitInfo_Date-${DateInfo}.log"
}
#*******************************************************************************
# job submitted info in log looks like as below
# ******************************************************************************
# ******************************************************************************
# test YUV is Doc_Complex_768x1024.yuv
# ******************************************************************************
# Your job 2607 ("----Doc_Complex_768x1024.yuv_SubCaseIndex_0----") has been submitted
# Your job 2608 ("----Doc_Complex_768x1024.yuv_SubCaseIndex_10----") has been submitted
# Your job 2609 ("----Doc_Complex_768x1024.yuv_SubCaseIndex_11----") has been submitted
# ......
runGetSubmittedJobInfoByIDs()
{
#aSubmittedSGEJobIDList=(2590 2608 2612)
let "ReSubmittedJobNum = ${#aSubmittedSGEJobIDList[@]}"
let "MatchedJobIDNum = 0"
for((i=0;i<${ReSubmittedJobNum};i++))
do
aSubmittedSGEJobNameList[$i]=NULL
aSubmittedSGEJobInfoList[$i]=NULL
done
while read line
do
if [[ "$line" =~ ^"Your job" ]]
then
TempJobID=`echo $line | awk '{print $3}'`
TempJobName=`echo $line | awk 'BEGIN {FS="----"} {print $2}'`
for((i=0;i<${ReSubmittedJobNum};i++))
do
vSubmmitedJobID=${aSubmittedSGEJobIDList[$i]}
if [ "${vSubmmitedJobID}" -eq "${TempJobID}" ]
then
aSubmittedSGEJobNameList[$i]=${TempJobName}
aSubmittedSGEJobInfoList[$i]=${line}
let "MatchedJobIDNum ++"
fi
done
fi
done <${SGEJobSubmitJobLog}
echo "aSubmittedSGEJobNameList is ${aSubmittedSGEJobNameList[@]}"
}
runGetSubmittedJobInfoByYUVs()
{
#aReSubmittedYUVList=(Doc_Complex_768x1024.yuv )
let "NumYUV=${#aReSubmittedYUVList[@]}"
let "ReSubmittedJobNum = 0"
let "MatchedJobIDNum = 0"
while read line
do
if [[ "$line" =~ ^"Your job" ]]
then
TempJobID=`echo $line | awk '{print $3}'`
TempJobName=`echo $line | awk 'BEGIN {FS="----"} {print $2}'`
for((i=0;i<${NumYUV};i++))
do
vReSubmmitedYUV=${aReSubmittedYUVList[$i]}
if [[ "${TempJobName}" =~ "${vReSubmmitedYUV}" ]]
then
echo "---------------------------------------"
echo " i is $i"
echo "TempJobID is ${TempJobID}"
echo "TempJobName is ${TempJobName}"
echo "vReSubmmitedYUV is ${vReSubmmitedYUV}"
echo "ReSubmittedJobNum is ${ReSubmittedJobNum}"
aSubmittedSGEJobIDList[$ReSubmittedJobNum]=${TempJobID}
aSubmittedSGEJobNameList[$ReSubmittedJobNum]=${TempJobName}
aSubmittedSGEJobInfoList[$ReSubmittedJobNum]=${line}
echo "aSubmittedSGEJobIDList[$ReSubmittedJobNum] is ${aSubmittedSGEJobIDList[$ReSubmittedJobNum]}"
echo "aSubmittedSGEJobNameList[$ReSubmittedJobNum] is ${aSubmittedSGEJobNameList[$ReSubmittedJobNum]}"
echo "aSubmittedSGEJobInfoList[$ReSubmittedJobNum] is ${aSubmittedSGEJobInfoList[$ReSubmittedJobNum]}"
let "ReSubmittedJobNum ++"
let "MatchedJobIDNum ++"
fi
done
fi
done <${SGEJobSubmitJobLog}
}
runGetSubmittedJobInfoByAllJobs()
{
let "ReSubmittedJobNum =0"
let "ExampleLineFlag =0"
let "MatchedJobIDNum =0"
while read line
do
if [[ "$line" =~ ^"Your job" ]]
then
if [ ${ExampleLineFlag} -eq 0 ]
then
let "ExampleLineFlag = 1"
else
TempJobID=`echo $line | awk '{print $3}'`
TempJobName=`echo $line | awk 'BEGIN {FS="----"} {print $2}'`
aSubmittedSGEJobIDList[$ReSubmittedJobNum]=${TempJobID}
aSubmittedSGEJobNameList[$ReSubmittedJobNum]=${TempJobName}
aSubmittedSGEJobInfoList[$ReSubmittedJobNum]=${line}
let "ReSubmittedJobNum ++"
let "MatchedJobIDNum ++"
fi
fi
done <${SGEJobSubmitJobLog}
return 0
}
runOutputReSubmittedJobInfo()
{
echo -e "\033[32m ****************************************************************************** \033[0m"
echo ReSubmitted Job info listed as below:
echo -e "\033[32m ****************************************************************************** \033[0m"
for((i=0;i<${ReSubmittedJobNum};i++))
do
echo -e "\033[32m ${aSubmittedSGEJobIDList[$i]}: ${aSubmittedSGEJobNameList[$i]} \033[0m"
echo -e "\033[32m sge job submitted info : ${aSubmittedSGEJobInfoList[$i]} \033[0m"
echo -e "\033[32m sge job file : ${aReSubmittedSGEJobFileList[$i]} \033[0m"
echo -e "\033[32m job output file : ${aReSubmittedSGEJobOutFileList[$i]} \033[0m"
echo -e "\033[32m job error info file : ${aReSubmittedSGEJobErrorInfoFileList[$i]} \033[0m"
echo -e "\033[32m job submitted flag file : ${aReSubmittedSGEJobFlagFileList[$i]} \033[0m"
echo ""
echo -e "\033[32m result-SHA1 file : ${aReSubmittedSGEJobSHA1List[$i]} \033[0m"
echo -e "\033[32m result-All cases file : ${aReSubmittedSGEJobAllCasesFileList[$i]} \033[0m"
echo -e "\033[32m result-Failed cases file: ${aReSubmittedSGEJobErrorCasesFileList[$i]} \033[0m"
echo -e "\033[32m result-Test report file : ${aReSubmittedSGEJobTestReportFileList[$i]} \033[0m"
done
echo -e "\033[32m ****************************************************************************** \033[0m"
}
runGetReSubmittedSGEJobFile()
{
for((i=0;i<${ReSubmittedJobNum};i++))
do
aReSubmittedSGEJobFileList[$i]=NULL
aReSubmittedSGEJobOutFileList[$i]=NULL
aReSubmittedSGEJobErrorInfoFileList[$i]=NULL
aReSubmittedSGEJobFlagFileList[$i]=NULL
done
for file in ${TestSpace}/*/*.sge*
do
TempFileName=`echo $file | awk 'BEGIN {FS="/"} {print $NF}'`
vMatchedPattern=`echo $TempFileName | awk 'BEGIN {FS=".sge"} {print $1}'`
for((i=0;i<${ReSubmittedJobNum};i++))
do
if [[ "${aSubmittedSGEJobNameList[$i]}" =~ "${vMatchedPattern}" ]]
then
if [[ "${file}" =~ .sge$ ]]
then
aReSubmittedSGEJobFileList[$i]=${file}
fi
if [[ "${file}" =~ .sge.o$ ]]
then
aReSubmittedSGEJobOutFileList[$i]=${file}
fi
if [[ "${file}" =~ .sge.e$ ]]
then
aReSubmittedSGEJobErrorInfoFileList[$i]=${file}
fi
if [[ "${file}" =~ .sge_Submitted.flag$ ]]
then
aReSubmittedSGEJobFlagFileList[$i]=${file}
fi
fi
done
done
}
#***************************************************************
# job test result files listed as below
#***************************************************************
# CREW_352x288_30.yuv_AllCasesOutput_SubCasesIndex_0.csv
# CREW_352x288_30.yuv_AllCases_SHA1_Table_SubCasesIndex_0.csv
# CREW_352x288_30.yuv_UnpassedCasesOutput_SubCasesIndex_0.csv
# TestReport_CREW_352x288_30.yuv_SubCasesIndex_0.report.log
runGetReSubmittedSGEJobTestRestultFile()
{
for((i=0;i<${ReSubmittedJobNum};i++))
do
aReSubmittedSGEJobSHA1List[$i]=NULL
aReSubmittedSGEJobAllCasesFileList[$i]=NULL
aReSubmittedSGEJobErrorCasesFileList[$i]=NULL
aReSubmittedSGEJobTestReportFileList[$i]=NULL
done
for file in ${TestResultDir}/*
do
TempFileName=`echo $file | awk 'BEGIN {FS="/"} {print $NF}'`
TempYUVName=NULL
TempSubCaseIndex=NULL
vMatchedPattern=NULL
if [[ "$file" =~ .csv$ ]]
then
TempYUVName=`echo $TempFileName | awk 'BEGIN {FS=".yuv"} {print $1}'`
TempSubCaseIndex=`echo $TempFileName | awk 'BEGIN {FS="SubCasesIndex_"} {print $2}'`
TempSubCaseIndex=`echo $TempSubCaseIndex | awk 'BEGIN {FS=".csv"} {print $1}'`
elif [[ "$file" =~ .report.log$ ]]
then
TempYUVName=`echo $TempFileName | awk 'BEGIN {FS=".yuv"} {print $1}'`
TempYUVName=`echo $TempYUVName | awk 'BEGIN {FS="TestReport_"} {print $2}'`
TempSubCaseIndex=`echo $TempFileName | awk 'BEGIN {FS="SubCasesIndex_"} {print $2}'`
TempSubCaseIndex=`echo $TempSubCaseIndex | awk 'BEGIN {FS=".report.log"} {print $1}'`
fi
vMatchedPattern="${TempYUVName}.yuv_SubCaseIndex_${TempSubCaseIndex}"
for((i=0;i<${ReSubmittedJobNum};i++))
do
if [ "${aSubmittedSGEJobNameList[$i]}" = "${vMatchedPattern}" ]
then
if [[ "${TempFileName}" =~ "AllCases_SHA1_Table" ]]
then
aReSubmittedSGEJobSHA1List[$i]=${file}
fi
if [[ "${TempFileName}" =~ "AllCasesOutput_" ]]
then
aReSubmittedSGEJobAllCasesFileList[$i]=${file}
fi
if [[ "${TempFileName}" =~ "UnpassedCasesOutput" ]]
then
aReSubmittedSGEJobErrorCasesFileList[$i]=${file}
fi
if [[ "${TempFileName}" =~ .report.log$ ]]
then
aReSubmittedSGEJobTestReportFileList[$i]=${file}
fi
fi
done
done
}
runDelPreviousJob()
{
echo -e "\033[34m ********************************************************** \033[0m"
echo " del previous jobs"
echo -e "\033[34m ********************************************************** \033[0m"
for((i=0;i<${ReSubmittedJobNum};i++))
do
vTempJobID=${aSubmittedSGEJobIDList[$i]}
echo "Deleted Job ID is ${vTempJobID} "
qdel ${vTempJobID}
done
echo -e "\033[34m ********************************************************** \033[0m"
}
runCheck()
{
if [ ! -e ${SGEJobSubmitJobLog} ]
then
echo -e "\033[31m ********************************************************************* \033[0m"
echo " SGE job submitted info log file does not exist,please double check"
echo -e "\033[31m ********************************************************************* \033[0m"
exit 1
fi
}
runParseOption()
{
if [ "${aOption[0]}" == "All" ]
then
return 0
elif [ "${aOption[0]}" == "YUV" ]
then
if [ ${ParamNum} -lt 2 ]
then
runUsage
exit 1
fi
for((i=1;i<ParamNum;i++))
do
let "j = i-1"
aReSubmittedYUVList[$j]=${aOption[$i]}
done
return 0
elif [ "${aOption[0]}" == "JobID" ]
then
if [ ${ParamNum} -lt 2 ]
then
runUsage
exit 1
fi
for((i=1;i<ParamNum;i++))
do
let "j = i-1"
aSubmittedSGEJobIDList[$j]=${aOption[$i]}
done
return 0
else
runUsage
exit 1
fi
}
runGetJobsInfo()
{
if [ "${aOption[0]}" == "All" ]
then
runGetSubmittedJobInfoByAllJobs
elif [ "${aOption[0]}" == "YUV" ]
then
runGetSubmittedJobInfoByYUVs
elif [ "${aOption[0]}" == "JobID" ]
then
runGetSubmittedJobInfoByIDs
fi
}
runMain()
{
runInit
runCheck
runParseOption
echo "">>${JobCancelLog}
echo "*********************************************************" >>${JobCancelLog}
echo "*********************************************************" >>${JobCancelLog}
echo " Before cancel job, current SGE jobs info listed as below" >>${JobCancelLog}
qstat >>${JobCancelLog}
echo "*********************************************************" >>${JobCancelLog}
echo "**********************************************************" >>${JobCancelLog}
echo "">>${JobCancelLog}
echo "">>${JobCancelLog}
runGetJobsInfo >${JobCancelLog}
runGetReSubmittedSGEJobFile >>${JobCancelLog}
runGetReSubmittedSGEJobTestRestultFile >>${JobCancelLog}
runDelPreviousJob >>${JobCancelLog}
runOutputReSubmittedJobInfo >>${JobCancelLog}
sleep 20
echo "">>${JobCancelLog}
echo "*********************************************************" >>${JobCancelLog}
echo "*********************************************************" >>${JobCancelLog}
echo " After cancel job, current SGE jobs info listed as below" >>${JobCancelLog}
qstat >>${JobCancelLog}
echo "*********************************************************" >>${JobCancelLog}
echo "**********************************************************" >>${JobCancelLog}
echo "">>${JobCancelLog}
echo "">>${JobCancelLog}
cat ${JobCancelLog}
return 0
}
#parameter check!
if [ $# -lt 1 ]
then
runUsage
exit 1
fi
declare -a aOption
aOption=($@)
ParamNum=$#
echo ""
echo "*********************************************************"
echo " call bash file is $0"
echo " input parameters is:"
echo " $0 $@"
echo "*********************************************************"
echo ""
runMain