• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Load balancing vs Load sharing

 
Ranch Hand
Posts: 36
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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
 
Ranch Hand
Posts: 51
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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.
 
Greenhorn
Posts: 5
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
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.
 
reply
    Bookmark Topic Watch Topic
  • New Topic