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.

772 questions
0
votes
2 answers

SQLite3 performance testing with multiple processes

I have written a .dll that uses sqlite3. It has an insert function that performs inserts on the database. I also have a test executable that uses the dll to perform inserts. Right now I am testing sqlite and its ability to manage multiple…
ddoor
  • 5,819
  • 9
  • 34
  • 41
0
votes
1 answer

Simulating load with wireshark packet capture (not HTTP)

We have a production environment that is pretty heavily stressed, to the point that some connect requests are dropped. We've pushed the connection backlog up to 100 but are still seeing some issues with dropped connections (100 is well in excess of…
boatcoder
  • 17,525
  • 18
  • 114
  • 178
0
votes
3 answers

load testing as an idle web browser

I've been assigned the task of load-testing a web server that's hosting a new web app. I've pointed my browser to the application and ran Charles (or Fiddler - depending on OS) and watched to see what requests were being made and how often. What I'd…
Ramy
  • 20,541
  • 41
  • 103
  • 153
0
votes
1 answer

how to increase timeout in tornado

I'm trying tornado framework. But I found tornado frequently failed after 30 seconds in the stress test (using multi-mechanize). I use 10 threads in multi-mechanize and run for 100 seconds, around 500 requests / seconds. And it's around 15% failure…
Jimmy
  • 51
  • 1
  • 9
0
votes
4 answers

JMeter Load test

I want to load test a URL by hitting it few hundred times at same millisecond . I tried JMeter but I could hit 2 request at same millisecond. This seems to be problem that my machine cant create threads fast enough . Is there any solution to the…
Pit Digger
  • 9,618
  • 23
  • 78
  • 122
0
votes
0 answers

How do i stress test my webapp with a C# app?

Here is the code in a paste I'm using this code to stress test my server. I tried webpound X 1000 http://local_dev.com. The code appears to work and is fine. Its <100 lines and isn't hard to understand. In short it uses webclient to hit the site…
user34537
0
votes
1 answer

TinyGet and stress testing

I am trying to use TinyGet t stress test an application. I am running the following command: "C:\Program Files\IIS Resources\TinyGet\tinyget.exe" -srv:localhost -uri:/testwebsite/default.aspx -loop:10 It appears to work as there is no error…
w0051977
  • 15,099
  • 32
  • 152
  • 329
0
votes
1 answer

Logging in grinder

I am testing a webapp, i want to log all http request and response, how do i do that? I am just writing log = grinder.logger.info def page15(self): """GET COPSApp (request 1501).""" result =…
Arvind
  • 1,207
  • 6
  • 27
  • 55
0
votes
3 answers

Collect stress test data in openstack

i've installed openstack essex edition in a single-node, using stackops. For my thesis, i have to do some test on the performance of openstack. I need a stress test to test openstack system and an application that's can represent these test with…
0
votes
1 answer

Stress testing a web service. .Net framework

I am currently trying to stress a web service based on the .Net framework, so I would appreciate it if you could provide me with some of the tools that are compatible with the .Net framework and your reviews regarding them. I was reading about the…
NZal
  • 849
  • 3
  • 9
  • 19
0
votes
2 answers

looking for automatic stress tests framework

I have a application that is deployed on tomcat container. I'm running the jmeter load (x threads with HttpRequests). then I'm looking on TPS, latencies, cpu, and memory (through jmx). I'm looking for a automatic way to do all this, and may be…
Julias
  • 5,752
  • 17
  • 59
  • 84
0
votes
0 answers

A Load/Stress test gets down my ASP.net MVC 4 in IIS7

I have a web site in a production server with its own application pool. The web server is IIS7 and the tech is ASP.net MVC4. SQL Server Express 2012 for the database queries. I have made a load/stress test o know the response times. The tool i have…
0
votes
3 answers

Load testing using Visual Studio 2008 : troubles with analyzing results

I use Visual Studio Team System 2008 Team Suite for load testing of my Web-application (it uses ASP.MVC technology). Load pattern:Constant (this means I have constant amount of virtual users all the time). I specify coniguratiton of 1000 users to…
Sasha Vlasova
0
votes
2 answers

Load testing a ec2 Node.js machine - Now... how do I remotely load test 6500 QPS?

Ok, I have my server built on ec2. My stack is Nginx as a load balancer, supervisord for managing processes for node.js i.e. one process for each cpu, and redis, master and slave on separate boxes. I have stress tested by testing failover and…
Tampa
  • 75,446
  • 119
  • 278
  • 425
0
votes
1 answer

How to stress test ext3 partition on android?

I've had several errors in kernel logs on device boot after all partitions were mounted. ext3_free_blocks_sb: bit already cleared for block ###### After searching I've discovered that a bugfix for the same issue was already integrated in the…
Andrey Ermakov
  • 3,298
  • 1
  • 25
  • 46