diff options
author | kris <kris@FreeBSD.org> | 2002-02-11 10:24:23 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2002-02-11 10:24:23 +0800 |
commit | fb2fd7a11233068e074ac062529cfabee7224ccb (patch) | |
tree | 97d6d2ba56541f6a5e412e402a4820fd8918b8bc /Tools/portbuild | |
parent | a8cb4d90f24974260005a30f4d7edd4918c755ea (diff) | |
download | freebsd-ports-gnome-fb2fd7a11233068e074ac062529cfabee7224ccb.tar.gz freebsd-ports-gnome-fb2fd7a11233068e074ac062529cfabee7224ccb.tar.zst freebsd-ports-gnome-fb2fd7a11233068e074ac062529cfabee7224ccb.zip |
Document the purpose of this script and the algorithm it uses to
decide machines which should be handed new jobs. Also, at some point someone
added a note about a possible bug in the reportload script which causes
this one to fall over.
Diffstat (limited to 'Tools/portbuild')
-rwxr-xr-x | Tools/portbuild/scripts/checkmachines | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Tools/portbuild/scripts/checkmachines b/Tools/portbuild/scripts/checkmachines index 861c86bfc797..c242c33149c8 100755 --- a/Tools/portbuild/scripts/checkmachines +++ b/Tools/portbuild/scripts/checkmachines @@ -1,4 +1,20 @@ #!/bin/sh +# +# Runs in the background on the server. This script keeps track of +# the relative loads of the client machines, and specifies which machine(s) +# should be handed new jobs, according to the following algorithm: +# +# For each machine listed in ${buildroot}/mlist, check whether its load +# information has been updated in the last 15 seconds (should be updated by +# the reportload script every 5 seconds). If so, then divide the number of +# running jobs on the client by its weighting in mlist, and output the +# machine(s) with the minimum value to ${buildroot}/ulist. +# +# Dividing by the weight has the effect of grouping machines with similar +# job load (e.g. a weight of 5 will rank machines with job loads 0, 1, 2, 3, 4 +# as the same; if the machines all had a weight of 1 then it would only +# choose the machine with the least value of the job load, and would probably +# choose a single machine most of the time). buildroot=/var/portbuild mlist=${buildroot}/mlist @@ -24,6 +40,13 @@ while true; do else num=99 fi +#xxx +#xxx Need to figure out how this is happening and fix this script +#xxx accordingly. This is what causes this script to go away on +#xxx occasion. +#xxx +#xxx arith: syntax error: "7:53AM / 5" +#xxx num=$(($num / $l)) if [ $num -lt $min ]; then mach=$m |