Re-run synthetic writes with different parameter values
authorMichael Vrable <mvrable@cs.ucsd.edu>
Thu, 17 Mar 2011 21:26:45 +0000 (14:26 -0700)
committerMichael Vrable <mvrable@cs.ucsd.edu>
Thu, 17 Mar 2011 21:26:45 +0000 (14:26 -0700)
microbench/run-synwrite.sh

index 53e385c..ce66b3e 100755 (executable)
@@ -6,7 +6,7 @@ BASEDIR=$(dirname $(which $0))
 BLUESKY_TARGET=s3:mvrable-bluesky-west
 BLUESKY_EXTRA_OPTS="BLUESKY_OPT_NO_CRYPTO=1"
 
-rates="1 2 4 8 16 32 48 100000"
+rates="1 2 4 8 10 12 14 16 32"
 
 run_synbench() {
     basename=$(date +%Y%m%d)-$1
@@ -20,7 +20,7 @@ run_synbench() {
 
     for SYNWRITE_RATE in $rates; do
         run_cmd $BENCHER run-synwrite
-        sleep 60
+        sleep 30
     done
 
     run_cmd $PROXY stop-proxy
@@ -28,6 +28,7 @@ run_synbench() {
     wait $proxy_pid
 }
 
+#for BLUESKY_CACHE_SIZE in $((2048 * 1024)); do
 for BLUESKY_CACHE_SIZE in $((256 * 1024)); do
-    run_synbench "write100-$(($BLUESKY_CACHE_SIZE / 1024))M"
+    run_synbench "write100c-$(($BLUESKY_CACHE_SIZE / 1024))M"
 done