You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 16 Next »

These topics are about how to set up a cluster and perform server farming

A cluster is a group of servers that transparently provide enterprise services, such as Servlets and JavaServer Pages (JSP) support, as if it was a single server. The servers, typically running on separate systems, exchange messages to synchronize data, allowing any individual node to process requests for a distributed application and to take over a user's session when its node fails. Configuring multiple servers into a cluster is commonly called clustering.
Consider using a cluster of servers when you need to improve the scalability or the availability or your Web applications.

  • Clustering improves scalability by allowing you to increase the system capacity by adding extra servers. Load balancing is achieved by adding a component, like the IBM HTTP Server with the Apache Tomcat JK module that sprays requests to each node in the cluster.
    o Running multiple nodes on the same host, called vertical clustering, is used when limitations in a single node prevent it from fully utilizing the capacity of the host.
    o Running multiple nodes on different hosts, called horizontal clustering, is used to add capacity by adding an additional host. Horizontal clustering is more common than vertical clustering because it also improves availability.
  • Clustering improves availability by automatically synchronizing state data among all the nodes in the cluster. If any node in the cluster fails, subsequent requests can be processed by any other node in the cluster. This process, typically called failover, occurs on subsequent requests. Any requests being processed by a node when it fails will still be lost.


Farming using Deployment
Plugin based Farming
WADI Clustering
Tomcat Native Clustering

  • No labels