-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Working with long running user flows #386
Comments
Can I take a step back and ask why locust is the tool you chose in this case? The primary advantages of locust relate to high throughput systems with high concurrency. In general, this type of testing is used for stateless systems. If your target numbers are 20 concurrent users for a total of 100 user flows, that can be easily scripted with a single python script using threading. It also allows for cleanup as you describe (in something like a try-finally) block. |
Thanks @justiniso for taking time to reply. Just FYI did an assessment on locust and it was deemed not fit for use case at hand. For the reasons you highlighted above. Had to choose a different toolstack. |
Check out the |
This ticket is way old :) But yes, |
Yes it was more for future reference and other users than to answer to the original author 🙂 |
My use case is mostly with long running user flows (see hypothetical example to get the idea). The whole flow might take 15-20 minutes to execute.
The problems that I currently see are:
Any ideas?
The text was updated successfully, but these errors were encountered: