annotate paper/gnuplot/makegraph_distributed_write.sh @ 116:d45899154815 default tip

Fixed
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Thu, 06 Mar 2014 00:48:26 +0900
parents 30c746568ef6
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
45
cd3b8cf7a3a1 Added file for gnuplot
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 #!/bin/sh
cd3b8cf7a3a1 Added file for gnuplot
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: 49
diff changeset
3 set terminal svg
9c48096c2348 Change graph format to svg from eps
Yasutaka Higa <e115763@ie.u-ryukyu.ac.jp>
parents: 49
diff changeset
4 set output 'distributed_write_bench.svg'
45
cd3b8cf7a3a1 Added file for gnuplot
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
5 set title 'write benchmark (Requests : clients * 50,000)'
46
c63aaa629330 Added dat files
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 45
diff changeset
6 set xrange[8:32]
45
cd3b8cf7a3a1 Added file for gnuplot
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
7 set xlabel 'number of nodes'
cd3b8cf7a3a1 Added file for gnuplot
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 'write_jungle_errorbar.dat' using 1:2:3 title 'Jungle' lt rgb "navy" with errorbars, 'write_cassandra_quorum_errorbar.dat' using 1:2:3 title "Cassandra Consistency Level Quorum" lt rgb "light-red" with errorbars
45
cd3b8cf7a3a1 Added file for gnuplot
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
10 EOF