Hello all,
I’m using JMeter 2.11 but I’ve created a POC for Gatling 2 and I have to say that I’m very happy with Gatling 2.
I wanted to run the same tests from JMeter 2.11 and Gatling 2 in order to compare the results.
One example of my JMeter 2.11 config is:
users=200
rampup=0
duration=3600 seconds
I’ve tried to imitate the same config from Gatling 2, something like this:
setUp(scnSetUp.inject(atOnce(1)), scnParentConsent.inject(nothingFor(5),
rampRate(200) to (200) during (60 minutes))).protocols(httpConf)
Notes:
- I don’t need a ramp up period, I just want the same threads running for 60 minutes executing over and over the same simulation.
- I got a lot of errors from Gatling 2 and any not from Jmeter 2.11. Example: Remotely Closed [id=…] …
- setUp(scnSetUp.inject(atOnce(1)), scnParentConsent.inject(nothingFor(5), atOnce(200))).protocols(httpConf) works fine.
Question:
- Could you tell me if the set up that I’m using is the correct one?
- Could you tell me if there is something that I have to configure from Gatling config?
Thanks for your help.