Replies: 1 comment
-
Hi @lauji2k19 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I am using NBomber V4.1.2 and facing an issue where the scenario is stopped before all steps are able to complete. I figure this is because the load test has several sequential requests and exceeds the scenario duration. We first make a sequence of 4 HTTP requests which take anywhere between 1-10 seconds each to respond. Then, the fifth step is asynchronous so we ping an endpoint every second for 2 minutes maximum. Here's a rough time estimate for each step:
The test is run with the load simulation:
Simulation.Inject(rate: 3, interval: TimeSpan.FromSeconds(1), during: TimeSpan.FromSeconds(15)
The goal of the test is to send 3 RPS for 15 seconds and see how long it takes for the system to complete the whole process and identify any bottlenecks, but I can't do this since the scenario ends before all steps execute. Is there a way to configure the test to only stop either if all iterations complete, or at a max cutoff, say, 10 minutes?
Beta Was this translation helpful? Give feedback.
All reactions