Deploying Java EE Application to Docker Swarm Cluster (Tech Tip #88)

What is Docker Swarm?

Docker Swarm provides native clustering to Docker. Clustering using Docker Swarm 0.2.0 provide a basic introduction to Docker Swarm, and how to create a simple three node cluster. As a refresher, the key components of Docker Swarm are shown below:

In short, Swarm Manager is a pre-defined Docker Host, and is a single point for all administration. Additional Docker hosts are identified as Nodes and communicate with the Manager using TCP. By default, Swarm uses hosted Discovery Service, based on Docker Hub, using tokens to discover nodes that are part of a cluster. Each node runs a Node Agent that registers the referenced Docker daemon, monitors it, and updates the Discovery Service with the node’s status. The containers run on a node.

That blog provide complete details, but a quick summary to create the cluster is shown below:

Listing the cluster shows:

It has one master and two nodes.

Deploy a Java EE application to Docker Swarm

All hosts in the cluster are accessible using a single, virtual host. Swarm serves the standard Docker API, so any tool that communicates with a single Docker host communicate can scale to multiple Docker hosts by communicating to this virtual host.

Docker Container Linking Across Multiple Hosts explains how to link containers across multiple Docker hosts. It deploys a Java EE 7 application to WildFly on one Docker host, and connects it with a MySQL container running on a different Docker host. We can deploy both of these containers using the virtual host, and they will then be deployed to the Docker Swarm cluster.

Lets get started!

MySQL on Docker Swarm

  1. Start the MySQL container
  2. Status of the container can be seen as:
    It shows the container is running on swarm-node-01.

    Make sure you are connected to the Docker Swarm cluster using eval $(docker-machine env --swarm swarm-master).

  3. Find IP address of the host where this container is started:

    Note IP address of the node where MySQL server is running. This will be used when starting WildFly application server later.

    ps: Filtering by name seem to not return accurate results (#10897).

WildFly on Docker Swarm

  1. Start WildFly application server by passing the IP address of the host and the port on which MySQL server is running:

  2. Status of the container can be seen as:

    It shows the container is running on swarm-node-02. IP address of the host is also shown in the PORTS column.

    As explained in Tech Tip #69, JDBC URL of the data source uses the specified IP address and port for connecting with the MySQL server. However passing IP address is very brittle as the MySQL server may restart on a different Docker host. This is filed as #773.

  3. Access the application at:

    This is using the IP address of the host where the container is started.

Enjoy!

 

Be Sociable, Share!
  • Tweet

8 thoughts on “Deploying Java EE Application to Docker Swarm Cluster (Tech Tip #88)

  1. Hi Arun, thanks for the article!
    Could you explain your vision how to organize often redeploys for Java EE with Docker? Let’s say 20 times per a day. Any tutorial how to use “hot redeploy” with Docker deploy philosophy?
    Thank you!

  2. Yes, from my point it makes more sense compare to commit a war archive directly into the Docker image. So, there is a general question – should developers store their apps (for example war archive for Java or source code for PHP) inside containers? Or is it better to attach/inject the apps into the middleware stack containers with volumes? What is your recommendation?

  3. Once the application is ready, then it should be baked into the container itself. You can certainly use mounted volumes during development. I’d consider creating different Docker images, with different tags/versions, for different version of archives. Immutable image is the value proposition provided by Docker.

  4. Pingback: Deploying Java EE Application to Docker Swarm Cluster | Dinesh Ram Kali.
  5. @Ruslan
    If we forget a bit the Docker Infrastructure that might already available, using the very handy Wildfly Maven Plugin that supports local or remote deploy wont do the job? I guess you stop and start your containers all the time, so if there is already one of more (cluster) of running dockerinzed Wildfly Servers, the maven plugin can perfectly push, deploy artifacts.

    http://docs.jboss.org/wildfly/plugins/maven/latest/

  6. Yep, WildFly Maven plugin can do the job well as well. It just looks for a remote host/port and the image need to make sure those ports are exposed. I’ve not tried it though yet :)

  7. Pingback: ZooKeeper for Microservice Registration and Discovery | Social Marketing by WordPress

Leave a Reply

Your email address will not be published. Required fields are marked *