annotate paper/gnuplot/distributed/makegraph_distributed_write.sh @ 92:62d39472d5d4
Modified introduction.tex
author |
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp> |
date |
Wed, 05 Feb 2014 21:51:44 +0900 |
parents |
f257e8ebd79c |
children |
f099e7314921 |
rev |
line source |
81
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
1 #!/bin/sh
|
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
2 gnuplot << EOF
|
88
|
3 set terminal svg
|
|
4 set output 'distributed_write_bench.svg'
|
81
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
5 set title 'distributed write benchmark (Requests : clients * 20,000)'
|
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
6 set xrange[8:32]
|
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
7 set xlabel 'number of clients and server nodes'
|
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
8 set ylabel 'time(sec)'
|
88
|
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,
|
81
Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
parents:
diff
changeset
|
10 EOF
|