From: Michael Vrable Date: Mon, 14 Mar 2011 16:48:14 +0000 (-0700) Subject: Plot updates X-Git-Url: http://git.vrable.net/?p=bluesky.git;a=commitdiff_plain;h=d3a5f8230f813a9f634f7ca4fe1c9416aa2de18a Plot updates --- diff --git a/results/figures/common.gnuplot b/results/figures/common.gnuplot index 8b03725..fa39ca9 100644 --- a/results/figures/common.gnuplot +++ b/results/figures/common.gnuplot @@ -6,4 +6,4 @@ # Settings for camera-ready: shrink plot size and increase font size so that # text is readable in the final paper. -set term postscript eps dashed size 3.5,2.5 20 +set term postscript eps dashed size 3.5,2.5 16 diff --git a/results/figures/specsfs.gnuplot b/results/figures/specsfs.gnuplot new file mode 100644 index 0000000..9606f98 --- /dev/null +++ b/results/figures/specsfs.gnuplot @@ -0,0 +1,37 @@ +load "common.gnuplot" + +OPS_WSS_SCALE=36/1024.0 + +set grid +set xlabel "Requested Operations per Second" +set x2label "Working Set Size (GB)" + +XMAX=1250 +set xrange [0:XMAX] +set x2range [0:XMAX*OPS_WSS_SCALE] +set xtics nomirror +set x2tics auto + +set grid +set key top right + +set output "spec1.eps" +set ylabel "Achieved Operations per Second" +plot "../20110311/sfssum.20110312-native" with linespoints title "Local NFS Server", \ + "../20110307/sfssum.20110307-ec2-west2" with linespoints title "EC2 NFS Server", \ + "../20110311/sfssum.20110311-s3-west" with linespoints title "BlueSky", \ + "../20110311/sfssum.20110311-s3-west-4kfs" with linespoints title "BlueSky (4K blocks)", \ + "../20110311/sfssum.20110312-s3-west-fullseg" with linespoints title "BlueSky (full fetches)", \ + "../20110311/sfssum.20110312-s3-west-noseg" with linespoints title "BlueSky (no segments)", \ + "../20110311/sfssum.20110313-azure" with linespoints title "Azure" + +set output "spec2.eps" +set ylabel "Operation Latency (ms)" +set yrange [0:50] +plot "../20110311/sfssum.20110312-native" using 1:3 with linespoints title "Local NFS Server", \ + "../20110307/sfssum.20110307-ec2-west2" using 1:3 with linespoints title "EC2 NFS Server", \ + "../20110311/sfssum.20110311-s3-west" using 1:3 with linespoints title "BlueSky", \ + "../20110311/sfssum.20110311-s3-west-4kfs" using 1:3 with linespoints title "BlueSky (4K blocks)", \ + "../20110311/sfssum.20110312-s3-west-fullseg" using 1:3 with linespoints title "BlueSky (full fetches)", \ + "../20110311/sfssum.20110312-s3-west-noseg" using 1:3 with linespoints title "BlueSky (no segments)", \ + "../20110311/sfssum.20110313-azure" using 1:3 with linespoints title "Azure"