Mercurial > hg > Members > nobuyasu > master-presen > presen20140114
annotate log/gnuplot/write_makegraph_cassandra.sh @ 13:17b5915412d6
Fxied slide's images
author | Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 03 Feb 2014 05:33:53 +0900 |
parents | 0a198ff75b2c |
children |
rev | line source |
---|---|
1
0a198ff75b2c
Added log and images
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
1 #!/bin/sh |
0a198ff75b2c
Added log and images
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
2 gnuplot << EOF |
0a198ff75b2c
Added log and images
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
3 set terminal postscript eps |
0a198ff75b2c
Added log and images
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
4 set output 'write_cassandra.eps' |
0a198ff75b2c
Added log and images
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
5 set title 'cassandra write benchmark' |
0a198ff75b2c
Added log and images
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
6 set xlabel 'nuber of nodes' |
0a198ff75b2c
Added log and images
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
7 set ylabel 'avarage time(sec)' |
0a198ff75b2c
Added log and images
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
8 plot 'write_cassandra.dat' title "Cassandra 1 node" lt rgb "red" with linespoints, 'write_cassandra_2node_2access_one.dat' title "Cassandra 2 node (CLevel ONE)" lt rgb "dark-red" with linespoints, 'write_cassandra_2node_2access_all.dat' title "Cassandra 2 node (CLevel ALL)" lt rgb "purple" with linespoints, 'write_cassandra_2node_2access_quorum.dat' title "Cassandra 2 node (CLevel QUORUM)" lt rgb "dark-green" with linespoints |
0a198ff75b2c
Added log and images
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
9 EOF |