annotate paper/gnuplot/distributed/makegraph_distributed_read.sh @ 82:d24492455ead

Resize line width for 5 from 1 on bldsv12/distributed, read/write graphs
author Yasutaka Higa <e115763@ie.u-ryukyu.ac.jp>
date Mon, 03 Feb 2014 12:20:38 +0900
parents e36cbf39a949
children 9c48096c2348
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
81
e36cbf39a949 Added log
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
1 #!/bin/sh
e36cbf39a949 Added log
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
2 gnuplot << EOF
e36cbf39a949 Added log
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
3 set terminal postscript eps
e36cbf39a949 Added log
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
4 set output 'distributed_read_bench.eps'
e36cbf39a949 Added log
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
5 set title 'distributed read benchmark (Requests : clients * 20,000)'
e36cbf39a949 Added log
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
6 set xrange[8:32]
e36cbf39a949 Added log
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
7 set xlabel 'number of clients and server nodes'
e36cbf39a949 Added log
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
8 set ylabel 'time(sec)'
82
d24492455ead Resize line width for 5 from 1 on bldsv12/distributed, read/write graphs
Yasutaka Higa <e115763@ie.u-ryukyu.ac.jp>
parents: 81
diff changeset
9 plot 'distributed_read_jungle.dat' using 1:2:3 title 'Jungle' lt rgb "blue" lw 5 with errorbars, 'distributed_read_cassandra.dat' using 1:2:3 title "Cassandra Consistency Level QUORUM" lt rgb "dark-green" lw 5 with errorbars, 'distributed_read_cassandra_one.dat' using 1:2:3 title "Cassandra Consistency Level ONE" lt rgb "red" lw 5 with errorbars,
81
e36cbf39a949 Added log
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff changeset
10 EOF