comparison paper/gnuplot/distributed/makegraph_distributed_write.sh @ 88:f257e8ebd79c

Added svg
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Mon, 03 Feb 2014 13:40:36 +0900
parents e36cbf39a949
children f099e7314921
comparison
equal deleted inserted replaced
87:5b594597fb08 88:f257e8ebd79c
1 #!/bin/sh 1 #!/bin/sh
2 gnuplot << EOF 2 gnuplot << EOF
3 set terminal postscript eps 3 set terminal svg
4 set output 'distributed_write_bench.eps' 4 set output 'distributed_write_bench.svg'
5 set title 'distributed write benchmark (Requests : clients * 20,000)' 5 set title 'distributed write benchmark (Requests : clients * 20,000)'
6 set xrange[8:32] 6 set xrange[8:32]
7 set xlabel 'number of clients and server nodes' 7 set xlabel 'number of clients and server nodes'
8 set ylabel 'time(sec)' 8 set ylabel 'time(sec)'
9 plot 'distributed_write_jungle.dat' using 1:2:3 title 'Jungle' lt rgb "blue" with errorbars, 'distributed_write_cassandra.dat' using 1:2:3 title "Cassandra Consistency Level QUORUM" lt rgb "dark-green" with errorbars, 'distributed_write_cassandra_one.dat' using 1:2:3 title "Cassandra Consistency Level ONE" lt rgb "red" with errorbars, 9 plot 'distributed_write_jungle.dat' using 1:2:3 title 'Jungle' lt rgb "navy" lw 5 with errorbars, 'distributed_write_cassandra.dat' using 1:2:3 title "Cassandra Consistency Level QUORUM" lt rgb "dark-spring-green" lw 5 with errorbars, 'distributed_write_cassandra_one.dat' using 1:2:3 title "Cassandra Consistency Level ONE" lt rgb "light-red" lw 5 with errorbars,
10 EOF 10 EOF