Mercurial > hg > Papers > 2014 > nobuyasu-master
annotate paper/gnuplot/distributed/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 | f099e7314921 |
children |
rev | line source |
---|---|
81 | 1 #!/bin/sh |
2 gnuplot << EOF | |
83
9c48096c2348
Change graph format to svg from eps
Yasutaka Higa <e115763@ie.u-ryukyu.ac.jp>
parents:
82
diff
changeset
|
3 set terminal svg |
9c48096c2348
Change graph format to svg from eps
Yasutaka Higa <e115763@ie.u-ryukyu.ac.jp>
parents:
82
diff
changeset
|
4 set output 'distributed_write_bench.svg' |
81 | 5 set title 'distributed write benchmark (Requests : clients * 20,000)' |
6 set xrange[8:32] | |
7 set xlabel 'number of clients and server nodes' | |
8 set ylabel 'time(sec)' | |
84
30c746568ef6
Change graph colors
Yasutaka Higa <e115763@ie.u-ryukyu.ac.jp>
parents:
83
diff
changeset
|
9 plot 'distributed_write_jungle.dat' using 1:2:3 title 'Jungle' lt rgb "navy" lw 5 with errorbars, 'distributed_write_cassandra.dat' using 1:2:3 title "Cassandra Consistency Level QUORUM" lt rgb "dark-spring-green" lw 5 with errorbars, 'distributed_write_cassandra_one.dat' using 1:2:3 title "Cassandra Consistency Level ONE" lt rgb "light-red" lw 5 with errorbars, |
81 | 10 EOF |