Apache JMeter is a popular open source software used as a load testing tool for analyzing and measuring the performance of web application or multitude of services. It is 100% pure Java application, designed to test performance both on static and dynamic resources and web dynamic applications. It simulates a heavy load on one or multitude of servers, network or object to test its strength/capability or to analyze overall performance under different load types. The various applications/server/protocol includes – HTTP, HTTPS (Java, NodeJS, PHP, ASP.NET), SOAP / REST Web services, FTP,Database via JDBC, LDAP, Message-oriented middleware (MOM) via JMS,Mail – SMTP(S), POP3(S) and IMAP(S), native commands or shell scripts, TCP, Java Objects and many more.
What Docker has to offer for Apache JMeter?
Good Question ! With every new installation of Apache JMeter, you need to download/install JMeter on every new node participating in Distributed Load Testing. Installing JMeter requires dependencies to be installed first like JAVA, default-jre-headless, iputils etc. The complexity begins when you have multitude OS distributions running on your infrastructure. You can always use automation tools or scripts to enable this solution but again there is an extra cost of maintenance and skills required to troubleshoot with the logs when something goes wrong in the middle of the testing.
With Docker, it is just a matter of 1 Docker Compose file and an one-liner command to get the entire infrastructure ready. Under this blog, I am going to show how a single Docker Compose v3.1 file format can help you setup the entire JMeter Distributed Load Testing tool – all working on Docker 17.03 Swarm Mode cluster.
I will leverage 4-node Docker 17.04 Swarm Cluster running on my Google Cloud Engine platform to showcase this solution as shown below:
Under this setup, I will be using instance “master101” as master/client node while the rest of worker nodes as “server/slaves” nodes. All of these instances are running Ubuntu 17.04 with Docker 17.03 installed. You are free to choose any latest Linux distributions which supports Docker executables.
First, let us ensure that you have the latest Docker 17.03 running on your machine:
$curl -sSL https://get.docker.com/ | sh
Ensure that the latest Docker compose is installed which supports v3.0 file format:
$curl -L https://github.com/docker/compose/releases/download/1.11.2/docker-compose-`uname -s`-`uname -m` > /usr/local /bin/docker-compose $chmod +x /usr/local/bin/docker-compose
Docker Compose for Apache JMeter Distributed Load Testing
One can use docker stack deploy
command to quickly setup JMeter Distributed Testing environment. This command requires docker-compose.yml file which holds the declaration of services (apache-jmeter-master and apache-jmeter-server) respectively. Let us clone the repository as shown below to get started –
Run the below commands on the Swarm Master node –
$git clone https://github.com/ajeetraina/jmeter-docker/
$cd jmeter-docker
Under this directory, you will find docker-compose.yml file which is shown below:
In the above docker-compose.yml, there are two service definitions – master and server. Through this docker compose file format, we can push master/client service definition to the master node and server specific service definition which has to be pushed to all the slave nodes. The constraints sections takes care of this functionality. This compose file will automatically create an overlay network called jm-network across the cluster.
Let us start the required services out of the docker-compose file as shown below:
$sudo docker stack deploy -c docker-compose.yml myjmeter
Checking if the services are up and running through docker service ls
command:
Let us verify if constraints worked correctly or not as shown below:
As shown above, the constraints worked well pushing the containers to the right node.
It’s time to enter into one of the container running on the master node as shown below:
Using docker exec
command, one can enter into the container and browse to /jmeter/apache-jmeter-3.1/bin directory.
Pushing the JMX file into the container
$docker exec -i <container-running-on-master-node> sh -c 'cat > /jmeter/apache-jmeter-3.1/bin/jmeter-docker.jmx' < jmeter-docker.jmx
Starting the Load testing
$docker exec -it <container-on-master-node> bash
root@daf39e596b93:/#cd /jmeter/apache-jmeter-3.1/bin
$./jmeter -n -t jmeter-docker.jmx -R<list of containers running on slave nodes seperated by commas)
Planning to move from Apache JMeter running on VMs to Containers??
This is very important topic which I don’t want to miss out , though we are at the end of this blog post. You might be using Virtual Infrastructure for setting up Apache JMeter Distributed Load tool. Generally, each VM is assigned with static IP and it does make sense as your System Under Test will see load coming from different static IP. The above docker-compose file uses an overlay network and IPs are in the range of 172.16.x.x which gets assigned automatically and taken care by Docker Swarm Networking. In case you are looking out for static IP which should get assigned to each containers automatically, then for sure you need macvlan to be implemented. Follow https://github.com/ajeetraina/jmeter-docker/blob/master/static-README.md to achieve this.
In my next blog post, I will cover further interesting stuffs related to JMeter Distributed Load Testing tool. Drop me a message through tweet (@ajeetsraina) if you face any issue with the above solution.
Loved reading it? Feel free to share it.
[clickandtweet handle=”@ajeetsraina” hashtag=”#Jmeter” related=”@docker” layout=”” position=””]Running Apache JMeter 3.1 Distributed Load Testing via Docker Compose on Swarm Mode[/clickandtweet]
References:
https://github.com/ajeetraina/jmeter-docker
http://jmeter.apache.org/usermanual/jmeter_distributed_testing_step_by_step.pdf
https://docs.docker.com/compose/compose-file/
Comments are closed.