Plot updates
[bluesky.git] / results / figures / specsfs.gnuplot
1 load "common.gnuplot"
2
3 OPS_WSS_SCALE=36/1024.0
4
5 set grid
6 set xlabel "Requested Operations per Second"
7 set x2label "Working Set Size (GB)"
8
9 XMAX=1250
10 set xrange [0:XMAX]
11 set x2range [0:XMAX*OPS_WSS_SCALE]
12 set xtics nomirror
13 set x2tics auto
14
15 set grid
16 set key top right
17
18 set output "spec1.eps"
19 set ylabel "Achieved Operations per Second"
20 plot "../20110311/sfssum.20110312-native" with linespoints title "Local NFS Server", \
21      "../20110307/sfssum.20110307-ec2-west2" with linespoints title "EC2 NFS Server", \
22      "../20110311/sfssum.20110311-s3-west" with linespoints title "BlueSky", \
23      "../20110311/sfssum.20110311-s3-west-4kfs" with linespoints title "BlueSky (4K blocks)", \
24      "../20110311/sfssum.20110312-s3-west-fullseg" with linespoints title "BlueSky (full fetches)", \
25      "../20110311/sfssum.20110312-s3-west-noseg" with linespoints title "BlueSky (no segments)", \
26      "../20110311/sfssum.20110313-azure" with linespoints title "Azure"
27
28 set output "spec2.eps"
29 set ylabel "Operation Latency (ms)"
30 set yrange [0:50]
31 plot "../20110311/sfssum.20110312-native" using 1:3 with linespoints title "Local NFS Server", \
32      "../20110307/sfssum.20110307-ec2-west2" using 1:3 with linespoints title "EC2 NFS Server", \
33      "../20110311/sfssum.20110311-s3-west" using 1:3 with linespoints title "BlueSky", \
34      "../20110311/sfssum.20110311-s3-west-4kfs" using 1:3 with linespoints title "BlueSky (4K blocks)", \
35      "../20110311/sfssum.20110312-s3-west-fullseg" using 1:3 with linespoints title "BlueSky (full fetches)", \
36      "../20110311/sfssum.20110312-s3-west-noseg" using 1:3 with linespoints title "BlueSky (no segments)", \
37      "../20110311/sfssum.20110313-azure" using 1:3 with linespoints title "Azure"