view log/gnuplot/write_makegraph_cassandra.sh @ 1:0a198ff75b2c

Added log and images
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Tue, 14 Jan 2014 17:14:01 +0900
parents
children
line wrap: on
line source

#!/bin/sh
gnuplot << EOF
set terminal postscript eps
set output 'write_cassandra.eps'
set title 'cassandra write benchmark'
set xlabel 'nuber of nodes'
set ylabel 'avarage time(sec)'
plot 'write_cassandra.dat' title "Cassandra 1 node" lt rgb "red" with linespoints, 'write_cassandra_2node_2access_one.dat' title "Cassandra 2 node (CLevel ONE)" lt rgb "dark-red" with linespoints, 'write_cassandra_2node_2access_all.dat' title "Cassandra 2 node (CLevel ALL)" lt rgb "purple" with linespoints, 'write_cassandra_2node_2access_quorum.dat' title "Cassandra 2 node (CLevel QUORUM)" lt rgb "dark-green" with linespoints
EOF