view paper/gnuplot/makegraph_distributed_read.sh @ 105:3678db9f1085

Modified poster
author Nobuyasu Oshiro <dimolto@cr.ie.u-ryukyu.ac.jp>
date Tue, 18 Feb 2014 01:09:38 +0900
parents 30c746568ef6
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 * 50,000)'
set xrange[8:32]
set xlabel 'number of nodes and clients'
set ylabel 'time(sec)'
plot 'read_jungle_errorbar.dat' using 1:2:3 title 'Jungle' lt rgb "navy" with errorbars, 'read_cassandra_quorum_errorbar.dat' using 1:2:3 title "Cassandra Consistency Level Quorum" lt rgb "light-red" with errorbars
EOF