annotate paper/gnuplot/bldsv12/makegraph_bldsv12_write.sh @ 82:d24492455ead

Resize line width for 5 from 1 on bldsv12/distributed, read/write graphs
author Yasutaka Higa <e115763@ie.u-ryukyu.ac.jp>
date Mon, 03 Feb 2014 12:20:38 +0900
parents 39c2180b5719
children 9c48096c2348
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_write_bench.eps'
3c185e874021 Added gnuplot/bldsv12
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
5 set title 'Single node write 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)'
82
d24492455ead Resize line width for 5 from 1 on bldsv12/distributed, read/write graphs
Yasutaka Higa <e115763@ie.u-ryukyu.ac.jp>
parents: 57
diff changeset
9 plot 'bldsv12_write_jungle.dat' using 1:2:3 title 'Jungle' lt rgb "blue" lw 5 with errorbars, 'bldsv12_write_cassandra.dat' using 1:2:3 title "Cassandra Consistency Level ONE" lt rgb "red" lw 5 with errorbars
51
3c185e874021 Added gnuplot/bldsv12
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
10 EOF