Questions tagged [stress-testing]

Stress testing is a form of testing that is used to determine the stability of a given system or entity. It involves testing beyond normal operational capacity, often to a breaking point, in order to observe the results.

Stress testing is for ensuring fault tolerance capability of the application: it refers to tests that put a greater emphasis on robustness, availability and error handling under a heavy load, rather than on what would be considered correct behavior under normal circumstances.

Sometimes, as the load on the system increases the system throws errors or behaves unexpectedly. The stress test targets exactly this behavior. Determining that the software handles the load gracefully without crashing is the aim of this test. In particular, the goals of such testing may be to ensure the software does not crash in conditions of insufficient computational resources (such as memory or disk space), unusually high concurrency, or denial of service attacks.

703 questions
246
votes
30 answers

Performing a Stress Test on Web Application?

In the past, I used Microsoft Web Application Stress Tool and Pylot to stress test web applications. I'd written a simple home page, login script, and site walkthrough (in an ecommerce site adding a few items to a cart and checkout). Just hitting…
214
votes
9 answers

Best way to stress test a website

This may be the wrong question to ask but, what's the best way to replicate a large load on an asp.net web application? Is there an easy way to simulate many requests on particular pages? Or is the best thing to use a profiler to track a single…
Charlie Bear
  • 2,402
  • 3
  • 16
  • 16
188
votes
2 answers

Unexpected outcome of node.js vs ASP.NET Core performance test

I am doing a quick stress test on two (kinda) hello world projects written in node.js and asp.net-core. Both of them are running in production mode and without a logger attached to them. The result is astonishing! ASP.NET core is outperforming…
undefined
  • 2,631
  • 4
  • 21
  • 31
80
votes
8 answers

Load vs. Stress testing

What is the difference between load and stress testing?
Neeta
  • 3,306
  • 7
  • 32
  • 53
66
votes
6 answers

Testing with JMeter: how to run N requests per second

I need to test if our system can perform N requests per second. Technically, it's 2 requests to one API, 2 requests to another, and 6 requests to third one. But the important thing that they should happen simultaneously - so 10 requests per…
alexeypro
  • 3,393
  • 7
  • 34
  • 48
51
votes
5 answers

Running multiple Thread Groups sequentially in JMeter

I have a Test plan in which there are multiple Thread Groups. I want to run all of the Thread Groups sequentially. Thread Groups are as below: Thread Group1 Thread Group2 Thread Group3 . . . Thread GroupN I've read in different blogs and articles…
Just_another_developer
  • 4,907
  • 12
  • 41
  • 75
44
votes
3 answers

How to clear the results in Aggregate Report's table in JMeter automatically when executing the same test plan again?

So after executing a test run, I have the Aggregate Report's table filled with the data of the test plan that just finished running. Now, when I execute the test plan again, the results are getting added to this data in the Aggregate Report's table,…
Srikanth
  • 11,148
  • 20
  • 64
  • 87
42
votes
3 answers

Stress Testing ASP.Net application

what are different ways that we can do some optimum level of stress testing for asp.net application before moving it to the production environment ?
Vikram
  • 6,709
  • 8
  • 46
  • 58
37
votes
2 answers

NodeJs stress testing tools/methods

I've searched a lot about stress testing a NodeJs application/module but I didn't find anything. I have a push server application (something like socket.io) and I want to test it to ensuring there's no memory leaks and that it exhibits optimal…
Afshin Mehrabani
  • 28,405
  • 26
  • 117
  • 186
35
votes
4 answers

Is there tools for performance and load testing of REST service?

We have web-application with REST interface. Is there some tools to test it?
Max
  • 2,255
  • 4
  • 31
  • 48
32
votes
4 answers

Way to use locust.io by supplying user list

I need to stress-test a system and http://locust.io seems like the best way to go about this. However, it looks like it is set up to use the same user every time. I need each spawn to log in as a different user. How do I go about setting that up?…
jloosli
  • 1,903
  • 2
  • 18
  • 28
26
votes
5 answers

Is Nginx + php-fpm is suppose be much faster than Apache + mod-php

I'm having a PHP based web application running on Apache server which has considerable amount of php processing in back end. Since the overall performance is low I worked on improving the performance of the application. First I followed techniques…
Thilanka
  • 1,581
  • 5
  • 20
  • 34
25
votes
18 answers

Open source Tool for Stress, Load and Performance testing

Possible Duplicate: How do you stress test a web application? Currently I have configured a project with cc.net, watin and nunit and now I want to do stress, load, and performance testing of my .net projects. Any idea which opensource tool should…
sam
  • 4,388
  • 10
  • 56
  • 109
25
votes
7 answers

Best way to stress test a rails web app?

Are there any good (preferably free) tools out there? Can they give accurate estimates that reflect production results when the app goes live?
23
votes
6 answers

load test / stress test web services

Does anyone know of a good tool to test load and stress on webservices? I've been looking at Watir and Selenium, but there more web page centered.
Alonso
  • 1,039
  • 5
  • 12
  • 22
1
2 3
46 47