annotate paper/gnuplot/makegraph_distributed_write.sh @ 49:7b595f4b341e

modified chapter3.txt
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Fri, 31 Jan 2014 11:19:32 +0900
parents c63aaa629330
children 9c48096c2348
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
45
cd3b8cf7a3a1 Added file for gnuplot
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 #!/bin/sh
cd3b8cf7a3a1 Added file for gnuplot
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
2 gnuplot << EOF
cd3b8cf7a3a1 Added file for gnuplot
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
3 set terminal postscript eps
cd3b8cf7a3a1 Added file for gnuplot
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
4 set output 'distributed_write_bench.eps'
cd3b8cf7a3a1 Added file for gnuplot
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
5 set title 'write benchmark (Requests : clients * 50,000)'
46
c63aaa629330 Added dat files
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 45
diff changeset
6 set xrange[8:32]
45
cd3b8cf7a3a1 Added file for gnuplot
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
7 set xlabel 'number of nodes'
cd3b8cf7a3a1 Added file for gnuplot
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
8 set ylabel 'time(sec)'
49
7b595f4b341e modified chapter3.txt
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents: 46
diff changeset
9 plot 'write_jungle_errorbar.dat' using 1:2:3 title 'Jungle' lt rgb "blue" with errorbars, 'write_cassandra_quorum_errorbar.dat' using 1:2:3 title "Cassandra Consistency Level Quorum" lt rgb "red" with errorbars
45
cd3b8cf7a3a1 Added file for gnuplot
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
10 EOF