Mercurial > hg > Papers > 2014 > nobuyasu-master
diff paper/gnuplot/distributed/makegraph_distributed_write.sh @ 81:e36cbf39a949
Added log
author | Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 03 Feb 2014 12:17:40 +0900 |
parents | |
children | d24492455ead f257e8ebd79c |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/paper/gnuplot/distributed/makegraph_distributed_write.sh Mon Feb 03 12:17:40 2014 +0900 @@ -0,0 +1,10 @@ +#!/bin/sh +gnuplot << EOF +set terminal postscript eps +set output 'distributed_write_bench.eps' +set title 'distributed write benchmark (Requests : clients * 20,000)' +set xrange[8:32] +set xlabel 'number of clients and server nodes' +set ylabel 'time(sec)' +plot 'distributed_write_jungle.dat' using 1:2:3 title 'Jungle' lt rgb "blue" with errorbars, 'distributed_write_cassandra.dat' using 1:2:3 title "Cassandra Consistency Level QUORUM" lt rgb "dark-green" with errorbars, 'distributed_write_cassandra_one.dat' using 1:2:3 title "Cassandra Consistency Level ONE" lt rgb "red" with errorbars, +EOF