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
1
vote
0 answers

Node.js - write EPIPE error when running multiple requests

I'm writing a static web server using Node's 'net' module, and I've had some troubles running stress tests on it. This is the code of the test itself: var http = require("http"); http.globalAgent.maxSockets = 100000; var numOfRequests = 1000; var…
Udi
  • 93
  • 1
  • 1
  • 7
1
vote
1 answer

Tsung cluster issues: can't start tsugn cluster

I'm asking this question because I tried the other solutions already posted here. I have a Tsung cluster I'm attempting to setup using EC2 instances. The security group for the EC2 boxes has already opened ports 0-65335. Master box: can ssh into…
1
vote
1 answer

Converting an ADT(Advantage) Table within Advantange Data Architect to a CSV

Currently, I am having the issue of converting a ADT database file to a CSV. It seems to error out with saying that there is written permissions, and space issues. This is not the case at all, and I have made sure neither one of these issues would…
Vash
  • 332
  • 3
  • 14
1
vote
1 answer

How can I specify a specific rate to my test?

I have a test plan with the following structure: SimpleController HTTP-Sampler-1 HTTP-Sampler-2 HTTP-Sampler-3 HTTP-Sampler-4 HTTP-Sampler-5 HTTP-Sampler-6 HTTP-Sampler-7 This…
Cratylus
  • 52,998
  • 69
  • 209
  • 339
1
vote
1 answer

Writing scripts in Jmeter to simulate http requests without using GUI

Is there a way to write scripts that simulate HTTP requests in JMeter. I know this can be done using the GUI, but is there a way to automate it using scripts?
r3x
  • 2,125
  • 5
  • 23
  • 39
1
vote
1 answer

Runtime or Transaction Controller or perhaps something else?

I have a series of requests I need to send to a server. E.g. Http-Request-1 Http-Request-2 Http-Request-3 Http-Request-4 Http-Request-5 Http-Request-6 Http-Request-7 I need to verify that these requests have been processed in e.g. 4…
Cratylus
  • 52,998
  • 69
  • 209
  • 339
1
vote
2 answers

Relation of thread vs controller in JMeter

I am looking into JMeter and trying to understand the concepts. Especially confusing to me is the Threads vs Controllers. I understand that a Thread represents a User and a Controller is a container for Samplers and determines their execution. But…
Cratylus
  • 52,998
  • 69
  • 209
  • 339
1
vote
1 answer

Performance testing using JMeter

I am writing a test in JMeter for our web app, but there is one page that loads and then makes an Ajax call using extjs libraries to load an additional piece, and I need to know when that piece loads. How should I go about doing this? can JMeter…
Irony
  • 317
  • 1
  • 3
  • 11
1
vote
1 answer

Selenium RC Jmeter C# LoadTesting

I am using a winforms application to do functional testing of java web applications hosted on a server. The whole application uses data driven testing, where i input the tests to be performed from an Excel and the application reads it and executes…
Aby
  • 43
  • 1
  • 1
  • 6
1
vote
2 answers

How do I make JMeter create simultaneous HTTP requests for a workflow?

I have a workflow that involves saving some data, and then updating it a few seconds later. I've created a CSV file with parameters like so: ID,Success 1,true 2,false 3,true 4,false 5,true And so on and so forth. The first HTTP request is to save a…
Daniel T.
  • 37,212
  • 36
  • 139
  • 206
1
vote
0 answers

how to add pref counters to System Under Test Resources (vs2012 load test)

I run a load test (vs2012). How can I add pref counters to the machine under test? In the load test summery I see a table with header: System Under Test Resources but I see no data in the table itself How can I set counter to the remote machine…
Elad Benda
  • 35,076
  • 87
  • 265
  • 471
1
vote
1 answer

Performance of web_reg_find vs strstr()

Which operation is fastest and creating less loading, LR web_reg_find() or C strstr()? Which is more preferable for a very strong loading test? And if somebody knows how web_reg_find() works, please tell me.
XanderR
  • 31
  • 3
1
vote
2 answers

Load testing with SOAP UI

I have a SOAP UI 4.5.1, I have made a load test, it is working fine. My problem is that I run the same request every time and I need to change the values of the soap request I am sending. For e.g. I have a block of my soap request:
Paulius Matulionis
  • 23,085
  • 22
  • 103
  • 143
1
vote
2 answers

Scheduling a visual studio load test using powershell giving me BSOD

I have a visual studio load test which I want to run every hour so that I can start to collect some data. To do this, I thought it would be best to make a little powershell script and put a command like this inside: Invoke-Expression -command "&…
user952342
  • 2,602
  • 7
  • 34
  • 54
1
vote
1 answer

How would I load the network adapters to test the PerformanceMonitor API?

I have a class which wraps various calls to PerformanceMonitor regarding the Network Interface statistics. I have run my tests while manually copying a large file to a shared drive to test calls which calculate the video on demand bandwidth,…
JD.
  • 15,171
  • 21
  • 86
  • 159
1 2 3
99
100