annotate 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
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
51
3c185e874021 Added gnuplot/bldsv12
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 #!/bin/sh
3c185e874021 Added gnuplot/bldsv12
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
2 gnuplot << EOF
3c185e874021 Added gnuplot/bldsv12
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
3 set terminal postscript eps
3c185e874021 Added gnuplot/bldsv12
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
4 set output 'bldsv12_read_bench.eps'
3c185e874021 Added gnuplot/bldsv12
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
5 set title 'Single node read benchmark (Requests : clients * 20,000)'
57
39c2180b5719 Added log
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 55
diff changeset
6 set xrange[8:60]
51
3c185e874021 Added gnuplot/bldsv12
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
7 set xlabel 'number of clients'
3c185e874021 Added gnuplot/bldsv12
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
8 set ylabel 'time(sec)'
3c185e874021 Added gnuplot/bldsv12
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
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
3c185e874021 Added gnuplot/bldsv12
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
10 EOF