comparison paper/gnuplot/bldsv12/makegraph_bldsv12_read.sh @ 57:39c2180b5719

Added log
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Fri, 31 Jan 2014 23:33:49 +0900
parents cff4aee4fcf6
children d24492455ead f257e8ebd79c
comparison
equal deleted inserted replaced
56:1d07365c60ff 57:39c2180b5719
1 #!/bin/sh 1 #!/bin/sh
2 gnuplot << EOF 2 gnuplot << EOF
3 set terminal postscript eps 3 set terminal postscript eps
4 set output 'bldsv12_read_bench.eps' 4 set output 'bldsv12_read_bench.eps'
5 set title 'Single node read benchmark (Requests : clients * 20,000)' 5 set title 'Single node read benchmark (Requests : clients * 20,000)'
6 set xrange[8:48] 6 set xrange[8:60]
7 set xlabel 'number of clients' 7 set xlabel 'number of clients'
8 set ylabel 'time(sec)' 8 set ylabel 'time(sec)'
9 plot 'bldsv12_read_jungle.dat' using 1:2:3 title 'Jungle' lt rgb "blue" with errorbars, 'bldsv12_read_cassandra.dat' using 1:2:3 title "Cassandra Consistency Level ONE" lt rgb "red" with errorbars 9 plot 'bldsv12_read_jungle.dat' using 1:2:3 title 'Jungle' lt rgb "blue" with errorbars, 'bldsv12_read_cassandra.dat' using 1:2:3 title "Cassandra Consistency Level ONE" lt rgb "red" with errorbars
10 EOF 10 EOF