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
-1
votes
2 answers

Performance testing - analysing Graph results in Jmeter

Am new to Jmeter and iran the test successfully. Now I'd like to understand what the results mean and what is classed as good/bad measurements, and what can be suggested to improve the results. Below is a table of the results collated in the Summary…
-1
votes
2 answers

bash-control how many cpu/vm/io to stress

I have created a script to stress the cpu, vm and io of a virtual machine and write the results to a file. I have written the script in such a way that it will read user input for how long in seconds they would like to run each test. However, I have…
paul
  • 197
  • 1
  • 2
  • 12
-1
votes
1 answer

Jmeter load testing using single machine

If I test any website and put load on it using jmeter , where actually it puts load?? on my CPU? or on server? I mean to do load/stress testing of website using single machine give us actual strength/capacity of site? OR for that I need to configure…
Helping Hands
  • 5,292
  • 9
  • 60
  • 127
-1
votes
1 answer

Simulate multiple Post request

I have to simulate multiple Post requests, each post requests takes 3 parameters, first 2 are the documents we have to merge together and 3rd is the location where they will be placed, so the value is of type File. I have to do the load test for…
Prabhjot
  • 4,496
  • 2
  • 18
  • 22
-1
votes
4 answers

Is programming language compulsory for HP LoadRunner?

I am new to HP LoadRunner. Do I need to have great programming skills to use this tool? Or is it that I can manage this tool without havign to code or script? Am new to to this tool. Kindly clarify me.
-1
votes
2 answers

Tools to collect server information during load testing

I will be performing a distributed load test using JMeter. I am using the JMeter extras plugin to output some nice graphs but all of these graphs have to do with response times, response latency, throughput, etc. I want to also measure CPU, memory…
Ian Herbert
  • 1,071
  • 2
  • 16
  • 35
-1
votes
1 answer

Scalable web application architecture

I have a really simple bookshop webapplication written in Spring framework, just to test its scalability. I deployed this bookshop on one EC2 instance (t1.micro), and database on Amazon RDS (t1.micro) with master/slave replication of one master…
-1
votes
1 answer

Stress test tool similar to Apache AB, concurrent requests from multiple IP

I'm testing a web application using Apache AB; I love it but my web hosting service does not: if I increase the concurrency level over 30/40 I start getting 503 errors. The reason (according to the web hosting support) is that all the requests come…
Eugenio
  • 3,195
  • 5
  • 33
  • 49
-1
votes
1 answer

How to consume all memory?

For purpose of an academic project I want to create a simple program to hang a computer by consuming all available RAM. I tried creating a string and increase its length using a while loop like string=string+string2. I takes so much time when…
Rahul K
  • 665
  • 10
  • 25
-1
votes
2 answers

Scaling to support a massive amount of traffic in a short period of time

Until now, our site has had a modest amount of traffic. None of our developers are big ops guys, but we've stayed ahead of it and keep the site up and running pretty quick. That said, our dev team is stretched, we've accumulated some technical debt,…
-1
votes
4 answers

What is the purpose of distributed testing in Jmeter?

What is distributed testing in Jmeter? What is its actual purpose? I searched and read a lot about master/slave concept in Jmeter and I know how it can be done, but what is its use?
Just_another_developer
  • 5,737
  • 12
  • 50
  • 83
-1
votes
4 answers

Regular expression in While Controller Jmeter

I am using While Controller with Condition: ${_javaScript("${DONE}" ! = "Resolved and Downloaded";)} where initially DONE="Not Assigned yet". After few iterations DONE changes and has value Resolved and Downloaded (which I check in Debug Sampler)…
Just_another_developer
  • 5,737
  • 12
  • 50
  • 83
-1
votes
1 answer

Parsing FIX messages, stress testing

I am doing some stress testing on FIX message parsing on a GPU. What is a reasonable number of messages I should aim to parse per second? thanks
mfc
  • 3,018
  • 5
  • 31
  • 43
-2
votes
1 answer

What the missing part for my python stress test Algorithm?

Here's the code, The main problem is to test the algorithm with the naive method and my own method. def my_solution(numbers): n = len(numbers) index_1 = 1 for i in range(0,n): if numbers[i] > numbers[index_1]: index_1 = i if index_1 ==…
Leoucl
  • 1
-2
votes
1 answer

Is sending a successful GET request on a resource is like downloading the resource?

Good afternoon, I'm trying to simulate multiple users on my server (stress test + performance test). Real users click on a button which make them download a resource (generated PDF file). To simulate the same action, is it sufficient to send a GET…
Zoette
  • 1,241
  • 2
  • 18
  • 49
1 2 3
51
52