From db468693ef5faa294d9bc3cd3c5d70c0d99d488b Mon Sep 17 00:00:00 2001 From: Rahul C S Date: Fri, 17 Feb 2012 17:23:28 +0530 Subject: Adding the performance framework to the qa repo Change-Id: Ia7dbd82e9bb2e5e65e9345234ce34f8518a091ad Signed-off-by: Rahul C S --- perf-framework/quota_gsync_run | 42 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100755 perf-framework/quota_gsync_run (limited to 'perf-framework/quota_gsync_run') diff --git a/perf-framework/quota_gsync_run b/perf-framework/quota_gsync_run new file mode 100755 index 0000000..a090b66 --- /dev/null +++ b/perf-framework/quota_gsync_run @@ -0,0 +1,42 @@ +#!/bin/bash -u + +CONFIG_FILE=gf_perf_config +source $CONFIG_FILE + +run=$1 +runlabel=`echo $run|sed -e 's/^glusterfs-//' -e 's/\.tar\.gz//'` + +a=`cat .runfile` +echo "run$a - Quota off; gsync on..." +ssh -l root $MGMT_NODE "gluster volume reset $VOLNAME force" +sleep 5 +ssh -l root $MGMT_NODE "gluster volume set $VOLNAME geo-replication.indexing on" +sleep 5 +echo "run`cat .runfile` - $MOUNT_TYPE - $runlabel - $GF_CONFIG - (quota off, gsync on)" >> $RUNLOG +./start_perf_measure +sleep 10 + +echo "run$((a+1)) - Quota on; gsync on..." +ssh -l root $MGMT_NODE "gluster volume reset $VOLNAME force" +sleep 5 +ssh -l root $MGMT_NODE "gluster volume quota $VOLNAME enable" +sleep 5 +ssh -l root $MGMT_NODE "gluster volume set $VOLNAME geo-replication.indexing on" +sleep 5 +echo "run`cat .runfile` - $MOUNT_TYPE - $runlabel - $GF_CONFIG - (quota on, gsync on)" >> $RUNLOG +./start_perf_measure +sleep 10 + +echo "run$((a+2)) - Quota on; gsync off..." +ssh -l root $MGMT_NODE "gluster volume reset $VOLNAME force" +sleep 5 +ssh -l root $MGMT_NODE "gluster volume quota $VOLNAME enable" +sleep 5 +echo "run`cat .runfile` - $MOUNT_TYPE - $runlabel - $GF_CONFIG - (quota on, gsync off)" >> $RUNLOG +./start_perf_measure +sleep 10 + +# Restore +ssh -l root $MGMT_NODE "gluster volume reset $VOLNAME force" +sleep 5 + -- cgit