Mercurial > hg > Papers > 2014 > nobuyasu-master
comparison paper/gnuplot/makegraph_distributed_write.sh @ 46:c63aaa629330
Added dat files
author | Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Fri, 31 Jan 2014 05:38:58 +0900 |
parents | cd3b8cf7a3a1 |
children | 7b595f4b341e |
comparison
equal
deleted
inserted
replaced
45:cd3b8cf7a3a1 | 46:c63aaa629330 |
---|---|
1 #!/bin/sh | 1 #!/bin/sh |
2 gnuplot << EOF | 2 gnuplot << EOF |
3 set terminal postscript eps | 3 set terminal postscript eps |
4 set output 'distributed_write_bench.eps' | 4 set output 'distributed_write_bench.eps' |
5 set title 'write benchmark (Requests : clients * 50,000)' | 5 set title 'write benchmark (Requests : clients * 50,000)' |
6 set xrange[8:32] | |
6 set xlabel 'number of nodes' | 7 set xlabel 'number of nodes' |
7 set ylabel 'time(sec)' | 8 set ylabel 'time(sec)' |
8 plot 'distributed_write_jungle.dat' title 'Jungle' lt rgb "blue" with linespoints, 'distributed_write_cassandra_quorum.dat' title "Cassandra Consistency Level Quorum" lt rgb "red" with linespoints,'distributed_write_cassandra_one.dat' title "Cassandra Consistency Level ONE" lt rgb "dark-red" with linespoints | 9 plot 'write_jungle_errorbar.dat' using 1:2:3 title 'Jungle' lt rgb "blue" with errorbars, 'distributed_write_cassandra_quorum.dat' title "Cassandra Consistency Level Quorum" lt rgb "red" with linespoints,'distributed_write_cassandra_one.dat' title "Cassandra Consistency Level ONE" lt rgb "dark-red" with linespoints |
9 EOF | 10 EOF |