Mercurial > hg > Papers > 2014 > nobuyasu-master
view paper/gnuplot/makegraph_distributed_write.sh @ 109:6d0b78007d40
Added master.pdf
author | Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Wed, 19 Feb 2014 20:19:59 +0900 |
parents | 30c746568ef6 |
children |
line wrap: on
line source
#!/bin/sh gnuplot << EOF set terminal svg set output 'distributed_write_bench.svg' set title 'write benchmark (Requests : clients * 50,000)' set xrange[8:32] set xlabel 'number of nodes' set ylabel 'time(sec)' plot 'write_jungle_errorbar.dat' using 1:2:3 title 'Jungle' lt rgb "navy" with errorbars, 'write_cassandra_quorum_errorbar.dat' using 1:2:3 title "Cassandra Consistency Level Quorum" lt rgb "light-red" with errorbars EOF