comparison paper/gnuplot/read_makegraph.sh @ 40:8ea1a684bfbe

Added benchmark dat file
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Wed, 29 Jan 2014 03:14:45 +0900
parents
children 618adf0a9b2b
comparison
equal deleted inserted replaced
39:63eca978482f 40:8ea1a684bfbe
1 #!/bin/sh
2 gnuplot << EOF
3 set terminal postscript eps
4 set output 'read_bench.eps'
5 set title 'read benchmark(1,000,000 Requests)'
6 set xlabel 'nuber of nodes'
7 set ylabel 'time(sec)'
8 plot 'read_jungle.dat' title 'Jungle' lt rgb "blue" with linespoints, 'read_cassandra.dat' title "Cassandra Consistency Level Quorum" lt rgb "red" with linespoints, 'read_cassandra_one.dat' title "Cassandra Consistency Level ONE" lt rgb "red" with linespoints
9 EOF