[jboss-svn-commits] JBL Code SVN: r32145 - in labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties: database/mysql/database-locations/co-located-db/resourceB and 4 other directories.
jboss-svn-commits at lists.jboss.org
jboss-svn-commits at lists.jboss.org
Fri Mar 19 05:55:18 EDT 2010
Author: whitingjr
Date: 2010-03-19 05:55:17 -0400 (Fri, 19 Mar 2010)
New Revision: 32145
Modified:
labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/database/mysql/database-locations/co-located-db/resourceA/connection.properties
labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/database/mysql/database-locations/co-located-db/resourceA/resource.properties
labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/database/mysql/database-locations/co-located-db/resourceB/connection.properties
labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/database/mysql/database-locations/co-located-db/resourceB/resource.properties
labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/database/postgresql/database-locations/co-located-db/resourceA/connection.properties
labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/database/postgresql/database-locations/co-located-db/resourceA/resource.properties
labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/database/postgresql/database-locations/co-located-db/resourceB/connection.properties
labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/database/postgresql/database-locations/co-located-db/resourceB/resource.properties
labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/database/postgresql/db-profile.properties
labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/jdbc-resource/local-tx/datasource.properties
Log:
Added configuration properties to define the port numbers.
Modified: labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/database/mysql/database-locations/co-located-db/resourceA/connection.properties
===================================================================
--- labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/database/mysql/database-locations/co-located-db/resourceA/connection.properties 2010-03-19 08:52:30 UTC (rev 32144)
+++ labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/database/mysql/database-locations/co-located-db/resourceA/connection.properties 2010-03-19 09:55:17 UTC (rev 32145)
@@ -1,9 +1,10 @@
# Resource A
-db-vendor-jdbc-connectionURL.A=jdbc:mysql://${db-vendor-jdbc-serverName.A}:3306/${db-vendor-jdbc-database.A}
-db-vendor-jdbc-userName.A=usrbert
-db-vendor-jdbc-password.A=u5rb3rt
+db-vendor-jdbc-connectionURL.A=jdbc:mysql://${db-vendor-jdbc-serverName.A}:${db-vendor-jdbc-serverPort.A}/${db-vendor-jdbc-database.A}
+db-vendor-jdbc-userName.A=usrmysql01
+db-vendor-jdbc-password.A=usrms01
# use filter chaining expandproperties to populate the connectionURL with the following host
db-vendor-jdbc-serverName.A=localhost
-db-vendor-jdbc-database.A=tsperf
+db-vendor-jdbc-serverPort.A=3306
+db-vendor-jdbc-database.A=dtf11
Modified: labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/database/mysql/database-locations/co-located-db/resourceA/resource.properties
===================================================================
--- labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/database/mysql/database-locations/co-located-db/resourceA/resource.properties 2010-03-19 08:52:30 UTC (rev 32144)
+++ labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/database/mysql/database-locations/co-located-db/resourceA/resource.properties 2010-03-19 09:55:17 UTC (rev 32145)
@@ -21,7 +21,7 @@
# class used to relax integrity constraint
db-vendor-constraint-class.A=${mysql.db-vendor-constraint-class}
-db-vendor-driver.configuration.xml.A=<entry><key>Url</key><value>${db-vendor-jdbc-connectionURL.A}</value></entry><entry><key>User</key><value>${db-vendor-jdbc-userName.A}</value></entry><entry><key>Password</key><value>${db-vendor-jdbc-password.A}</value></entry>
+db-vendor-driver.configuration.xml.A=<entry><key>Url</key><value>${db-vendor-jdbc-connectionURL.A}</value></entry><entry><key>User</key><value>${db-vendor-jdbc-userName.A}</value></entry><entry><key>Password</key><value>${db-vendor-jdbc-password.A}</value></entry><entry><key>Port</key><value>${db-vendor-jdbc-serverPort.A}</value></entry>
db.supports.xa.A=${mysql.db.supports.xa}
Modified: labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/database/mysql/database-locations/co-located-db/resourceB/connection.properties
===================================================================
--- labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/database/mysql/database-locations/co-located-db/resourceB/connection.properties 2010-03-19 08:52:30 UTC (rev 32144)
+++ labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/database/mysql/database-locations/co-located-db/resourceB/connection.properties 2010-03-19 09:55:17 UTC (rev 32145)
@@ -1,9 +1,10 @@
# Resource B
-db-vendor-jdbc-connectionURL.B=jdbc:mysql://${db-vendor-jdbc-serverName.B}:3306/${db-vendor-jdbc-database.B}
-db-vendor-jdbc-userName.B=usrbert
-db-vendor-jdbc-password.B=u5rb3rt
+db-vendor-jdbc-connectionURL.B=jdbc:mysql://${db-vendor-jdbc-serverName.B}:${db-vendor-jdbc-serverPort.B}/${db-vendor-jdbc-database.B}
+db-vendor-jdbc-userName.B=usrmysql02
+db-vendor-jdbc-password.B=usrms02
# use filter chaining expandproperties to populate the connectionURL with the following host
db-vendor-jdbc-serverName.B=localhost
-db-vendor-jdbc-database.B=tsperf2
+db-vendor-jdbc-serverPort.B=3316
+db-vendor-jdbc-database.B=dtf12
Modified: labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/database/mysql/database-locations/co-located-db/resourceB/resource.properties
===================================================================
--- labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/database/mysql/database-locations/co-located-db/resourceB/resource.properties 2010-03-19 08:52:30 UTC (rev 32144)
+++ labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/database/mysql/database-locations/co-located-db/resourceB/resource.properties 2010-03-19 09:55:17 UTC (rev 32145)
@@ -21,7 +21,7 @@
# class used to relax integrity constraint
db-vendor-constraint-class.B=${mysql.db-vendor-constraint-class}
-db-vendor-driver.configuration.xml.B=<entry><key>Url</key><value>${db-vendor-jdbc-connectionURL.B}</value></entry><entry><key>User</key><value>${db-vendor-jdbc-userName.B}</value></entry><entry><key>Password</key><value>${db-vendor-jdbc-password.B}</value></entry>
+db-vendor-driver.configuration.xml.B=<entry><key>Url</key><value>${db-vendor-jdbc-connectionURL.B}</value></entry><entry><key>User</key><value>${db-vendor-jdbc-userName.B}</value></entry><entry><key>Password</key><value>${db-vendor-jdbc-password.B}</value></entry><entry><key>Port</key><value>${db-vendor-jdbc-serverPort.B}</value></entry>
db.supports.xa.B=${mysql.db.supports.xa}
Modified: labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/database/postgresql/database-locations/co-located-db/resourceA/connection.properties
===================================================================
--- labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/database/postgresql/database-locations/co-located-db/resourceA/connection.properties 2010-03-19 08:52:30 UTC (rev 32144)
+++ labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/database/postgresql/database-locations/co-located-db/resourceA/connection.properties 2010-03-19 09:55:17 UTC (rev 32145)
@@ -1,9 +1,10 @@
# Resource A
-db-vendor-jdbc-connectionURL.A=jdbc:postgresql://${db-vendor-jdbc-serverName.A}/${db-vendor-jdbc-database.A}
+db-vendor-jdbc-connectionURL.A=jdbc:postgresql://${db-vendor-jdbc-serverName.A}:${db-vendor-jdbc-serverPort.A}/${db-vendor-jdbc-database.A}
db-vendor-jdbc-userName.A=usrpg01
db-vendor-jdbc-password.A=usrpg01
# use filter chaining expandproperties to populate the connectionURL with the following host
db-vendor-jdbc-serverName.A=localhost
+db-vendor-jdbc-serverPort.A=5432
db-vendor-jdbc-database.A=dtf11
Modified: labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/database/postgresql/database-locations/co-located-db/resourceA/resource.properties
===================================================================
--- labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/database/postgresql/database-locations/co-located-db/resourceA/resource.properties 2010-03-19 08:52:30 UTC (rev 32144)
+++ labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/database/postgresql/database-locations/co-located-db/resourceA/resource.properties 2010-03-19 09:55:17 UTC (rev 32145)
@@ -20,7 +20,7 @@
# class used to relax integrity constraint
db-vendor-constraint-class.A=${postgresql.db-vendor-constraint-class}
-db-vendor-driver.configuration.xml.A=<entry><key>ServerName</key><value>${db-vendor-jdbc-serverName.A}</value></entry><entry><key>DatabaseName</key><value>${db-vendor-jdbc-database.A}</value></entry><entry><key>User</key><value>${db-vendor-jdbc-userName.A}</value></entry><entry><key>Password</key><value>${db-vendor-jdbc-password.A}</value></entry>
+db-vendor-driver.configuration.xml.A=<entry><key>ServerName</key><value>${db-vendor-jdbc-serverName.A}</value></entry><entry><key>DatabaseName</key><value>${db-vendor-jdbc-database.A}</value></entry><entry><key>User</key><value>${db-vendor-jdbc-userName.A}</value></entry><entry><key>Password</key><value>${db-vendor-jdbc-password.A}</value></entry><entry><key>PortNumber</key><value>${db-vendor-jdbc-serverPort.A}</value></entry>
db.supports.xa.A=${postgresql.db.supports.xa}
Modified: labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/database/postgresql/database-locations/co-located-db/resourceB/connection.properties
===================================================================
--- labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/database/postgresql/database-locations/co-located-db/resourceB/connection.properties 2010-03-19 08:52:30 UTC (rev 32144)
+++ labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/database/postgresql/database-locations/co-located-db/resourceB/connection.properties 2010-03-19 09:55:17 UTC (rev 32145)
@@ -1,9 +1,10 @@
# Resource A
-db-vendor-jdbc-connectionURL.B=jdbc:postgresql://${db-vendor-jdbc-serverName.B}/${db-vendor-jdbc-database.B}
+db-vendor-jdbc-connectionURL.B=jdbc:postgresql://${db-vendor-jdbc-serverName.B}:${db-vendor-jdbc-serverPort.B}/${db-vendor-jdbc-database.B}
db-vendor-jdbc-userName.B=usrpg02
db-vendor-jdbc-password.B=usrpg02
# use filter chaining expandproperties to populate the connectionURL with the following host
db-vendor-jdbc-serverName.B=localhost
+db-vendor-jdbc-serverPort.B=5442
db-vendor-jdbc-database.B=dtf12
Modified: labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/database/postgresql/database-locations/co-located-db/resourceB/resource.properties
===================================================================
--- labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/database/postgresql/database-locations/co-located-db/resourceB/resource.properties 2010-03-19 08:52:30 UTC (rev 32144)
+++ labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/database/postgresql/database-locations/co-located-db/resourceB/resource.properties 2010-03-19 09:55:17 UTC (rev 32145)
@@ -20,7 +20,7 @@
# class used to relax integrity constraint
db-vendor-constraint-class.B=${postgresql.db-vendor-constraint-class}
-db-vendor-driver.configuration.xml.B=<entry><key>ServerName</key><value>${db-vendor-jdbc-serverName.B}</value></entry><entry><key>DatabaseName</key><value>${db-vendor-jdbc-database.B}</value></entry><entry><key>User</key><value>${db-vendor-jdbc-userName.B}</value></entry><entry><key>Password</key><value>${db-vendor-jdbc-password.B}</value></entry>
+db-vendor-driver.configuration.xml.B=<entry><key>ServerName</key><value>${db-vendor-jdbc-serverName.B}</value></entry><entry><key>DatabaseName</key><value>${db-vendor-jdbc-database.B}</value></entry><entry><key>User</key><value>${db-vendor-jdbc-userName.B}</value></entry><entry><key>Password</key><value>${db-vendor-jdbc-password.B}</value></entry><entry><key>PortNumber</key><value>${db-vendor-jdbc-serverPort.B}</value></entry>
db.supports.xa.B=${postgresql.db.supports.xa}
Modified: labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/database/postgresql/db-profile.properties
===================================================================
--- labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/database/postgresql/db-profile.properties 2010-03-19 08:52:30 UTC (rev 32144)
+++ labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/database/postgresql/db-profile.properties 2010-03-19 09:55:17 UTC (rev 32145)
@@ -29,4 +29,4 @@
postgresql.db-connection-background.interval=1000
postgresql.db-connection-background.validation=false
postgresql.db-connection-share.prepared.statements=true
-postgresql.db-connection-prepared.statement.cache.size=20
\ No newline at end of file
+postgresql.db-connection-prepared.statement.cache.size=20
Modified: labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/jdbc-resource/local-tx/datasource.properties
===================================================================
--- labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/jdbc-resource/local-tx/datasource.properties 2010-03-19 08:52:30 UTC (rev 32144)
+++ labs/jbosstm/workspace/whitingjr/trunk/performance/src/main/resources/properties/jdbc-resource/local-tx/datasource.properties 2010-03-19 09:55:17 UTC (rev 32145)
@@ -6,4 +6,4 @@
profiling.classes.test.framework=org.jboss.jbossts.performance.resource.SynchronizeTask,org.jboss.jbossts.performance.jdbc.JDBCTask,com.arjuna.ats.internal.jta.transaction.arjunacore.BaseTransaction,org.jboss.jbossts.performance.synchronization.SessionSynchronization,com.arjuna.ats.internal.arjuna.objectstore.FileSystemStore,com.arjuna.ats.internal.arjuna.objectstore.LogStore
#profiling.classes.test.framework=org.hibernate,org.jboss,com.arjuna
-user.last.resource.commit=true
\ No newline at end of file
+user.last.resource.commit=true
More information about the jboss-svn-commits
mailing list