Hi Gatling Team,
I am using Gatling to Performance Test for an application but i am facing few issues.
- The Setup have been designed for having 100 constant users but when i actually run the test the number of users is not what i gave, please find the sample code for setup mentioned below,
setUp(scn.inject((rampUsers(100) over (100 seconds)),constantUsersPerSec(200) during(600 seconds))).protocols(httpProtocol)
-
You can see the active users is going beyond 20K mark though i intended to keep it only 100 , kindly find it in the snapshot attached.
-
Few changes i have made is to increase the heap size allocation
set JAVA_OPTS=-server -XX:+UseThreadPriorities -XX:ThreadPriorityPolicy=42 -Xms512M -Xmx512M -Xmn100M
connectTimeout = 60000
pooledConnectionIdleTimeout = 60000
requestTimeout = 60000
for ref i have been reading the following
http://gatling.io/docs/2.1.7/quickstart.html#gatling-scenario-explained
- I am getting the following errors
java.net.ConnectException: No buffer space available (maximum connections reached?): connect
java.net.ConnectException: Connection timed out: no further information: /
Kindly let me know you suggestion,
Thanks in Advance