blob: 5e572f357b9024290185c3bab50e5d14319af5b1 (
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
#!/bin/sh
#
# $Id$
#
if [ $# -lt 3 ]; then
echo "Usage: $0 [ROOT] [DEST] [USER]"
exit 0
fi
ROOT=$1
DEST=$2
US=$3
DATE=`date +%Y/%m/%d-%H:%M`
cd $ROOT
ACE_ROOT=$ROOT
export ACE_ROOT
LD_LIBRARY_PATH=$ACE_ROOT/ace
export LD_LIBRARY_PATH
PATH=/usr/bin:$PATH
export PATH
cd TAO/performance-tests/Memory/Single_Threaded
# start the server
./server &
s_id=$!;
# Just sleep for 2 seconds.
sleep 2;
# Check whether the server has started
file="test.ior"
if test -f $file
then
# Just get the size as soon the server is started, ie. the vanilla
# server.
s_up=`top -p $s_id -n 1 -b | grep $US| awk '{print $5}'`;
# Write it a file
echo $DATE $s_up >> $DEST/source/st_start_size.txt
# start the client
./client &
c_id=$!;
# Wait till all the invocations are done
sleep 10;
# Get the size once the client has made sufficient invocations.
s_invocations=`top -p $s_id -n 1 -b | grep $US| awk '{print $5}'`;
echo $DATE $s_invocations >> $DEST/source/st_after_invoke_size.txt
# Kill the server and client. We will look at better ways of doing
# this later.
kill -9 $c_id;
# Just sleep for the server to release memory etc.
sleep 5;
# Get the size once the client is killed or crashed
s_client_death=`top -p $s_id -n 1 -b | grep $US| awk '{print $5}'`;
echo $DATE $s_client_death >> $DEST/source/st_after_peer_death_size.txt
kill -9 $s_id;
rm -f $file
else
echo $file doesnt exist
fi
cd $DEST/source
STRING=""
FILES="start after_invoke after_peer_death"
for i in $FILES ; do
/usr/bin/tac st_${i}_size.txt > $DEST/data/st_${i}_size.txt
/usr/bin/tail -5 st_${i}_size.txt > $DEST/data/LAST_st_${i}_size.txt
$ROOT/bin/generate_topinfo_charts.sh st_${i}_size.txt $DEST/images/st_${i}_size.png st_${i}_size.txt $STRING
done
|