summaryrefslogtreecommitdiff
path: root/TAO/orbsvcs/tests/EC_Multiple/run_utilization
blob: d92d9e5431e4c118091c9064fda105dbfee5b459 (plain)
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
#!/bin/sh
#
# $Id$

if [ -z "$NameServicePort" ]; then
  NameServicePort=0
  export NameServicePort
fi

HP_WORKLOADS="0 60 65 70 72 74 76 78 80 81 82 83 84 85 86 87 88 89 90"
HP_MSGS=200
HP_CONSUMERS=1
HP_INTERVAL=25000

LP_WORKLOAD=500
LP_MSGS=50
LP_CONSUMERS=1
LP_INTERVAL=100000

/bin/rm -f NameService.ior NameService.pid EC1.pid EC2.pid EC.pid

# Generate the baseline data, i.e. shortcircuit the EC.

for w in $HP_WORKLOADS; do
  echo Local EC test $w
  ../../Naming_Service/Naming_Service -ORBport $NameServicePort \
    -o NameService.ior -p NameService.pid >/dev/null 2>&1 &
  sleep 2
  NameService=`cat NameService.ior`
  export NameService
  ./EC_Multiple -ORBport 0 -l ECM1 -s runtime -p ECM1.pid \
    -w 1,${LP_CONSUMERS},${LP_WORKLOAD},${LP_INTERVAL},${LP_MSGS},3,4,3,4 \
    -h 1,${HP_CONSUMERS},${w},${HP_INTERVAL},${HP_MSGS},1,2,1,2 > \
      UTL.LCL.${w}.log 2>&1

  kill `cat NameService.pid`

   ../../Naming_Service/Naming_Service -ORBport $NameServicePort \
        -o NameService.ior -p NameService.pid >/dev/null 2>&1 &
   sleep 2
   NameService=`cat NameService.ior`
   export NameService

  ./EC_Multiple -ORBport 0 -l ECM1 -r ECM2 -s runtime -p ECM1.pid \
    -w 1,${LP_CONSUMERS},${LP_WORKLOAD},${LP_INTERVAL},${LP_MSGS},1,2,1,3 \
    -h 1,${HP_CONSUMERS},${w},${HP_INTERVAL},${HP_MSGS},4,5,4,6 > \
      UTL.ECM1.${w}.log 2>&1 &
  ./EC_Multiple -ORBport 0 -l ECM2 -r ECM1 -s runtime -p ECM2.pid \
    -w 1,${LP_CONSUMERS},${LP_WORKLOAD},${LP_INTERVAL},${LP_MSGS},7,3,7,2 \
    -h 1,${HP_CONSUMERS},${w},${HP_INTERVAL},${HP_MSGS},8,6,8,5 > \
      UTL.ECM2.${w}.log 2>&1 &

    sleep 2
    wait `cat ECM1.pid`
    wait `cat ECM2.pid`
    kill `cat NameService.pid`

done

exit 0