Friends of OpenJDK Today

Tomcat and TomEE Clustering Automation

August 30, 2021

Author(s)

  • Avatar photo
    Tetiana Fydorenchyk

    Global Product Marketing at Virtuozzo, the leader in virtualization and hyperconverged cloud platform for MSPs and CSPs. A former Vice President of Marketing in Jelastic, a multi-cloud PaaS provider serving ... Learn more

Tomcat TomEE Automatic Clustering

Apache Tomcat is an open-source application server maintained by the Apache community. It is one of the most popular solutions for hosting Java applications due to its ease-of-use and lightweight yet versatile functionality. However, if you run the projects based on Jakarta EE 8 (or higher), you may be interested to use TomEE server with built-in required enterprise technology that isn't found in Tomcat.

Due to the extreme popularity of these stacks globally, and within Jelastic PaaS in particular, we've decided to share tips on how to install automatically clustered Tomcat and TomEE servers to get a highly available solution that can efficiently serve a large number of users, process high traffic, and be reliable.

Before starting the Tomcat cluster automation package development, the Jelastic team gathered requirements that this solution should achieve, or, as we call them, the challenges:

  • Efficient processing of a large number of requests (performance)
  • Horizontal scalability support in case of workload growth
  • Zero downtime in case of failures (fault tolerance)

Now, with these goals in mind, we've analyzed numerous successful examples over the Internet to create a solution that can be seamlessly integrated into the platform.

Below, you can find out more about the implementation of Tomcat and TomEE auto-clustering in Jelastic PaaS, as well as how to get these clusters up and running.

Tomcat / TomEE Auto-Cluster Installation

There are multiple tutorials on how to set up Tomcat clusters, but the configuration is relatively complex and includes many tweaks, which makes it seem like a lot. However, with the Jelastic Auto-Clustering feature, we went further and automated the whole process, making it as simple as flipping a switch.

1. Log in to your Jelastic account and click New Environment at the top.

Tomcat and TomEE environments

2. In the open topology wizard, choose Tomcat or TomEE among Java application servers and turn on the Auto-Clustering switcher. Make any other necessary adjustments and click Create.

tomcat environment

3. In a few minutes, your Tomcat cluster will appear within the dashboard.

tomcat cluster topology

Tomcat / TomEE Cluster Topology and Specifics

The topology of the highly available Tomcat cluster is straightforward and efficient, without any unnecessary elements to complicate it or reduce performance. The default cluster topology looks like below:

tomee tomcat cluster topology

Such topology ensures that performance and fault tolerance requirements are met. NGINX load balancer in front of the cluster handles workload distribution. Also, it automatically registers any changes in the cluster, reacting to the compute nodes' addition, deletion, or failure. You can follow our load balancing test tutorial to get an evaluation of workload distribution.

In general, the Auto-Clustering creates a simple TCP cluster which connects multiple Tomcat servers via TCP protocol. In our configuration, we use DeltaManager that discovers session changes and transfers these changes to other Tomcat instances in the cluster. Once both the nodes connect to each other, they establish a set of sender and receiver socket channels. The session replication data is transferred using these channels. The implementation provides session replication, context attribute replication, and cluster wide WAR file deployment. Also there are various interceptors configured to intercept datatransfer.

Here are some Tomcat-specific changes and optimizations based on the cluster installation described in the section above:

  • After enabling the Auto-Clustering for Tomcat, the Cluster element is added to the "Engine" section of the /opt/tomcat/conf/server.xml configuration file:
<Cluster className="org.apache.catalina.ha.tcp.SimpleTcpCluster" channelSendOptions="6">

where:

  • className defines cluster type outlined above
  • channelSendOptions="6" / channelSendOptions="sync,use_ack" - The sender will block the completion of the current request until all of the receiving nodes have acknowledged that they have received and processed the message.

You can check and adjust it if necessary via the built-in Configuration File Manager.

  • The instance itself is added to the configuration as LocalMember. Other Tomcat nodes in the layer are added by their IPs and uniqueId, which are generated using the containers' IP addresses and IDs.
tomcat cluster configurations
  • The DeltaManager is used for replicating sessions. As a result, the session data is spread across all the layer nodes (from all to all).
tomcat session replication
  • Static membership is used for discovering the cluster peers - the whole and exact list of all the cluster members is listed in the server.xml on every node.
tomcat cluster members
  • Interconnection is done through port 4004 using the TCP protocol - an appropriate rule is added to the firewall during the cluster configuration.
  • Also, in the /opt/tomcat/conf/context.xml configuration file, the org.apache.catalina.ha.context.ReplicatedContext class is used for the context implementation to provide replication.
tomcat server replication

All these settings are done automatically during creation and do not require manual maintenance during the cluster lifecycle.

Tomcat / TomEE Cluster Horizontal Scaling

It's evident that high availability is demanded almost for any application, so it is a great benefit that you can automate cluster nodes' addition/deletion based on the configurable scaling triggers to match the variable load.

1. Go to Settings > Auto Horizontal Scaling for your Tomcat / TomEE cluster environment.

tomcat horizontal scaling

2. Set up scaling triggers for the required resources (RAM, CPU, Network, Disk).
Keep in mind that the minimum count of worker nodes in the cluster is 2, so set up the Scale in limit respectively as in the picture above.

So, if you are looking for a reliable Tomcat hosting to keep your projects scalable and highly-available, Jelastic auto-clustering is an excellent solution to hop on with ease.

No need to struggle from routine and complex configuration tasks, just let Jelastic do all the work for you and get a guaranteed result in a matter of minutes.

Try it yourself on one of Jelastic PaaS providers.

Author(s)

  • Avatar photo
    Tetiana Fydorenchyk

    Global Product Marketing at Virtuozzo, the leader in virtualization and hyperconverged cloud platform for MSPs and CSPs. A former Vice President of Marketing in Jelastic, a multi-cloud PaaS provider serving ... Learn more

Comments (0)

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

Highlight your code snippets using [code lang="language name"] shortcode. Just insert your code between opening and closing tag: [code lang="java"] code [/code]. Or specify another language.

Save my name, email, and website in this browser for the next time I comment.

Subscribe to foojay updates:

https://foojay.io/feed/
Copied to the clipboard