annotate paper/gnuplot/bldsv12/makegraph_bldsv12_write.sh @ 98:f099e7314921

Merged
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Thu, 13 Feb 2014 20:54:52 +0900
parents f257e8ebd79c 30c746568ef6
children
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
83
9c48096c2348 Change graph format to svg from eps
Yasutaka Higa <e115763@ie.u-ryukyu.ac.jp>
parents: 82
diff changeset
3 set terminal svg
9c48096c2348 Change graph format to svg from eps
Yasutaka Higa <e115763@ie.u-ryukyu.ac.jp>
parents: 82
diff changeset
4 set output 'bldsv12_write_bench.svg'
51
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)'
84
30c746568ef6 Change graph colors
Yasutaka Higa <e115763@ie.u-ryukyu.ac.jp>
parents: 83
diff changeset
9 plot 'bldsv12_write_jungle.dat' using 1:2:3 title 'Jungle' lt rgb "navy" lw 5 with errorbars, 'bldsv12_write_cassandra.dat' using 1:2:3 title "Cassandra Consistency Level ONE" lt rgb "light-red" lw 5 with errorbars
51
3c185e874021 Added gnuplot/bldsv12
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
10 EOF