[jbosscache-commits] JBoss Cache SVN: r8001 - in benchmarks/benchmark-fwk/trunk: conf and 1 other directory.

jbosscache-commits at lists.jboss.org jbosscache-commits at lists.jboss.org
Mon Apr 27 12:40:44 EDT 2009


Author: manik.surtani at jboss.com
Date: 2009-04-27 12:40:44 -0400 (Mon, 27 Apr 2009)
New Revision: 8001

Added:
   benchmarks/benchmark-fwk/trunk/infinispan.sh
Modified:
   benchmarks/benchmark-fwk/trunk/conf/cachebench.xml
Log:


Modified: benchmarks/benchmark-fwk/trunk/conf/cachebench.xml
===================================================================
--- benchmarks/benchmark-fwk/trunk/conf/cachebench.xml	2009-04-27 15:06:37 UTC (rev 8000)
+++ benchmarks/benchmark-fwk/trunk/conf/cachebench.xml	2009-04-27 16:40:44 UTC (rev 8001)
@@ -51,10 +51,11 @@
           validates that replication is enabled and works. If repl does not occur and the stopOnFailure is set to true then exists.
           Should be used to make sure that replication is enabled; see javadoc for more details
         -->
+<!--
         <test name="replicationOccurrsTest" testClass="org.cachebench.tests.ReplicationOccursTest">
             <param name="partialReplication" value="true"/>
         </test>
-
+-->
         <!--
            * The "name" attrib is just used for display in the reports.
            * You can write your own custom testClass.

Added: benchmarks/benchmark-fwk/trunk/infinispan.sh
===================================================================
--- benchmarks/benchmark-fwk/trunk/infinispan.sh	                        (rev 0)
+++ benchmarks/benchmark-fwk/trunk/infinispan.sh	2009-04-27 16:40:44 UTC (rev 8001)
@@ -0,0 +1,33 @@
+#!/bin/bash
+
+scaling="2"
+configs="repl-sync-RR.xml"
+#configs="distributed replicated"
+products="infinispan-4.0.0"
+
+mkdir output
+
+for product in $products
+do
+	for config in $configs
+	do
+		for size in $scaling
+		do
+			nohup ./cluster.sh start $product $config $size
+
+			outputFileName=data_${product}_${config}_${size}.csv
+			while [ ! -e $outputFileName ]
+			do
+				echo "Waiting for report [ $outputFileName ]"
+				sleep 5
+			done
+			sleep 60
+			mv $outputFileName output/
+		done
+	done
+done
+
+
+echo Generating charts ... 
+
+./generateChart -reportDir output


Property changes on: benchmarks/benchmark-fwk/trunk/infinispan.sh
___________________________________________________________________
Name: svn:executable
   + *




More information about the jbosscache-commits mailing list