Mercurial > hg > Papers > 2014 > nobuyasu-master
diff paper/gnuplot/bldsv12/makegraph_bldsv12_write.sh @ 51:3c185e874021
Added gnuplot/bldsv12
author | Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Fri, 31 Jan 2014 17:27:49 +0900 |
parents | |
children | 8344c4493e61 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/paper/gnuplot/bldsv12/makegraph_bldsv12_write.sh Fri Jan 31 17:27:49 2014 +0900 @@ -0,0 +1,10 @@ +#!/bin/sh +gnuplot << EOF +set terminal postscript eps +set output 'bldsv12_write_bench.eps' +set title 'Single node write benchmark (Requests : clients * 20,000)' +set xrange[8:42] +set xlabel 'number of clients' +set ylabel 'time(sec)' +plot 'bldsv12_jungle_write.dat' using 1:2:3 title 'Jungle' lt rgb "blue" with errorbars, 'bldsv12_write_cassandra.dat' using 1:2:3 title "Cassandra Consistency Level ONE" lt rgb "red" with errorbars +EOF