I had great success using Locust. It's extremely easy to write tests for, and you can use it both in CLI and WebUI mode. https://locust.io/. - Source: Hacker News / 17 days ago
There are tools that exist for this specific purpose, like Locust. - Source: Reddit / 17 days ago
I usually use Locust since it lets me write the load-test scenarios in the same language (Python) as the app. - Source: Reddit / 18 days ago
I've recently been using Locust to determine how much resources my machine needs. There are several articles online about load testing django with this tool, and the docs themselves are pretty good. May help you refine your needs. - Source: Reddit / 27 days ago
You can get fancier with tools like Locust (https://locust.io/). - Source: Reddit / about 1 month ago
We use locust to loadtest our C# microservice applications. It has really cool interface and reporting out of the box and you can also execute loadtest from cli / devops pipeline. Only thing is that you need to write loadtests in python. - Source: Reddit / about 2 months ago
Agreed with a lot of the points here, like starting small with a single piece of your API, then slowly expanding your tests once you’re comfortable that you know what you’re doing. Note that if you use the Locust framework to write your load tests in Python, it takes care of measuring and reporting the latency and throughput for you. It’s really nice. https://locust.io/. - Source: Hacker News / 6 months ago
For my application, to tune these parameters I used a load testing tool. I built a script using Locust. - Source: Reddit / 7 months ago
Out of all the performance testing tools I've used, I found locust to be the most useful. - Source: Reddit / 8 months ago
I used to use JMeter, till someone else on the team introduced me to locust, so check that out if you don’t mind doing some python: https://locust.io. There’s also gatling (scala based, but can be generated by a recorder or HAR files), https://gatling.io. - Source: Reddit / 8 months ago
You can pretend a small web app is a bigger one with load testing tools like locusts[0]. [0] https://locust.io/. - Source: Hacker News / 9 months ago
I’ve used Locust (https://locust.io/) which makes it easy to describe usage patterns and then spin up an arbitrary number of “users”. It provides a real-time web dashboard of the current state including counts of successful & failed requests. - Source: Hacker News / 9 months ago
Thanks! I currently run Pritunl on the cluster, but I could definitely host my resume on there as well. I could stand to learn tools like https://locust.io or Bees With Machines Guns as a load testing exercise for sure. I will dive into it! - Source: Reddit / 9 months ago
Personally, I prefer to rely on external testing — typically with Locust — for my benchmark numbers, and use instrumented metrics for other purposes. - Source: Reddit / 10 months ago
There are a bunch of load testing tools available that let you throw a bunch of requests at a server and see how it copes, my personal preference is locust.io. - Source: Reddit / 11 months ago
I am using Locust (python) to load test on a Django web app. I keep getting a 403 error when I run my script. - Source: Reddit / 11 months ago
Millions? Well... If you have hundreds, you can checkout django-silk and Locust, to improve performance. Other buzzwords are Kubernetes, Docker, Docker Swarm, Load Balancing. For Millions of User, you'll need a team. - Source: Reddit / 12 months ago
I used to use https://locust.io/ in a startup I've worked at. - Source: Reddit / about 1 year ago
Sounds like a good use case for load testing. Since it seems like you’re already comfortable with Python, you should be able to load test easily with Locust. - Source: Reddit / about 1 year ago
I was wondering if there are any de-facto standards for testing the setup configuration and performance. For example, I was wondering if there is a stress-test Django app (application-agnostic) which populates the DB with some test data, sets-up a few demo endpoints (e.g. One that does computation-intensive operations, one that does DB-intentesive operations, one that simply sleeps, etc.) that can be used in... - Source: Reddit / about 1 year ago
As for the backend/api testing, there are plenty of tools out there - I'd recommend using https://locust.io/, which is super easy to get started. - Source: Reddit / about 1 year ago
Do you know an article comparing locust to other products?
Suggest a link to a post with product alternatives.