Questions tagged [load-testing]

Load Testing: A type of performance testing conducted to evaluate the behavior of a component or system with increasing load, e.g. numbers of parallel users and/or numbers of transactions, to determine what load can be handled by the component or system.

As per wikipedia:

Load testing is the process of putting demand on a system or device and measuring its response.

Load testing is performed to determine a system’s behavior under both normal and anticipated peak load conditions. It helps to identify the maximum operating capacity of an application as well as any bottlenecks and determine which element is causing degradation.

3347 questions
26
votes
5 answers

Load testing WCF service (hosted on IIS)

What tools are there that I can test out a WCF service? I am expecting allot of load so I want to have an idea how much a single server can handle.
Anonymous Box
25
votes
8 answers

web server Load testing tool

Can you suggest a software tool (with GPLv license) to perform load testing for a Web server?
rak
  • 251
  • 1
  • 4
  • 4
25
votes
2 answers

In Jmeter, What would be syntax of parameters in Body Data section of HTTP Request Sampler, if I am using Rest APIs and taking input from CSV files?

I am trying to create 10 users at the same time in Jmeter, using REST APIs. Test Data i.e. input is taken from CSV files (The details of users like user name, last name , mobile) For this I have added one thread group,User Defined Variable,HTTP…
abhishek
  • 325
  • 1
  • 9
  • 19
24
votes
4 answers

Getting AddressFilter mismatch at the EndpointDispatcher in SOAPUI request

My service is running fine If I use it via my client application. I am using same wsdl to load in SOAPUI. It has successfully created sample tests for each method. I want to send a request and it should generate response accordingly. I can see the…
sam
  • 4,594
  • 12
  • 61
  • 111
24
votes
2 answers

How to perform load testing using Selenium WebDriver?

I have to perform the load testing the application using Selenium WebDriver for 100 users. 100 users login and hit the server at a time. How to do this process using Selenium WebDriver?
tsr_qa
  • 633
  • 3
  • 9
  • 27
24
votes
7 answers

How to benchmark php/mysql site

I would like to know how to benchmark a php/mysql site. We have a web app almost completed and ready to go live, we know how many people are going to be using it in a years time but have absolutely no idea how much bandwidth the average user takes,…
user103219
  • 3,209
  • 11
  • 39
  • 50
23
votes
1 answer

How to perform load testing for website using JMeter

I want to create a script in JMeter that simulates e.g. 100 users accessing our site over a period of 3-4 minutes. We need to test whether our application can allow 25.000 users/day - that is 1.100 per hour. For that i have made this Jmeter…
junaidp
  • 10,801
  • 29
  • 89
  • 137
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,069
  • 5
  • 12
  • 22
23
votes
6 answers

Locust : How to make locust run for a specific amount of time

official locustio documentation tells about how to write simple locust tasks which run indefinitely. Couldn't find out how to run load which lasts for a specific amount of time, so that the test will automatically stop after the specified…
binithb
  • 1,910
  • 4
  • 23
  • 44
21
votes
1 answer

Performance Test of the Hyperledger Fabric

During trying to achieve the performance with Hyperledger Fabric which IBM team reported in their article Hyperledger Fabric: A Distributed Operating System for Permissioned Blockchains, I faced some problems and errors. I collected all useful…
21
votes
5 answers

How to measure CPU and memory during load test

We are using JMeter in a heterogeneous environment and we would like to measure CPU and memory while we are producing heavy load on a server where our service or web application is running. What would you recommend to use? Is there any software…
Thomas
  • 8,357
  • 15
  • 45
  • 81
21
votes
4 answers

How to save response in a variable in jmeter

I am performing load testing on my server using jmeter. In one of my post requests, I receive a unique id in the response. I need to send this id as a parameter in the following post requests. I am new to jmeter and don't have any idea how to do…
Sid
  • 435
  • 4
  • 9
  • 19
19
votes
2 answers

How to test performance / load of a modern angular application

I want to load / performance test a web application which uses angular 6+ as the frontend-framework. The application is quite big and uses lots of wizards / modals etc. I want to do some "real" e2e-frontend-tests (not just testing API-calls, but…
18
votes
7 answers

Build executable JAR for Gatling load test

I am new to Gatling (2.1.2) and want to do a small prototype project to show to my colleagues. According to the quick start page, there are several ways I can run a simulation with Gatling: decompress the Gatling bundle into a folder and drop my…
stackoverflower
  • 3,885
  • 10
  • 47
  • 71
18
votes
3 answers

Can I set multiple headers with Siege?

I want to use siege to target a number of URLs on my app, each with different headers. I can set headers for one request siege -u http://localhost/xyz -d1 -r1000 -c25 --header="Token: f2840fc1" (this appears to be undocumented) I can specify a list…
Joe
  • 46,419
  • 33
  • 155
  • 245