Mercurial > hg > Members > nobuyasu > master-presen > presen20140114
view log/gnuplot/write_makegraph_cassandra.sh @ 13:17b5915412d6
Fxied slide's images
author | Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp> |
---|---|
date | Mon, 03 Feb 2014 05:33:53 +0900 |
parents | 0a198ff75b2c |
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