My question is how change this code so it will use only 4 threads?

TESTS="a b c d e"

for f in $TESTS; do
  t=$[ ( $RANDOM % 5 )  + 1 ]
  sleep $t && echo $f $t &
done
wait
link|improve this question
11  
These are not threads, but sub-processes. – PaĆ­lo Ebermann Jun 28 '11 at 19:15
feedback

6 Answers

Interesting question. I tried to use xargs for this and I found a way.

Try this:

seq 10 | xargs -i --max-procs=4 bash -c "echo start {}; sleep 3; echo done {}"

--max-procs=4 will ensure that no more than four subprocesses are runned at a time.

The output will look like this:

start 2
start 3
start 1
start 4
done 2
done 3
done 1
done 4
start 6
start 5
start 7
start 8
done 6
done 5
start 9
done 8
done 7
start 10
done 9
done 10

Since its different processes the order of execution might not follow the commands in the order you submit them. As you can see 2 started before 1.

link|improve this answer
feedback

Quick and dirty solution: insert this line somewhere inside your for loop:

while [ $(jobs | wc -l) -ge 4 ] ; do sleep 1 ; done

(assumes you don't already have other background jobs running in the same shell)

link|improve this answer
1  
this might be a very wee bit more efficient with jobs -r - without it, you'll count the lines where bash tells you which jobs are already done. – Mat Jun 28 '11 at 22:05
feedback

I have made an other experimentation for this question using parallel. Its part of moreutils package.

parallel -j 4 -i bash -c "echo start {}; sleep 2; echo done {};" -- $(seq 10)

-j 4 stand for -j maxjobs

-i is used to use the parameters as {}

-- is the delimiter for your arguments

The output of this command will be:

start 3
start 4
start 1
start 2
done 4
done 2
done 3
done 1
start 5
start 6
start 7
start 8
done 5
done 6
start 9
done 7
start 10
done 8
done 9
done 10
link|improve this answer
feedback

You can do something like this by using the jobs builtin:

for f in $TESTS; do
  running=($(jobs -rp))
  while [ ${#running[@]} -ge 4 ] ; do
    sleep 1   # this is not optimal, but you can't use wait here
    running=($(jobs -rp))
  done
  t=$[ ( $RANDOM % 5 )  + 1 ]
  sleep $t && echo $f $t &
done
wait
link|improve this answer
Interesting. Could you explain behind the scenes of ${#count[@]} ? It keeps echoing 0 in my bash shell with 2 running and 1 stopped background jobs. I'd prefer to use that rather than $(jobs -rp|wc -l) in my scripts. – Marcos Jan 7 at 11:36
It's a typo :) Was meant to be ${#running[@]} which gives the number of items in the $running array. – Mat Jan 7 at 11:42
Haha, yeah I caught that eventually. For a while I hoped there was a shell built-in/avoid the $() subshells – Marcos Jan 8 at 13:20
feedback

GNU Parallel is designed for this kind of tasks:

TESTS="a b c d e"
for f in $TESTS; do
  t=$[ ( $RANDOM % 5 )  + 1 ]
  sem -j4 sleep $t && echo $f $t
done
sem --wait

Watch the intro videos to learn more:

http://www.youtube.com/playlist?list=PL284C9FF2488BC6D1

link|improve this answer
feedback

This tested script runs 5 jobs at a time and will restart a new job as soon as it does (due to the kill of the sleep 10.9 when we get a SIGCHLD. A simpler version of this could use direct polling (change the sleep 10.9 to sleep 1 and get rid of the trap).

#!/usr/bin/bash

set -o monitor
trap "pkill -P $$ -f 'sleep 10\.9' >&/dev/null" SIGCHLD

totaljobs=15
numjobs=5
worktime=10
curjobs=0
declare -A pidlist

dojob()
{
  slot=$1
  time=$(echo "$RANDOM * 10 / 32768" | bc -l)
  echo Starting job $slot with args $time
  sleep $time &
  pidlist[$slot]=`jobs -p %%`
  curjobs=$(($curjobs + 1))
  totaljobs=$(($totaljobs - 1))
}

# start
while [ $curjobs -lt $numjobs -a $totaljobs -gt 0 ]
 do
  dojob $curjobs
 done

# Poll for jobs to die, restarting while we have them
while [ $totaljobs -gt 0 ]
 do
  for ((i=0;$i < $curjobs;i++))
   do
    if ! kill -0 ${pidlist[$i]} >&/dev/null
     then
      dojob $i
      break
     fi
   done
   sleep 10.9 >&/dev/null
 done
wait
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.