-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject.sh
More file actions
1242 lines (1024 loc) · 34.3 KB
/
project.sh
File metadata and controls
1242 lines (1024 loc) · 34.3 KB
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
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#!/bin/bash
#### GLOBAL VARIABLES
toadd=0.10
tosub=0.05
maxmarp=0.90
minmarp=0.10
marpthirty=0.30
default_value=0
while true; do
#### FUNCTION TO INCREMENT MARP VALUE
increment () {
newmarp=$(echo $marp $toadd | awk '{printf "%0.2f", $1 + $2}')
# echo "marp to submit is" $newmarp
awk 'NR==26{$2=a}1' a=$newmarp $file > tmp && sudo mv -f tmp $file
yarn rmadmin -refreshQueues
echo "MARP Increment by 0.10 and the new MARP is " $newmarp
}
#increment
#### FUNCTION TO DECREMENT MARP VALUE
decrement () {
newmarp=$(echo $marp $tosub | awk '{printf "%0.2f", $1 - $2}')
# echo "marp to submit is" $newmarp
awk 'NR==26{$2=a}1' a=$newmarp $file > tmp && sudo mv -f tmp $file
yarn rmadmin -refreshQueues
echo "MARP Decrement by 0.05 and the new MARP is" $newmarp
}
#decrement
#### FUNCTION TO ALLOCATE 40% RESOURCES TO APPLICATION MASTER
marp_thirty () {
awk 'NR==26{$2=a}1' a=$marpthirty $file > tmp && sudo mv -f tmp $file
yarn rmadmin -refreshQueues
echo "MARP set to" $marpthirty
}
#### FUNCTION WHICH FETCH METRICES FROM RESOURCE MANAGER
fetch_metrics () {
#### TOTAL MEMORY IN A CLUSTER
tot_mem=$(curl http://project-master-01:8088/ws/v1/
cluster/metrics | awk -F':' '{print $18}' | awk -F',' '{print $1}')
#### MEMORY USED IN THE CLUSTER DURING JOB EXECUTION
mem_used=$( curl http://project-master-01:8088/ws/v1/
cluster/scheduler | awk -F':' '{print $22}' | cut -d',' -f1)
#### UNUSED MEMORY IN THE CLUSTER
mem_unused=$(curl http://project-master-01:8088/ws/v1/
cluster/metrics | awk -F':' '{print $10}' | awk -F',' '{print $1}')
####TOTAL MEMORY ALLOCATED BY MARP VALUE
marp_limit=$( curl http://project-master-01:8088/ws/v1/
cluster/scheduler | awk -F':' '{print $55}' | cut -d',' -f1)
#### TOTAL MEMORY USED BY APPLICATION MASTER
am_mem_used=$(curl http://project-master-01:8088/ws/v1/
cluster/scheduler | awk -F':' '{print $52}' | cut -d',' -f1)
#### TOTAL VCORES USED BY APPLICATION MASTER
am_vcore_used=$(curl http://project-master-01:8088/ws/v1/
cluster/scheduler | awk -F':' '{print $53}' |
cut -d',' -f1 | awk -F'}' '{print $1}')
####TOTAL NUMBER OF VIRTUAL CORE IN THE CLUSTER
tot_core=$(curl http://project-master-01:8088/ws/v1/
cluster/metrics | awk -F':' '{print $19}' | awk -F',' '{print $1}')
####USED NUMBER OF CORE DURING JOB EXECUTION
core_used=$(curl http://project-master-01:8088/ws/v1/
cluster/metrics | awk -F':' '{print $14}' | awk -F',' '{print $1}')
####UNUSED VIRTUAL CORE
core_unused=$(curl http://project-master-01:8088/ws/v1/
cluster/metrics | awk -F':' '{print $13}' | awk -F',' '{print $1}')
####NUMBER OF APPLICATION RUNNING IN THE CLUSTER
app_running=$(curl http://project-master-01:8088/ws/v1/
cluster/metrics | awk -F':' '{print $6}' | awk -F',' '{print $1}')
####NUMBER OF APPLICATION PENDING IN THE CLUSTER
app_pending=$(curl http://project-master-01:8088/ws/v1/
cluster/metrics | awk -F':' '{print $5}' | awk -F',' '{print $1}')
echo "$app_pending" > pending_app.txt
####CONTAINER RUNNING
cont_running=$(curl http://project-master-01:8088/ws/v1/
cluster/metrics | awk -F':' '{print $15}' | awk -F',' '{print $1}')
####CONTAINER PENDING
cont_pending=$(curl http://project-master-01:8088/ws/v1/
cluster/metrics | awk -F':' '{print $17}' | awk -F',' '{print $1}')
####TOTAL CAPACITY USED IN THE CLUSTER
capacity_used=$(curl http://project-master-01:8088/ws/v1/
cluster/scheduler | awk -F':' '{print $6}' | cut -d',' -f1)
}
#### FUNCTION TO CALCULATE PROGRESS FOR 10% RESOURCE ALLOCATION
progress_first () {
app_id=$(yarn application -list | grep "root" | grep "RUNNING" | awk '{print $1}')
value_initially=$(yarn application -list | grep "root" |
grep "RUNNING" | awk '{print $8 $9}'| cut -d '%' -f1 |
awk -F'.' '{print $1}'| awk -F'[^0-9]*' '{print $1 $2}')
while [[ "${#app_id[@]}" != "${#value_initially[@]}" ]]; do
app_id=()
value_initially=()
app_id=$(yarn application -list | grep "root" |
grep "RUNNING" | awk '{print $1}')
value_initially=$(yarn application -list |
grep "root" | grep "RUNNING" | awk '{print $8 $9}'| cut -d '%' -f1 |
awk -F'.' '{print $1}'| awk -F'[^0-9]*' '{print $1 $2}')
done
echo "$app_id" > progress_first_only_app_id.txt
echo "$value_initially" > progress_first_only_value.txt
pre_id_only=($(paste <(echo "$app_id")))
echo "PREVIOUS APP ONLY ID"
echo "${pre_id_only[@]}"
pre_value_only=($(paste <(echo "$value_initially")))
echo "PREVIOUS APP ONLY VALUE"
echo "${pre_value_only[@]}"
pre_id_value=$(paste <(echo "$app_id") <(echo "$value_initially"))
echo "PREVIOUS APP ID AND CORRESPONDING VALUES"
echo "$pre_id_value"
progress_initial=0
for i in ${pre_value_only[@]}
do
progress_initial=`echo $progress_initial + $i | bc`
done
echo $progress_initial > progress1.txt
echo "The initial progress is" $progress_initial
}
#### FUNCTION TO CALCULATE PROGRESS FOR 20% RESOURCE ALLOCATION
progress_second () {
app_id_current=$(yarn application -list |
grep "root" | grep "RUNNING" | awk '{print $1}')
value_current=$(yarn application -list |
grep "root" | grep "RUNNING" | awk '{print $8 $9}'|
cut -d '%' -f1 | awk -F'.' '{print $1}'| awk -F'[^0-9]*' '{print $1 $2}')
while [[ "${#app_id_current[@]}" != "${#value_current[@]}" ]]; do
app_id_current=()
value_current=()
app_id=$(yarn application -list | grep "root" |
grep "RUNNING" | awk '{print $1}')
value_initially=$(yarn application -list |
grep "root" | grep "RUNNING" | awk '{print $8 $9}'|
cut -d '%' -f1 | awk -F'.' '{print $1}'| awk -F'[^0-9]*' '{print $1 $2}')
done
echo "$app_id_current" > progress_second_only_app_id.txt
echo "$value_current" > progress_second_only_value.txt
app_id=$(sudo cat /home/ramesh/progress_first_only_app_id.txt)
value_initially=$(sudo cat /home/ramesh/progress_first_only_value.txt)
curr_id_only=($(paste <(echo "$app_id_current")))
echo "CURRENT APP ONLY ID"
echo "${curr_id_only[@]}"
curr_value_only=($(paste <(echo "$value_current")))
echo "CURRENT APP ONLY VALUE"
echo "${curr_value_only[@]}"
curr_id_value=$(paste <(echo "$app_id_current") <(echo "$value_current"))
echo "CURRENT APP ID AND CORRESPONDING VALUES"
echo "$curr_id_value"
##
pre_id_only=($(paste <(echo "$app_id")))
echo "PREVIOUS APP ONLY ID"
echo "${pre_id_only[@]}"
pre_value_only=($(paste <(echo "$value_initially")))
echo "PREVIOUS APP ONLY VALUE"
echo "${pre_value_only[@]}"
##
#different=$(diff <( echo "$app_id" ) <( echo "$app_id_current" ))
different=$(diff -ia --suppress-common-lines
<( printf "%s\n" "${app_id[@]}" ) <( printf "%s\n" "${app_id_current[@]}"))
echo "DIFFERENCE BETWEEN THE APPLICATION
IDS IN THE CURRENT STATE, WHETHER LOST OR ADDED ARE"
#echo ${different[@]}
for i in ${different[@]}
do
echo $i | grep "application_" | awk '{print $1}' >> app_id_changed.txt
done
fetch_file_data=$(sudo cat /home/ramesh/app_id_changed.txt)
echo ${fetch_file_data[@]}
sudo truncate -s 0 app_id_changed.txt
#####################################
#intersection_with_current
####################################
for item1 in ${app_id_current[@]}
do
for item2 in ${fetch_file_data[@]}
do
if [[ "$item1" == "$item2" ]]
then
intersection_with_current+=( "$item1" )
fi
done
done
echo "FOLLOWING APPS ARE NEWELY ADDED"
echo ${intersection_with_current[@]}
#############################################
#TO ADD THE VALUES OF THE NEWELY ADDED JOB
#############################################
for ((i=0; i < ${#curr_id_only[@]}; ++i))
do
for j in "${intersection_with_current[@]}"
do
if [[ "${curr_id_only[$i]}" == "$j" ]]
then
index_arr_curr+=( "$i" )
fi
done
done
echo "The list of the index for newely added jobs are"
echo ${index_arr_curr[@]}
########################
for ((i=0; i < ${#curr_value_only[@]}; ++i))
do
for j in "${index_arr_curr[@]}"
do
if [[ "$i" == "$j" ]]
then
sum_newly_added+=( "${curr_value_only[$i]}" )
fi
done
done
echo "The array of the value corresponding are"
echo ${sum_newly_added[@]}
##########################
sum1=0
for i in ${sum_newly_added[@]}
do
sum1=`echo $sum1 + $i | bc`
done
echo "The total sum of the currently added job progress is" $sum1
##########################
#intersection_with_previous
##########################
for item1 in ${app_id[@]}
do
for item2 in ${fetch_file_data[@]}
do
if [[ "$item1" == "$item2" ]]
then
intersection_with_previous+=( "$item1" )
fi
done
done
echo "FOLLOWING APPS WERE IN PREVIOUS BUT NOT IN CURRENT"
echo ${intersection_with_previous[@]}
###########################
# ADD THE VALUES SUBTRACTIONG FROM 100
###########################
for ((i=0; i < ${#pre_id_only[@]}; ++i))
do
for j in "${intersection_with_previous[@]}"
do
if [[ "${pre_id_only[$i]}" == "$j" ]]
then
index_arr_pre+=( "$i" )
fi
done
done
echo "The list of the index for
previous jobs which are not in current job list are"
echo ${index_arr_pre[@]}
########################
for ((i=0; i < ${#pre_value_only[@]}; ++i))
do
for j in "${index_arr_pre[@]}"
do
if [[ "$i" == "$j" ]]
then
sum_pre_added+=( "${pre_value_only[$i]}" )
fi
done
done
echo "The array of the value corresponding previous jobs are"
echo ${sum_pre_added[@]}
##########################
sum2=0
for i in ${sum_pre_added[@]}
do
sum2=`echo $sum2 + $i | bc`
done
echo "The total sum of the previous job progress is" $sum2
########################
#tot_line=$(echo ${#sum_pre_added[@]} | bc)
#echo $tot_line
a=$((echo "${#sum_pre_added[@]}*100")|bc)
#a=$((echo "$tot_line*100")|bc)
#echo $a
total_progress=`echo $a - $sum2 | bc`
echo "The total done progress between the gap time was" $total_progress
#######################
#TO FIND OUT THE TOTAL PROGRESS
#OF THE JOB WHICH ARE IN BOTH STATE (PREVIOUS AND CURRENT)
##FOR THIS, CURRENT TOTAL PROGRESS AND
#PREVIOUS TOTAL PROGRESS WILL BE CALCULATED
#####FIRST TO FIND THE SIMILAR JOB IDS
for ((i=0; i < ${#curr_id_only[@]}; ++i))
do
for ((j=0; j < ${#pre_id_only[@]}; ++j))
do
if [[ "${curr_id_only[$i]}" == "${pre_id_only[$j]}" ]]
then
similar_curr+=( "${curr_id_only[$i]}" )
index_similar_curr+=( "$i" )
index_similar_pre+=( "$j" )
fi
done
done
echo "THE SIMILAR IDS IN PREVIOUS AND CURRENT STATE ARE"
echo ${similar_curr[@]}
echo "THE INDEX OF THE SIMILAR VALUES IN CURRENT STATE ARE"
echo ${index_similar_curr[@]}
echo "THE INDEX OF THE SIMILAR VALUES IN PREVIOUS STATE ARE"
echo ${index_similar_pre[@]}
#################
#TO FIND THE CORRESPONDING VALUES
for ((i=0; i < ${#curr_value_only[@]}; ++i))
do
for j in "${index_similar_curr[@]}"
do
if [[ "$i" == "$j" ]]
then
sum_similar_curr+=( "${curr_value_only[$i]}" )
fi
done
done
echo "THE CORRESPONDING VALUES OF THE SIMILAR JOBS IN CURRENT STATE ARE"
echo ${sum_similar_curr[@]}
#################
##TO CALCULATE THE SUM
sumsimilarcurr=0
for i in ${sum_similar_curr[@]}
do
sumsimilarcurr=`echo $sumsimilarcurr + $i | bc`
done
echo "The current value of sum of similar job progress is " $sumsimilarcurr
#################
##TO FIND THE CORRESPONDING VALUES OF THE PREVIOUS
for ((i=0; i < ${#pre_value_only[@]}; ++i))
do
for j in "${index_similar_pre[@]}"
do
if [[ "$i" == "$j" ]]
then
sum_similar_pre+=( "${pre_value_only[$i]}" )
fi
done
done
echo "THE CORRESPONDING VALUES OF THE SIMILAR JOBS IN PREVIOUS STATE ARE"
echo ${sum_similar_pre[@]}
###############
###TO CALCULATE THE SUM
sumsimilarpre=0
for i in ${sum_similar_pre[@]}
do
sumsimilarpre=`echo $sumsimilarpre + $i | bc`
done
echo "The current value of sum of similar job progress is " $sumsimilarpre
###############
##TO FIND THE EXACT PROGRESS VALUE BY
#SUBTRACTION total_progress3 form total_progress2
sum3=`echo $sumsimilarcurr - $sumsimilarpre | bc`
echo "THE PORGRESS IN GAP IS " $sum3
####TOTAL CURRENT PROGRESS IS ######
total_current_progress=`echo $sum1 + $total_progress + $sum3 | bc`
echo "TOTAL CURRENT PROGRESS IS" $total_current_progress
echo $total_current_progress > progress2.txt
}
################################
#### FUNCTION TO CALCULATE PROGRESS FOR 30% RESOURCE ALLOCATION
progress_third () {
app_id_current=$(yarn application -list |
grep "root" | grep "RUNNING" | awk '{print $1}')
value_current=$(yarn application -list |
grep "root" | grep "RUNNING" | awk '{print $8 $9}'| cut -d '%' -f1 |
awk -F'.' '{print $1}'| awk -F'[^0-9]*' '{print $1 $2}')
while [[ "${#app_id_current[@]}" != "${#value_current[@]}" ]]; do
app_id_current=()
value_current=()
app_id=$(yarn application -list |
grep "root" | grep "RUNNING" | awk '{print $1}')
value_initially=$(yarn application -list |
grep "root" | grep "RUNNING" | awk '{print $8 $9}'|
cut -d '%' -f1 | awk -F'.' '{print $1}'| awk -F'[^0-9]*' '{print $1 $2}')
done
echo "$app_id_current" > progress_third_only_app_id.txt
echo "$value_current" > progress_third_only_value.txt
app_id=$(sudo cat /home/ramesh/progress_second_only_app_id.txt)
value_initially=$(sudo cat /home/ramesh/progress_second_only_value.txt)
curr_id_only=($(paste <(echo "$app_id_current")))
echo "CURRENT APP ONLY ID"
echo "${curr_id_only[@]}"
curr_value_only=($(paste <(echo "$value_current")))
echo "CURRENT APP ONLY VALUE"
echo "${curr_value_only[@]}"
curr_id_value=$(paste <(echo "$app_id_current") <(echo "$value_current"))
echo "CURRENT APP ID AND CORRESPONDING VALUES"
echo "$curr_id_value"
##############
pre_id_only=($(paste <(echo "$app_id")))
echo "PREVIOUS APP ONLY ID"
echo "${pre_id_only[@]}"
pre_value_only=($(paste <(echo "$value_initially")))
echo "PREVIOUS APP ONLY VALUE"
echo "${pre_value_only[@]}"
###############
#different=$(diff <( echo "$app_id" ) <( echo "$app_id_current" ))
different=$(diff -ia --suppress-common-lines
<( printf "%s\n" "${app_id[@]}" ) <( printf "%s\n" "${app_id_current[@]}"))
echo "DIFFERENCE BETWEEN THE APPLICATION
IDS IN THE CURRENT STATE, WHETHER LOST OR ADDED ARE"
#echo ${different[@]}
for i in ${different[@]}
do
echo $i | grep "application_" | awk '{print $1}' >> app_id_changed.txt
done
fetch_file_data=$(sudo cat /home/ramesh/app_id_changed.txt)
echo ${fetch_file_data[@]}
sudo truncate -s 0 app_id_changed.txt
#####################################
#intersection_with_current
####################################
for item1 in ${app_id_current[@]}
do
for item2 in ${fetch_file_data[@]}
do
if [[ "$item1" == "$item2" ]]
then
intersection_with_current+=( "$item1" )
fi
done
done
echo "FOLLOWING APPS ARE NEWELY ADDED"
echo ${intersection_with_current[@]}
#############################################
#TO ADD THE VALUES OF THE NEWELY ADDED JOB
#############################################
for ((i=0; i < ${#curr_id_only[@]}; ++i))
do
for j in "${intersection_with_current[@]}"
do
if [[ "${curr_id_only[$i]}" == "$j" ]]
then
index_arr_curr+=( "$i" )
fi
done
done
echo "The list of the index for newely added jobs are"
echo ${index_arr_curr[@]}
########################
for ((i=0; i < ${#curr_value_only[@]}; ++i))
do
for j in "${index_arr_curr[@]}"
do
if [[ "$i" == "$j" ]]
then
sum_newly_added+=( "${curr_value_only[$i]}" )
fi
done
done
echo "The array of the value corresponding are"
echo ${sum_newly_added[@]}
##########################
sum1=0
for i in ${sum_newly_added[@]}
do
sum1=`echo $sum1 + $i | bc`
done
echo "The total sum of the currently added job progress is" $sum1
#############################
#intersection_with_previous
###########################
for item1 in ${app_id[@]}
do
for item2 in ${fetch_file_data[@]}
do
if [[ "$item1" == "$item2" ]]
then
intersection_with_previous+=( "$item1" )
fi
done
done
echo "FOLLOWING APPS WERE IN PREVIOUS BUT NOT IN CURRENT"
echo ${intersection_with_previous[@]}
###################################
# ADD THE VALUES SUBTRACTIONG FROM 100
#################################
for ((i=0; i < ${#pre_id_only[@]}; ++i))
do
for j in "${intersection_with_previous[@]}"
do
if [[ "${pre_id_only[$i]}" == "$j" ]]
then
index_arr_pre+=( "$i" )
fi
done
done
echo "The list of the index for
previous jobs which are not in current job list are"
echo ${index_arr_pre[@]}
########################
for ((i=0; i < ${#pre_value_only[@]}; ++i))
do
for j in "${index_arr_pre[@]}"
do
if [[ "$i" == "$j" ]]
then
sum_pre_added+=( "${pre_value_only[$i]}" )
fi
done
done
echo "The array of the value corresponding previous jobs are"
echo ${sum_pre_added[@]}
##########################
sum2=0
for i in ${sum_pre_added[@]}
do
sum2=`echo $sum2 + $i | bc`
done
echo "The total sum of the previous job progress is" $sum2
###########################################
#tot_line=$(echo ${#sum_pre_added[@]} | bc)
#echo $tot_line
a=$((echo "${#sum_pre_added[@]}*100")|bc)
#a=$((echo "$tot_line*100")|bc)
#echo $a
total_progress=`echo $a - $sum2 | bc`
echo "The total done progress between the gap time was" $total_progress
######################################
#####FIRST TO FIND THE SIMILAR JOB IDS
for ((i=0; i < ${#curr_id_only[@]}; ++i))
do
for ((j=0; j < ${#pre_id_only[@]}; ++j))
do
if [[ "${curr_id_only[$i]}" == "${pre_id_only[$j]}" ]]
then
similar_curr+=( "${curr_id_only[$i]}" )
index_similar_curr+=( "$i" )
index_similar_pre+=( "$j" )
fi
done
done
echo "THE SIMILAR IDS IN PREVIOUS AND CURRENT STATE ARE"
echo ${similar_curr[@]}
echo "THE INDEX OF THE SIMILAR VALUES IN CURRENT STATE ARE"
echo ${index_similar_curr[@]}
echo "THE INDEX OF THE SIMILAR VALUES IN PREVIOUS STATE ARE"
echo ${index_similar_pre[@]}
##################################
#TO FIND THE CORRESPONDING VALUES
for ((i=0; i < ${#curr_value_only[@]}; ++i))
do
for j in "${index_similar_curr[@]}"
do
if [[ "$i" == "$j" ]]
then
sum_similar_curr+=( "${curr_value_only[$i]}" )
fi
done
done
echo "THE CORRESPONDING VALUES OF THE SIMILAR JOBS IN CURRENT STATE ARE"
echo ${sum_similar_curr[@]}
#################################
##TO CALCULATE THE SUM
sumsimilarcurr=0
for i in ${sum_similar_curr[@]}
do
sumsimilarcurr=`echo $sumsimilarcurr + $i | bc`
done
echo "The current value of sum of similar job progress is " $sumsimilarcurr
##################################
##TO FIND THE CORRESPONDING VALUES OF THE PREVIOUS
for ((i=0; i < ${#pre_value_only[@]}; ++i))
do
for j in "${index_similar_pre[@]}"
do
if [[ "$i" == "$j" ]]
then
sum_similar_pre+=( "${pre_value_only[$i]}" )
fi
done
done
echo "THE CORRESPONDING VALUES OF THE SIMILAR JOBS IN PREVIOUS STATE ARE"
echo ${sum_similar_pre[@]}
############################
###TO CALCULATE THE SUM
sumsimilarpre=0
for i in ${sum_similar_pre[@]}
do
sumsimilarpre=`echo $sumsimilarpre + $i | bc`
done
echo "The current value of sum of similar job progress is " $sumsimilarpre
###########################
##TO FIND THE EXACT PROGRESS
#VALUE BY SUBTRACTION total_progress3 form total_progress2
sum3=`echo $sumsimilarcurr - $sumsimilarpre | bc`
echo "THE PORGRESS IN GAP IS " $sum3
##TOTAL CURRENT PROGRESS IS
total_current_progress=`echo $sum1 + $total_progress + $sum3 | bc`
echo "TOTAL CURRENT PROGRESS IS" $total_current_progress
echo $total_current_progress > progress3.txt
}
#### FUNCTION TO CALCULATE THE
#DIFFERENCE BETWEEN SECOND AND FIRST PROGRESS
diff_first_speed () {
fetch_second_value=$(sudo cat /home/
ramesh/progress1.txt | awk '{print $1}')
fetch_first_value=$(sudo cat /home/
ramesh/progress2.txt | awk '{print $1}')
echo "Second progress value and first
progress value are" $fetch_first_value $fetch_second_value
speed_first=`echo $fetch_first_value - $fetch_second_value | bc`
}
#### FUNCTION TO CALCULATE THE DIFFERENCE BETWEEN THIRD AND SECOND
diff_second_speed () {
fetch_third_value=$(sudo cat /home/
ramesh/progress3.txt | awk '{print $1}')
fetch_second_value=$(sudo cat /home/
ramesh/progress2.txt | awk '{print $1}')
echo "Third progress value and second
progress value are" $fetch_third_value $fetch_second_value
speed_second=`echo $fetch_third_value - $fetch_second_value | bc`
}
#### FUNCTION TO CALCULATE THE TOTAL CURRENT PROGRESS
progress_current () {
app_id_current=$(yarn application -list |
grep "root" | grep "RUNNING" | awk '{print $1}')
value_current=$(yarn application -list |
grep "root" | grep "RUNNING" | awk '{print $8 $9}'|
cut -d '%' -f1 | awk -F'.' '{print $1}'| awk -F'[^0-9]*' '{print $1 $2}')
while [[ "${#app_id_current[@]}" != "${#value_current[@]}" ]]; do
app_id_current=()
value_current=()
app_id=$(yarn application -list |
grep "root" | grep "RUNNING" | awk '{print $1}')
value_initially=$(yarn application -list |
grep "root" | grep "RUNNING" | awk '{print $8 $9}'|
cut -d '%' -f1 | awk -F'.' '{print $1}'| awk -F'[^0-9]*' '{print $1 $2}')
done
app_id=$(sudo cat /home/ramesh/progress_third_only_app_id.txt)
value_initially=$(sudo cat /home/ramesh/progress_third_only_value.txt)
echo "$app_id_current" > progress_third_only_app_id.txt
echo "$value_current" > progress_third_only_value.txt
curr_id_only=($(paste <(echo "$app_id_current")))
echo "CURRENT APP ONLY ID"
echo "${curr_id_only[@]}"
curr_value_only=($(paste <(echo "$value_current")))
echo "CURRENT APP ONLY VALUE"
echo "${curr_value_only[@]}"
curr_id_value=$(paste <(echo "$app_id_current") <(echo "$value_current"))
echo "CURRENT APP ID AND CORRESPONDING VALUES"
echo "$curr_id_value"
#############################################################
pre_id_only=($(paste <(echo "$app_id")))
echo "PREVIOUS APP ONLY ID"
echo "${pre_id_only[@]}"
pre_value_only=($(paste <(echo "$value_initially")))
echo "PREVIOUS APP ONLY VALUE"
echo "${pre_value_only[@]}"
#############################################################
#different=$(diff <( echo "$app_id" ) <( echo "$app_id_current" ))
different=$(diff -ia --suppress-common-lines
<( printf "%s\n" "${app_id[@]}" ) <( printf "%s\n" "${app_id_current[@]}"))
echo "DIFFERENCE BETWEEN THE APPLICATION IDS
IN THE CURRENT STATE, WHETHER LOST OR ADDED ARE"
#echo ${different[@]}
for i in ${different[@]}
do
echo $i | grep "application_" | awk '{print $1}' >> app_id_changed.txt
done
fetch_file_data=$(sudo cat /home/ramesh/app_id_changed.txt)
echo ${fetch_file_data[@]}
sudo truncate -s 0 app_id_changed.txt
#####################################
#intersection_with_current
####################################
for item1 in ${app_id_current[@]}
do
for item2 in ${fetch_file_data[@]}
do
if [[ "$item1" == "$item2" ]]
then
intersection_with_current+=( "$item1" )
fi
done
done
echo "FOLLOWING APPS ARE NEWELY ADDED"
echo ${intersection_with_current[@]}
#############################################
#TO ADD THE VALUES OF THE NEWELY ADDED JOB
#############################################
for ((i=0; i < ${#curr_id_only[@]}; ++i))
do
for j in "${intersection_with_current[@]}"
do
if [[ "${curr_id_only[$i]}" == "$j" ]]
then
index_arr_curr+=( "$i" )
fi
done
done
echo "The list of the index for newely added jobs are"
echo ${index_arr_curr[@]}
########################
for ((i=0; i < ${#curr_value_only[@]}; ++i))
do
for j in "${index_arr_curr[@]}"
do
if [[ "$i" == "$j" ]]
then
sum_newly_added+=( "${curr_value_only[$i]}" )
fi
done
done
echo "The array of the value corresponding are"
echo ${sum_newly_added[@]}
##########################
sum1=0
for i in ${sum_newly_added[@]}
do
sum1=`echo $sum1 + $i | bc`
done
echo "The total sum of the currently added job progress is" $sum1
################################################
#intersection_with_previous
#################################################
for item1 in ${app_id[@]}
do
for item2 in ${fetch_file_data[@]}
do
if [[ "$item1" == "$item2" ]]
then
intersection_with_previous+=( "$item1" )
fi
done
done
echo "FOLLOWING APPS WERE IN PREVIOUS BUT NOT IN CURRENT"
echo ${intersection_with_previous[@]}
###########################################################
# ADD THE VALUES SUBTRACTIONG FROM 100
##########################################################
for ((i=0; i < ${#pre_id_only[@]}; ++i))
do
for j in "${intersection_with_previous[@]}"
do
if [[ "${pre_id_only[$i]}" == "$j" ]]
then
index_arr_pre+=( "$i" )
fi
done
done
echo "The list of the index for previous
jobs which are not in current job list are"
echo ${index_arr_pre[@]}
########################
for ((i=0; i < ${#pre_value_only[@]}; ++i))
do
for j in "${index_arr_pre[@]}"
do
if [[ "$i" == "$j" ]]
then
sum_pre_added+=( "${pre_value_only[$i]}" )
fi
done
done
echo "The array of the value corresponding previous jobs are"
echo ${sum_pre_added[@]}
################
sum2=0
for i in ${sum_pre_added[@]}
do
sum2=`echo $sum2 + $i | bc`
done
echo "The total sum of the previous job progress is" $sum2
###############
#tot_line=$(echo ${#sum_pre_added[@]} | bc)
#echo $tot_line
a=$((echo "${#sum_pre_added[@]}*100")|bc)
#a=$((echo "$tot_line*100")|bc)
#echo $a
total_progress=`echo $a - $sum2 | bc`
echo "The total done progress between the gap time was" $total_progress
############################
#TO FIND OUT THE TOTAL PROGRESS OF
#THE JOB WHICH ARE IN BOTH STATE (PREVIOUS AND CURRENT)
##FOR THIS, CURRENT TOTAL PROGRESS
#AND PREVIOUS TOTAL PROGRESS WILL BE CALCULATED
#####FIRST TO FIND THE SIMILAR JOB IDS
for ((i=0; i < ${#curr_id_only[@]}; ++i))
do
for ((j=0; j < ${#pre_id_only[@]}; ++j))
do
if [[ "${curr_id_only[$i]}" == "${pre_id_only[$j]}" ]]
then
similar_curr+=( "${curr_id_only[$i]}" )
index_similar_curr+=( "$i" )
index_similar_pre+=( "$j" )
fi
done
done
echo "THE SIMILAR IDS IN PREVIOUS AND CURRENT STATE ARE"
echo ${similar_curr[@]}
echo "THE INDEX OF THE SIMILAR VALUES IN CURRENT STATE ARE"
echo ${index_similar_curr[@]}
echo "THE INDEX OF THE SIMILAR VALUES IN PREVIOUS STATE ARE"
echo ${index_similar_pre[@]}
##########################################
#TO FIND THE CORRESPONDING VALUES
for ((i=0; i < ${#curr_value_only[@]}; ++i))
do
for j in "${index_similar_curr[@]}"
do
if [[ "$i" == "$j" ]]
then
sum_similar_curr+=( "${curr_value_only[$i]}" )
fi
done
done
echo "THE CORRESPONDING VALUES OF THE SIMILAR JOBS IN CURRENT STATE ARE"
echo ${sum_similar_curr[@]}
#################################
##TO CALCULATE THE SUM
sumsimilarcurr=0
for i in ${sum_similar_curr[@]}
do
sumsimilarcurr=`echo $sumsimilarcurr + $i | bc`
done
echo "The current value of sum of similar job progress is " $sumsimilarcurr
######## TO FIND THE EXACT VALUE OF PROGRESS TO BE DONE AT THAT TIME
#a=$((echo "${#index_similar_curr[@]}*100")|bc)
#total_progress2=`echo $a - $sumsimilarcurr | bc`
#echo "THE EXACT PROGESS AT THAT TIME WAS" $total_progress2
############################
##TO FIND THE CORRESPONDING VALUES OF THE PREVIOUS
for ((i=0; i < ${#pre_value_only[@]}; ++i))
do
for j in "${index_similar_pre[@]}"
do
if [[ "$i" == "$j" ]]
then
sum_similar_pre+=( "${pre_value_only[$i]}" )