comparison paper/gnuplot/bldsv12/makegraph_bldsv12_read.sh @ 55:cff4aee4fcf6

Added log
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Fri, 31 Jan 2014 20:36:54 +0900
parents 3c185e874021
children 39c2180b5719
comparison
equal deleted inserted replaced
54:e28c00d0ec98 55:cff4aee4fcf6
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:42] 6 set xrange[8:48]
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