60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
if [[ $lperc -lt $max_load ]];then
if [[ $lperc -le $lperc2adj ]];then
# echo "Load acceptable: lperc=$lperc %, max_load=$max_load %, load=$load, numcpu=$numcpu, MAX_ALLOWED_LOAD=$MAX_ALLOWED_LOAD % and $lperc2 < $lperc"
# echo "Starting command: \"$@\""
launchjob "$@"
# we sleep ten seconds here to keep the lock a little longer and give time for
# the uptime to show a response
sleep 10
else
echo "$LOADRUNNER $@" | at now + 2 minutes &> /dev/null
fi
else
# echo "Load too high: lperc=$lperc, max_load=$max_load, waiting two minutes before trying to run command: \"$@\""
echo "$LOADRUNNER $@" | at now + 2 minutes &> /dev/null
fi
sleep $(get_delay_time 10)
rm -f $lfile
|
|
>
|
|
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
if [[ $lperc -lt $max_load ]];then
if [[ $lperc -le $lperc2adj ]];then
# echo "Load acceptable: lperc=$lperc %, max_load=$max_load %, load=$load, numcpu=$numcpu, MAX_ALLOWED_LOAD=$MAX_ALLOWED_LOAD % and $lperc2 < $lperc"
# echo "Starting command: \"$@\""
launchjob "$@"
# we sleep ten seconds here to keep the lock a little longer and give time for
# the uptime to show a response
# sleep 2
else
echo "$LOADRUNNER $@" | at now + 2 minutes &> /dev/null
# sleep 5
fi
else
# echo "Load too high: lperc=$lperc, max_load=$max_load, waiting two minutes before trying to run command: \"$@\""
echo "$LOADRUNNER $@" | at now + 2 minutes &> /dev/null
fi
sleep $(get_delay_time 3)
rm -f $lfile
|