I am trying to send through enough load through to our RDS mysql database using jdbc-gatling but I am unable to get to more than 4 connections from a Macbook pro and not more than 8 connections from a Windows 7 machine.
Regardless of the number of concurrent users I spawn these are all the connections I can get to
Here below I set the connectionpoolsettings to go upto 200. But it has not helped
val settings = ConnectionPoolSettings(initialSize = 100, maxSize = 200)
val jdbcConfig = jdbc.url("jdbc:mysql://blah-blah-blah")
.username(dbusername) // TODO Change this to perpetual or on demand Authorization
.password(dbpassword)
.driver("com.mysql.cj.jdbc.Driver")
.connectionPoolSettings(settings)
.build
I am using the following versions of the various dependencies I am using
Hi,
I am trying to send through enough load through to our RDS mysql database using jdbc-gatling but I am unable to get to more than 4 connections from a Macbook pro and not more than 8 connections from a Windows 7 machine. Regardless of the number of concurrent users I spawn these are all the connections I can get to
Here below I set the connectionpoolsettings to go upto 200. But it has not helped
I am using the following versions of the various dependencies I am using