Mercurial > hg > Papers > 2014 > nobuyasu-master
annotate paper/gnuplot/read_makegraph.sh @ 44:618adf0a9b2b
Added some figures
author | Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Thu, 30 Jan 2014 16:15:32 +0900 |
parents | 8ea1a684bfbe |
children | 30c746568ef6 |
rev | line source |
---|---|
40
8ea1a684bfbe
Added benchmark dat file
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
1 #!/bin/sh |
8ea1a684bfbe
Added benchmark dat file
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
2 gnuplot << EOF |
8ea1a684bfbe
Added benchmark dat file
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
3 set terminal postscript eps |
8ea1a684bfbe
Added benchmark dat file
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
4 set output 'read_bench.eps' |
8ea1a684bfbe
Added benchmark dat file
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
5 set title 'read benchmark(1,000,000 Requests)' |
44
618adf0a9b2b
Added some figures
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
40
diff
changeset
|
6 set xlabel 'number of nodes' |
40
8ea1a684bfbe
Added benchmark dat file
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
7 set ylabel 'time(sec)' |
8ea1a684bfbe
Added benchmark dat file
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
8 plot 'read_jungle.dat' title 'Jungle' lt rgb "blue" with linespoints, 'read_cassandra.dat' title "Cassandra Consistency Level Quorum" lt rgb "red" with linespoints, 'read_cassandra_one.dat' title "Cassandra Consistency Level ONE" lt rgb "red" with linespoints |
8ea1a684bfbe
Added benchmark dat file
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
9 EOF |