|
|
|
|
|
by yeraydarias
3497 days ago
|
|
We made some stress tests in the past and it is quite useful. We did it with Gatling (a very known tool in the Java world) in some of our local machines requesting our machines in Amazon EC2. As it was commented previously, the test depends on various points, to tell a few:
* Do you want to test a complete web or just a few services?
* The speed of your system depends on the number of instances or there are other points to look like the database connection?
* Do you want to test vertical scale or you want to know about the horizontal scaling too? We did the tests mainly to know the "breaking point" of our database that was our "weakest link". Anyway, stress tests are quite useful and give you an idea about how much your system can scale and helps to detect where to improve code before expending too much money in servers. |
|