X-Git-Url: http://git.vrable.net/?a=blobdiff_plain;f=microbench%2Frun-spec.sh;h=5d4d514a6613e3b48bc711d58c89566c1a112c28;hb=2f8003e3de64956cec66cf3f642c35795c236a17;hp=074dd9f15050c6d09a74ef1f3e0204cb77e97536;hpb=1c21032927ce1b6d19f7910677ccad9cf5367159;p=bluesky.git diff --git a/microbench/run-spec.sh b/microbench/run-spec.sh index 074dd9f..5d4d514 100755 --- a/microbench/run-spec.sh +++ b/microbench/run-spec.sh @@ -5,8 +5,50 @@ BASEDIR=$(dirname $(which $0)) run_spec() { BLUESKY_RUN_NAME=$(date +%Y%m%d)-$1 + SPEC_CONF=$2 $HOME/bin/s3-cleanup.py mvrable-bluesky $HOME/bin/s3-cleanup.py mvrable-bluesky-west run_cmd $PROXY cleanup-proxy run_cmd $PROXY run-proxy >$BLUESKY_RUN_NAME.proxy 2>&1 & + proxy_pid=$! + sleep 10 + + run_cmd $BENCHER run-specsfs + + run_cmd $PROXY stop-proxy + echo "Waiting for proxy to stop..." + wait $proxy_pid +} + +# Test of using full segment fetches instead of range requests +#BLUESKY_TARGET=s3:mvrable-bluesky-west +#BLUESKY_OPT_FULL_SEGMENTS=1 +#run_spec s3-west-fullseg sfs_bluesky + +# Run a simulation of not using a log-structured system at all +#BLUESKY_TARGET=s3:mvrable-bluesky-west +#BLUESKY_EXTRA_OPTS="BLUESKY_OPT_FULL_SEGMENTS=1 BLUESKY_OPT_NO_AGGREGATION=1" +#run_spec s3-west-noseg sfs_bluesky + +# Standard test with Azure instead of Amazon S3 for storage +#BLUESKY_TARGET=azure +#run_spec azure sfs_bluesky + +# BlueSky, testing with a greater degree of parallelism +#BLUESKY_TARGET=s3:mvrable-bluesky-west +#BLUESKY_EXTRA_OPTS="BLUESKY_OPT_NO_CRYPTO=1" +#run_spec s3-west-hi32 sfs_bluesky-hi + +#BLUESKY_TARGET=native +#run_spec native-hi8 sfs_bluesky-hi + +BLUESKY_TARGET=s3:mvrable-bluesky-west +BLUESKY_EXTRA_OPTS="BLUESKY_OPT_NO_GROUP_READS=1" +run_spec s3-west-noagg sfs_bluesky + +BLUESKY_EXTRA_OPTS="BLUESKY_OPT_NO_CRYPTO=1" +run_spec s3-west-nocrypt sfs_bluesky + +BLUESKY_EXTRA_OPTS="BLUESKY_OPT_NO_GROUP_READS=1 BLUESKY_OPT_NO_CRYPTO=1" +run_spec s3-west-noagg-nocrypt sfs_bluesky