Jmeter master-slave's issues - jmeter

I am facing a problem in master-slave mode, we have a own jar to create some files after test, but when we run the test in master-slave mode, each slave will create one file, but we only need a summary file in master.
is there a way can instead of master-slave mode, let us use one jmeter server to test 2000~5000 threads? or change some setting to make the files only create in master?

JMeter simply executes the same test in the all the slaves. So, all the slaves will try to create the file as you had described if the test is designed to do that.
You could probably use a If Controller for a specific machine to do that.
If Controller ["master"=="${__machineName}"]
logic to create the file

I am facing a problem in master-slave mode, we have a own jar to
create some files after test, but when we run the test in master-slave
mode, each slave will create one file, but we only need a summary file
in master.
Since all the slaves can access the master machine, you can create a common shared file where in the slaves can make their entries based on the data that they have received. This can be done in 2 ways:
You can use a JSR223 sampler or a Beanshell sampler to write files to a common location thereby having just one master copy of the file
You can modify the JAR that you are utilizing right now to do the same work
is there a way can instead of master-slave mode, let us use one jmeter
server to test 2000~5000 threads? or change some setting to make the
files only create in master?
No. This is currently not a feasible option since the JAR that has been uploaded will be applicable on all the slave machines and hence will create multiple copies of the file.
Besides, if your master machine could generate 2000-5000 threads, I don't think you would have gone for a distributed load test in the first place.
Hope this helps!

Related

Jmeter- no results obtained using jmeter distributed system

Im running Jmeter test with one master machine and slave system. The issue is Im not getting the results from the slave system, even though I could see the test has started and finished in slave system.
I tried running another Jmeter test with a different script & same configuration and fortunately Im able to get the results from the slave system.
Im not able to understand why the first scenario is not working and where exactly is the issue. Kindly help me out.
From your screenshots I can only state that the test didn't produce a single SampleResult because it didn't execute any Sampler, the most common reasons are:
Your test is using CSV Data Set Config and you forgot to copy the CSV file on slave machines. JMeter master only transfers the .jmx test plan to slaves, everything else needs to be copied manually
Basically a subset of point 1: your test plan relies on a JMeter Plugin which is not present on the slaves. If this is the case - install the missing plugin(s) using the JMeter Plugins Manager
The exact failure reason can be found in jmeter.log file on master machine and jmeter-server.log files on slave machines.

JMeter distributed testing does not return results

I have connect my PC as master to other PCs and I run the distributed test but all I get is an empty jtl file with only the headers of a table..
What is the problem?
We don't know.
From your beautiful screenshot we can only see that 0 samplers were executed which perfectly explains empty results.
Check jmeter.log file for jmeter master and slave, most probably you will find the reason there.
The most common reasons are:
Incorrect RMI configuration so there is no bi-directional communication between the master and slaves
Your test relies on external data, i.e. uses CSV Data Set Config and you forgot to copy the CSV file(s) to slave machine(s)
Your test relies on JMeter Plugins and you forgot to install JMeter Plugins on the slave machine(s), you can install JMeter Plugins Manager and open the .jmx test plan on the slave - the plugins manager should detect and install at least the majority of the plugins used in the script

Can JMeter Slave and Master be on different platforms?

I am trying to do a POC with JMeter master on my Windows laptop and slave on one of the remote machines which is Linux based. Is this feasible? If yes, where should the JMeter directory be copied? Root or somewhere else?
If this is not possible and assuming I manage to get two linux machines (one master and one slave), the main question remains - where should the JMeter directory be placed?
Any pointers will be appreciated.
Thanks
Basically Jmeter's master-slave connection is build based on RMI and it is only possible if two of them on the same subnet. However there are several techniques to make it possible, one of them is tunneling.
It should be okayish given your test is operating-system-agnostic, i.e. you use relative paths, dynamic file/line separators, etc.
JMeter master machine is only responsible for:
Sending the .jmx test script to the slaves
Starting the test execution
Collecting results from them
Just remember to:
Use the same Java version
Use the same JMeter version
Make sure that all plugins are installed on the slaves if your test relies on the plugins
Make sure to copy all dependent files (extra .jar files, CSV files, properties, etc.)
With regards to the JMeter placement on Linux - it's totally up to you, just make sure that your Linux user has read/write/execute permissions on that folder, normally I would go for /opt or /usr/local folders and would rather not install JMeter into the root of the file system.
More information: How to Perform Distributed Testing in JMeter

JMeter Slave Reporting in Distributed Testing

I am performing distributed testing using JMeter and getting collective result of all slaves on Master JMeter GUI.
Please let me know if it is possible to capture separate reports for each slave?
For example, I have configured 2 Slaves + 1 Master JMeter. On executing the test, I would like capture separate report of each slave.
Thanks!!
You can get per-slave results as follows:
Add a Listener or your choice to Test Plan
Specify Filename in "Write results to file" section and choose what you need to store via "Configure" button
Once test finishes you'll have to collect result files from slave machines
Be aware that:
By default not everything can be stored, i.e. response data is being removed form successful samples
Listeners have their cost. See Greedy Listeners - Memory Leeches of Performance Testing to get an idea regarding impact and why it is better to have them off during load test.
For your case, don't use distributed testing, just launch 1 separate JMeter per slave machine.

In Jmeter distributed (remote) testing, is it possible to store results file on remote server?

I was using non-GUI option to perform a distributed load testing with Jmeter from master server A (Linux) to slave server B (Linux). Here's what I did:
./jmeter -n -t xxx.jmx -l results.log -R xxx.xxx.xxx.xxx
By default, Jmeter will write the results file to the master server A. I'm wondering if there's a way to directly store the results file on remote server B.
Thanks in advance!
The idea is they are dumb slaves, possibly without even the means to store data locally. The methods are invoked on a remote processor (RMI) and run from there, but all other resources are kept at the client side.
You could set up a CI server like Jenkins to run jmeter clients in a distributed manner. That will allow you more control over how tests are distributed. I have a jenkins set up that runs jmeter client on a master, with distributed tests to remote (jmeter) slaves, which are also jenkins slaves, tied to jobs that control the workspaces. This means they are never used by jenkins, but jenkins can get results files out of the workspace, aggregate them, and produce graphs using jmeter plugins CMDrunner.
The other possibility is to prefix your sample results with the unique part of the IP address of the current slave. This will allow you to display them aggregated or separately in your results viewer, and potentially write scripts to separate the results out and store them back on the slave they came from.
You could also use samba or similar to share the remote slave drive, and store the results directly there from the master.
If you have only one slave, any of these would be easy to implement, but get more complex as you add more slaves.
Look at sample sender alternative implementations.
Read the concerned paragraph here:
http://jmeter.apache.org/usermanual/remote-test.html
Natively it works like this, an option is not to use distributed mode and run many jmeter instances in non gui mode.
Try jmeter user mailing list and if you don't get an answer maybe open a bugzilla enhancement request.
If you want to build distributed load testing system you can try use Jagger

Resources