Mercurial > hg > Papers > 2014 > nobuyasu-master
annotate paper/gnuplot/makegraph_distributed_read.sh @ 62:2cb5ac9282b0
writed description of ods.put
author | Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Sat, 01 Feb 2014 11:44:34 +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_read_bench.eps' |
cd3b8cf7a3a1
Added file for gnuplot
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
5 set title 'distributed read 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 and clients' |
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 'read_jungle_errorbar.dat' using 1:2:3 title 'Jungle' lt rgb "blue" with errorbars, 'read_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 |