DNS round robin is DNS with a number of application servers or it is DNS with a number of web servers?
Edy Yu
Ranch Hand
Joined: Nov 21, 2000
Posts: 264
posted
0
I think it is a DNS with a number of web servers.
<i><br />Sun Certified Programmer for Java 2 Platform (SCJP)<br />Sun Certified Developer for Java 2 Platform (SCJD)<br />Sun Certified Web Component Developer for Java2 Platform, Enterprise Edition (SCWCD)<br />Sun Certified Business Component Developer for Java2 Platform, Enterprise Edition (SCBCD)<br />Sun Certified Enterprise Architect for J2EE (SCEA)<br />IBM Certified Enterprise Developer, WebSphere Studio V5.0<br /></i>
Vijay Shrivastava
Ranch Hand
Joined: Nov 15, 2001
Posts: 64
posted
0
Answer is it is used with both web servers and application servers. DNS Round Robin is used with the Web Servers when there is n WebServers clustered environment. Any http request from the load balancer can be forwarded to one of the servers based on the round robin logic. It is also used with application servers when J2EE components (like EJB) are deployed on the cluster of multiple servers and scheduleing algoritm is round robin. The client request for a j2EE component reference (home interface) will be directed to one of the application server based on DNS algorithm. [ July 19, 2002: Message edited by: Vijay Shrivastava ]