Mercurial > hg > Papers > 2014 > nobuyasu-master
annotate paper/gnuplot/makegraph_distributed_write.sh @ 85:07aec327a7bc
Added slides.htlm
author | Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 03 Feb 2014 13:06:41 +0900 |
parents | 7b595f4b341e |
children | 9c48096c2348 |
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 |
cd3b8cf7a3a1
Added file for gnuplot
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
3 set terminal postscript eps |
cd3b8cf7a3a1
Added file for gnuplot
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
4 set output 'distributed_write_bench.eps' |
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)' |
49
7b595f4b341e
modified chapter3.txt
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
46
diff
changeset
|
9 plot 'write_jungle_errorbar.dat' using 1:2:3 title 'Jungle' lt rgb "blue" with errorbars, 'write_cassandra_quorum_errorbar.dat' using 1:2:3 title "Cassandra Consistency Level Quorum" lt rgb "red" with errorbars |
45
cd3b8cf7a3a1
Added file for gnuplot
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
10 EOF |