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
1 answer

tool to stress test a classic asp web app

I'm looking for an open source tool to stress test a classic asp web application I think it should be something like several selenium tests to be run concurrently... The application works with a sql database, and it has a public (usernam and…
opensas
  • 60,462
  • 79
  • 252
  • 386
0
votes
2 answers

Stress test our store's checkout process

I want to simulate our whole checkout process under load. This essentially involves running a number of POSTs in sequence, where the client is storing a unique cookie for each sequence that allows the session to be preserved. Can anyone recommend…
weotch
  • 5,788
  • 6
  • 35
  • 42
-1
votes
1 answer

Facebook application load and performance testing

So I've hit a bit of a dilemma with my application load testing. My application relies on valid Facebook logins as I create shadow records that correspond to the users who log in. How can I load test my application while using Facebook calls (rather…
-1
votes
1 answer

I can not exceed 28233 websocket connection on my localhost (for stress test) | Go Client (Gorilla)

I am trying to make pool of client which connect to the same websocket server (Go Server), in order to test performance and the ability to handle coming request. I was wondering how I can reach 100K client for example, because I see when I reach…
Hachour Fouad
  • 52
  • 1
  • 6
-1
votes
2 answers

How to add load test with multiple user with auth header value in Jemeter?

I am came to this step, but always getting first users request in my API
-1
votes
2 answers

MySQL is utilizing 500% of the CPU and causing the website to slow down

I have a virtual machine with 64 vCPUs and 256GB of memory. Recently, I decided to perform some stress tests on the website that is running on this virtual machine. The entire VM is only for this website. The first test I ran was with 20,000 users…
-1
votes
1 answer

How to Capture the API's ?if API's have no end points and just showing baseUrls

I need help or any suggestion. I have no idea how to do it? Request URL: https://www.vizofly.com/NTU/Stress/StreamingAssets/Schools.json Request Method: GET Status Code: 200 (from disk cache) Remote Address: 172.66.43.59:443 Referrer Policy:…
GHULAM NABI
  • 498
  • 5
  • 15
-1
votes
1 answer

Which is better, to start from higher load and reduce , or to gradually increase the load during stress test

For stress test, which is the better approach- to start from higher load and reduce , or to gradually increase the load? I have seen that if we start from a very high load, already the damage would be made and that will have repercussions on the low…
-1
votes
1 answer

Stressing the memory of linux server

I used the stress command to stress the CPU of the Linux server(CentOS). Following is the command used. sudo stress --cpu 4 --timeout 3600 Also I want to do the stress test for the Server memory using such a bash command. The answer here is not…
ARCX
  • 57
  • 2
  • 10
-1
votes
2 answers

Server Throughput definition ambiguity

Is throughput the max number of requests a server instance can handle or is it the number of requests that the server instance is currently handling? Edit: By "currently handling" I mean, the number of requests the server is receiving for a given…
user3760100
  • 679
  • 1
  • 9
  • 20
-1
votes
1 answer

How do you properly use Inventor's stress analysis software to find torsional displacement in an assembly?

I have been using the stress analysis environment in Autodesk Inventor to find the torsional displacement of a chassis I have been constructing. I have made an assembly of the parts using strictly mates, both face to face and flush mates. I now have…
-1
votes
1 answer

Is it possible to simulate abrupt restarts of a java application without killing the jvm?

I want to stress test application resilience and verify the data is consistent given frequent power shutdowns. As the goal is to test persistent state only the app itself is technically not required to be stopped immediately e.g. if there is a way…
kassie
  • 727
  • 4
  • 11
  • 24
-1
votes
1 answer

Increase Gatling requests in load test via increase in users?

class myTest extends Simulation { val headers = Map("Authorization" -> "longAuthHeader") val httpProtocol = http .baseUrl("http://baseurl.com:8000") .headers(headers) val scn = scenario("Scenario Name") .exec(http("request") …
Zeruno
  • 1,391
  • 2
  • 20
  • 39
-1
votes
3 answers

How to stress test my page

I would like to test my web app under high load. What I'd need to do is. Load the page => click the button => fill the form => click the button. I'd need to do this to simulate 5-10k page requests, which is expected to happen after we launch one…
Bruno Laurinec
  • 910
  • 2
  • 11
  • 27
-1
votes
1 answer

Python tool to stress python web app

I need a python tool to stress a web application built in python. In summary, the application receives request as text or text files sent by customers and returns the results. What I need is to simulate these requests simultaneously. Maybe 10, 20,…
Firefly
  • 449
  • 5
  • 20