HTTP Load testing with JMeter
In previous post I wrote that for high availability load balancing with HAProxy and CARP on FreeBSD I used JMeter as a testing tool. In this post I will show some basics and how to use it for HTTP load testing. JMeter is an Java application that can be used to simulate a heavy load on a server to test its strength or to analyze overall performance under different load types. For full set of features please visit official site here.
One thing you should know as this tool is not a browser. That means JMeter does not perform all the actions supported by browsers and also it can’t run JavaScript or Flash. It is a desktop application that can be run on Windows or any other operating system. So please go here and download it first. After extracting if you are Windows user run “bin/jmeter.bat”. You will get bellow screen:

In this post I will describe how to setup most basic load test plan in JMeter. Basically with load testing you want to answer on two questions:
- Can your application support expected number of users?
- At what load does the application break?
So to get started first you need to add a thread group (users):

Now go to thread group you added and define:
- Number of users
- Ramp-Up period (time between user group will hit the requests)
- Loop count (how many times to run this thread)
Next you need to add sampler (HTTP request) to this group:

Once you added HTTP request sampler you will see a lot of options. At the moment pay attention to those:
- Server Name or IP
- Path
When you define this, test is basically ready, but we need some reporting. In JMeter that component we call Listener. So go to test plan and add one listener:

Your results will be shown here with all request and response details. To run test do: Ctrl + R. You can follow status in real time if you go to View Results Tree. When it’s finished you can rerun it by Ctrl + E to clean old results and Ctrl + R to run it again. At the end you will get something like this:

As I said at beginning this is the most basic HTTP load testing plan, JMteter is far away from that and to be able to create more realistic test cases you will need to learn more advanced options that are available. I Highly recommend this tool for any kind of testing. Also the tool can be easily extended through custom plugins.
Set of JMeter extensions developed by AtlantBH currently includes:- OAuth Sampler
- REST Sampler
- JMS Tools (Java Request Sampler)
- JSON to XML Converter
- XML Format Post-processor
- HDFS Operations Sampler
- HBase Scan Sampler
- HBase RowKey Sampler
- Hadoop Job Tracker Sampler
- HBase CRUD Sampler
- JSON utils (JSON Path Assertion, JSON Path Extractor, JSON Formatter)
(Note: Opinions expressed in this article and its replies are the opinions of their respective authors and not those of DZone, Inc.)






Comments
Kenneth Mark replied on Wed, 2013/01/16 - 10:57pm
Good tutorial !
Sree Chm replied on Wed, 2013/01/23 - 9:23am
Excellent
Jeff Benton replied on Wed, 2013/01/23 - 9:47am
The link to download jmeter is incorrect. "http://www.bizdirusa.com/mirrors/apache//jmeter/binaries/apache-jmeter-2.8.ziphttp://" it should be "http://www.bizdirusa.com/mirrors/apache//jmeter/binaries/apache-jmeter-2.8.zip"
Olivier Dupré replied on Wed, 2013/01/23 - 11:06am
Hummmm... I was expecting much more details and explanations.
I know pretty well JMeter, and this tool can do much more than what is slightly shown here.
From my point of view this is more a brief paper on JMeter to let everyone knows that the tool exists, than a tutorial or an explanation on "how to do a load test with JMeter".
Where do you interpret results? How to use them? Understand them? How to really do a load test? I mean, not just with one page, recording a script with JMeter, using several different users (meaning several different sessions) to run the test, defining an accurate load test (you defined 2 different test cases, through 2 different questions : how do you address each? Depending on the app needs, what ramp up? What targets? etc...
Well, you understood, I'm a bit disappointed by this paper...
Yogs Figure replied on Wed, 2013/01/23 - 11:52am
This is nice. I had tried JMeter previously so this was kind of refresher.