• 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
  • Ron McLeod
  • Paul Clapham
  • Devaka Cooray
  • Liutauras Vilda
Sheriffs:
  • Jeanne Boyarsky
  • paul wheaton
  • Henry Wong
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Tim Moores
  • Carey Brown
  • Mikalai Zaikin
Bartenders:
  • Lou Hamers
  • Piet Souris
  • Frits Walraven

3-tier architecture -- poor Manageability?

 
Ranch Hand
Posts: 196
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Friends,
Do you agree that the drawback of the 3-tier architecture is Manageability?
Can you please share your knowledge of 1, 2 and 3 – tier architectures and their QoS?
Thank you!
Seid
 
Ranch Hand
Posts: 2713
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
3-tier architecture is standard and has a higher level of manageability than say a 4-tier. Before I go off on a tangent I want to make sure we are on the same page.
1-tier Architecture
Tier 1 - Everything
2-tier Architecture
Tier 1 - Client
Tier 2 - Database
3-tier Architecture
Tier 1 - Client (Browser or Application)
Tier 2 - Web and Application (Full J2EE Server)
Tier 3 - Database
4-tier Architecture
Tier 1 - Client (Browser or Application)
Tier 2 - Web (Servlet/JSP Container)
Tier 3 - Application (EJB Container)
Tier 4 - Database
Do these match your definitions for the different tiers?
 
Seid Myadiyev
Ranch Hand
Posts: 196
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Chris,
Thank you very much for this, but what are the benefits and drawbacks of each architecture in terms of their Quality of Service (QoS) requirements?
Thanks very much!
Seid
 
mister krabs
Posts: 13974
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
One huge difference is scalability. Each time you add a tier you are making your application more scaleable because its easier to apply more horsepower to just the tier that needs it.
 
Ranch Hand
Posts: 1551
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I researched this. On the yahoo site or the JR somebody talked about Sun's codecamp. On Sun's site I found a codecamp document. An early chapter was helpful in understanding some of these issues.
I still only scored 66% on common architectures and concepts.
This is a hard area to find data on.
 
Happiness is not a goal ... it's a by-product of a life well lived - Eleanor Roosevelt. Tiny ad:
We need your help - Coderanch server fundraiser
https://coderanch.com/wiki/782867/Coderanch-server-fundraiser
reply
    Bookmark Topic Watch Topic
  • New Topic