You are viewing a plain text version of this content. The canonical link for it is here.
Posted to olio-commits@incubator.apache.org by sh...@apache.org on 2009/03/05 19:21:58 UTC

svn commit: r750557 - in /incubator/olio/workload/php/trunk: bin/dbloader.sh config/run.xml deploy/run.xml

Author: shanti
Date: Thu Mar  5 19:21:58 2009
New Revision: 750557

URL: http://svn.apache.org/viewvc?rev=750557&view=rev
Log:
Last fixes for OLIO-33. Changed dbname, db user and db password to 'olio'

Modified:
    incubator/olio/workload/php/trunk/bin/dbloader.sh
    incubator/olio/workload/php/trunk/config/run.xml
    incubator/olio/workload/php/trunk/deploy/run.xml

Modified: incubator/olio/workload/php/trunk/bin/dbloader.sh
URL: http://svn.apache.org/viewvc/incubator/olio/workload/php/trunk/bin/dbloader.sh?rev=750557&r1=750556&r2=750557&view=diff
==============================================================================
--- incubator/olio/workload/php/trunk/bin/dbloader.sh (original)
+++ incubator/olio/workload/php/trunk/bin/dbloader.sh Thu Mar  5 19:21:58 2009
@@ -42,7 +42,7 @@
 export CLASSPATH
 
 $JAVA_HOME/bin/java -server org.apache.olio.workload.loader.LoadController com.mysql.jdbc.Driver \
-"jdbc:mysql://$DB_HOST/web20load?user=web20&password=web20&relaxAutoCommit=true&sessionVariables=FOREIGN_KEY_CHECKS=0" $SCALE
+"jdbc:mysql://$DB_HOST/olio?user=olio&password=olio&relaxAutoCommit=true&sessionVariables=FOREIGN_KEY_CHECKS=0" $SCALE
 EXIT_CODE=$?
 if [ "$EXIT_CODE" = 0 ] ; then
     echo "Database Load Successful"

Modified: incubator/olio/workload/php/trunk/config/run.xml
URL: http://svn.apache.org/viewvc/incubator/olio/workload/php/trunk/config/run.xml?rev=750557&r1=750556&r2=750557&view=diff
==============================================================================
--- incubator/olio/workload/php/trunk/config/run.xml (original)
+++ incubator/olio/workload/php/trunk/config/run.xml Thu Mar  5 19:21:58 2009
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <webBenchmark>
     <!-- The definition binds the config file with the benchmark class -->
-    <runConfig definition="com.sun.web20.driver.UIDriver">
+    <runConfig definition="org.apache.olio.workload.driver.UIDriver">
         <!-- The hostConfig section is used by the harness to control hosts -->
         <hostConfig>
             <host>brazilian.sfbay</host>
@@ -58,7 +58,7 @@
         </runtimeStats>
 
         <!-- The driver-specific config.  -->
-        <driverConfig name="Web20Driver">
+        <driverConfig name="OlioDriver">
             <!-- The number of agents -->
             <agents>3</agents>
             <!-- The stats interval, overrides the ones specified for

Modified: incubator/olio/workload/php/trunk/deploy/run.xml
URL: http://svn.apache.org/viewvc/incubator/olio/workload/php/trunk/deploy/run.xml?rev=750557&r1=750556&r2=750557&view=diff
==============================================================================
--- incubator/olio/workload/php/trunk/deploy/run.xml (original)
+++ incubator/olio/workload/php/trunk/deploy/run.xml Thu Mar  5 19:21:58 2009
@@ -77,7 +77,7 @@
             <userCommands/>
         </fa:hostConfig>
         <dbDriver>com.mysql.jdbc.Driver</dbDriver>
-        <connectURL>jdbc:mysql://localhost/web20load?user=web20&amp;password=web20&amp;relaxAutoCommit=true&amp;sessionVariables=FOREIGN_KEY_CHECKS=0</connectURL>
+        <connectURL>jdbc:mysql://localhost/olio?user=olio&amp;password=olio&amp;relaxAutoCommit=true&amp;sessionVariables=FOREIGN_KEY_CHECKS=0</connectURL>
         <autoCommit>true</autoCommit>
         <reloadDB>true</reloadDB>
         <scale>2000</scale>