File APIs for Java Developers
Manipulate DOC, XLS, PPT, PDF and many others from your application.
http://aspose.com/file-tools
The moose likes Other Java Products and Servers and the fly likes Cluster Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Products » Other Java Products and Servers
Reply Bookmark "Cluster" Watch "Cluster" New topic
Author

Cluster

Vishakha Ahuja
Ranch Hand

Joined: Sep 13, 2000
Posts: 191
Hi,
How does clustering of web servers affect scalability, maitainability, availability and performance of an enterprise application ?
Also, how does clustering of application servers affect all the above ?
Thanks in advance,
Regards,
Vishakha.
Deepak Shah
Ranch Hand

Joined: Nov 29, 2000
Posts: 97
check out my latest post on Load balancing web application.
Hope it addresses your concern !
Thanks,
Rahul Mahindrakar
Ranch Hand

Joined: Jul 28, 2000
Posts: 1829
Ahuja
clustering of web servers affect
scalability : Horizontal Scalability/Load Balancing is acheived through Clustering so more machines in cluster more is the scalability.
maitainability ; the more the machines in a cluster the more difficult it is to maintain the application
availability : Things like failover management in clustering help increase availability
performance : hmm.. I am doubtful about this.
herve attia
Ranch Hand

Joined: Sep 28, 2001
Posts: 138
One of the best approach to improve performance, scalability and maitainability of your distributed system is the clustering.
You distribute load among a set of distributed servers using load balancing mechanism.
Data replication and data caching increases the performance as well.
But nothing is free is these world...you need to add some strategies to preserve a consistency system.
If your application needs a strong consistency system (active replication strategy), these strategy might impact the availability,latency of your system because for each request receives by your system, each replica has to process the request in a determinist approach (give the same result)....before to senb back to response to the client...
So I invite you to read articles about load balancing, replication (active, passive, semi-passive), fault tolerance....
herve attia
Vishakha Ahuja
Ranch Hand

Joined: Sep 13, 2000
Posts: 191
Thank you all.
So, I understand clustering of web servers improves scalability and availability.
Does this mean that clustering of Application Servers (EJB servers) also improves Scalability and Availability ???
And what happens to reliability ?
SJ Adnams
Ranch Hand

Joined: Sep 28, 2001
Posts: 925
yes, yes & yes.
You will have more CPU's which means more jvms.
You have hardware redundancy.
In iPlanet the session can be configured to reside in the kxs or kjs engines so that increases reliabilty?

------------------
http://www.x-nt.com
Jim Yingst
Wanderer
Sheriff

Joined: Jan 30, 2000
Posts: 18670
I'm transferring this to our new iPlanet forum...


"I'm not back." - Bill Harding, Twister
 
I agree. Here's the link: http://zeroturnaround.com/jrebel
 
subject: Cluster
 
Similar Threads
Jboss vs Websphere - your opinion?
Clustering in Jboss
clustering
Scope of applications on Android
How number of active Sessions count in Clustered server environment WAS7?