aspose file tools
The moose likes Architect Certification (SCEA/OCMJEA) and the fly likes Load balancing vs Load sharing Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Certification » Architect Certification (SCEA/OCMJEA)
Reply Bookmark "Load balancing vs Load sharing" Watch "Load balancing vs Load sharing" New topic
Author

Load balancing vs Load sharing

kumar as
Ranch Hand

Joined: Mar 16, 2006
Posts: 36
hi all,

I little bit confused with two concept while preparing Common architecture .

1.) Difference between Load sharing vs Load Balancing (DNS RR is load sharing or Load balancing?)

2.) difference between Tier and Layer? Here my input is like ,layer is logical separation of modules. Tier is physical separation ex)servers.

Can any one clarify my confusion regarding this.

thanks in advance,
kumar
Arafat Nalkhande
Ranch Hand

Joined: Jul 20, 2006
Posts: 51
Load sharing is taking some share of the incoming requests and handling it.
Got example if there are 100 requests / sec and the server is capable enough to process only 20 Requests/sec then there is a need to scale up the server or put parallel servers that take the rest of 80 requests.

So you can have in all 5 servers handling 20 requests each, there by sharing the load.

But there has to be some traffic policeman who diverts these requests to the free server. This policeman is called as the Load balancer.


I want to be myself, but a better myself.<br />~ SCJP 1.4 (91%), SCWCD 1.4 (86%) ~
t pillai
Greenhorn

Joined: Feb 11, 2006
Posts: 5
DNS Round Robin: Spreading incoming IP packets among a number of DNS addresses equally. That means that each subsequent packet is sent to the next address in a list, until the end of the list is reached and the next packet is sent to the first address again. T

It is LOAD SHARING technique rather than load balancing. Load balancing distributes connection loads across multiple servers, giving preference to those servers with the least amount of congestion. In round robin's case, server distribution remains on a rigid one IP address to one user rotating basis.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: Load balancing vs Load sharing
 
Similar Threads
Layer and Tier
clustering and load balancing
layers vs tiers
Load sharing vs distribution
Load Balancing Vs Clustering