view paper/gnuplot/distributed/makegraph_distributed_read.sh @ 107:7a4d101fd452

Modified abstract
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Tue, 18 Feb 2014 22:54:11 +0900
parents f099e7314921
children
line wrap: on
line source

#!/bin/sh
gnuplot << EOF
set terminal svg
set output 'distributed_read_bench.svg'
set title 'distributed read benchmark (Requests : clients * 20,000)'
set xrange[8:32]
set xlabel 'number of clients and server nodes'
set ylabel 'time(sec)'
plot 'distributed_read_jungle.dat' using 1:2:3 title 'Jungle' lt rgb "navy" lw 5 with errorbars, 'distributed_read_cassandra.dat' using 1:2:3 title "Cassandra Consistency Level QUORUM" lt rgb "dark-spring-green" lw 5 with errorbars, 'distributed_read_cassandra_one.dat' using 1:2:3 title "Cassandra Consistency Level ONE" lt rgb "light-red" lw 5 with errorbars,
EOF