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
|
#!/bin/sh
t=$1
test -n "$t" || exit 1
test -d reg-$t && rm -fr reg-$t
mkdir reg-$t
rm -f *.mf *.LCK *.tmp
../../index/zebraidx -l zebraidx-$t.log init
i=0
rm -f times-$t.log stat-$t.log
while test -f dmoz.$i.xml; do
echo -n "$i " >>times-$1.log
rm -f zebraidx-$t.log
../../index/zebraidx -l zebraidx-$t.log -c zebra-$t.cfg -f 10 update dmoz.$i.xml
grep ' zebraidx times:' zebraidx-$t.log | sed 's/.*zebraidx times://g' >>times-$t.log
i=`expr $i + 1`
mod=`expr $i % 50`
if test $mod -eq 0; then
echo "run $i" >> stat-$t.log
../../index/zebraidx -l zebraidx-$t.log -c zebra-$t.cfg stat >>stat-$t.log
fi
if test $i = 30; then
break
fi
done
title="ISAM-$t `date`"
cat >plot.dem <<ENDOFMESSAGE
set output "times-$t.ps"
set terminal postscript
set title "$title"
set xlabel "runs"
set ylabel "seconds"
plot [0:] [0:] \
'times-$t.log' using 2 title 'real' with linespoints, \
'times-$t.log' using 3 title 'user' with linespoints, \
'times-$t.log' using 4 title 'sys' with linespoints
ENDOFMESSAGE
gnuplot plot.dem
|