You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm trying to execute a Simulation which contains 13 scenarios.
Firstly, I executed the test with 2 simulations, and everything worked as expected, but as soon as I tried to merge the 2 simulations into one, gatling won't start the test.
When I try to launch up to 7 scenarios in the setUp(), it works.
As soon as I put an 8th scenario in the setUp(), gatling stays pending and the simulation never starts.
No logs are written, even if DEBUG mode is enabled in logback.xml
I have to kill the process to make it end.
Below some informations about the code:
setUp(
scnUpdateOMSSendToWorkingOrder.inject(constantUsersPerSec(1) during (60)),
scnIncorrectOMSSendToOrcDeadletter.inject(constantUsersPerSec(1) during (60)),
scnOMSWithoutPrepItemSendToWorkingOrder.inject(constantUsersPerSec(1) during (60)),
scnOMSWithPrepItemSendToWorkingOrder.inject(constantUsersPerSec(1) during (60)),
scnTryToSendMailWithoutFSID.inject(constantUsersPerSec(1) during (60)),
scnReceivedSPLSendConfirmMail.inject(constantUsersPerSec(1) during (60)),
scnSPLCancelMail.inject(constantUsersPerSec(1) during (60)),
scnMetiSplClkOrderSendToMetiOMS.inject(constantUsersPerSec(1) during (60)),
scnMetiSplClkOrderSendToMetiOMSWithDiscount.inject(constantUsersPerSec(1) during (60)),
scnMetiRF604Cancel.inject(constantUsersPerSec(1) during (60)),
scnMetiRF604Ready.inject(constantUsersPerSec(1) during (60)),
scnMetiRF604Prepared.inject(constantUsersPerSec(1) during (60)),
scnMetiRF604IncorrectToDLQ.inject(constantUsersPerSec(1) during (60))
).protocols(amqpConf)
.assertions(
forAll.successfulRequests.percent.gt(90),
forAll.responseTime.percentile3.lte(200)
)
All these scenarios are base on the function below:
The order is not important. I notice it's not executed when it exceeds 7 scenarios only. When I split the scenarios into 2 separate simulation classes, it works ! The two simulations are executed sequentially, but this is not what I want. I want them to be grouped in the same report.
Hello,
I'm trying to execute a Simulation which contains 13 scenarios.
Firstly, I executed the test with 2 simulations, and everything worked as expected, but as soon as I tried to merge the 2 simulations into one, gatling won't start the test.
When I try to launch up to 7 scenarios in the setUp(), it works.
As soon as I put an 8th scenario in the setUp(), gatling stays pending and the simulation never starts.
No logs are written, even if DEBUG mode is enabled in logback.xml
I have to kill the process to make it end.
Below some informations about the code:
All these scenarios are base on the function below:
Here is the connection configuration:
Any help would be great. Thank you in advance.
Terry
The text was updated successfully, but these errors were encountered: