Mercurial > hg > Papers > 2014 > nobuyasu-master
view 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 |
line wrap: on
line source
#!/bin/sh gnuplot << EOF set terminal postscript eps set output 'distributed_write_bench.eps' 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 "blue" with errorbars, 'write_cassandra_quorum_errorbar.dat' using 1:2:3 title "Cassandra Consistency Level Quorum" lt rgb "red" with errorbars EOF