Open In App

Advantages and Disadvantages of Three-Tier Architecture in DBMS

Last Updated : 17 Dec, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

Three-Tier Architecture :
The 3-Tier architecture, intermediate servers handle the client request, which coordinates the execution of the client request with subordinate servers. It adds middle ware(middle tier), which provides a way for clients of one DBMS to access data from another DBMS.  

Generally, a two-tier client server model is used to access the data from one DBMS server, which is a centralized system. Another method of distribution is to store several equivalent databases in different places, which is termed as a Distributed Database system(DDS).  

For instance, a different customer list can be stored at each branch in several states organized by an organization with many branches. The tables are distributed but connected, so the DBMS is able to find the information for any customer at any time for any location.

As from the above figure(a), we can say the client as first-Tier, server (cpu) as application server tier or middle-Tier or second-Tier, and the database as the Third-Tier or database server Tier.  

Three-Tier Architecture is basically three layers –

  • First-Tier (The client-tier)
  • Second-Tier (Application server-tier/middle-tier)
  • Third-Tier  (Database-server-tier)

Advantages of Three-Tier Architecture :

  1. The key three-tier benefit is improved scalability, since the application servers can be deployed on many machines. Also, the database does not make longer connections with every client – it only requires connections from a smaller number of application servers.
  2. It improves data integrity. Here, all the updated information goes through the second tier. The second tier can ensure that only important information is allowed to be updated in the database and the risk of unreliable client applications corrupting information is removed.
  3. Security is improved since the client does not have direct access to the database; it is more difficult for a client to obtain unauthorized data. Business logic is more secure because it is stored on a secure central server.
  4. Balancing of load is much easier with division of core business from the server of the database.
  5. High performance, lightweight, persistent object.
  6. Better to re-use.
  7. Scalability : each item can scale horizontally.
  8. Performance : Because the presentation tier can cache request, network utilization is minimized the load is reduced.
  9. Easy to maintain and modification.
  10. Improve data integrity.
  11. Improve security
  12. The client is ‘thin’. This is the reason behind the use of less expensive hardware.
  13. Change management is easier and faster to execute, because program logic/business logic is implemented on the centralized server.
  14. The added modularity makes it easier to modify or replace one tier without affecting the other tier.

Disadvantages of Three-Tier Architecture:

  1. It is more complex than the 2-tier client-server computing model, because it is more difficult to build a 3-tier application compared to a 2-tier application. The points of communication are doubled.
  2. The client does not maintain a persistent database connection.
  3. A separate proxy server may be required.
  4. Network traffic will be increased if a separate proxy server is used.
  5. The physical separation of application servers containing business logic functions and database servers containing databases may be something that affects performance.
  6. Improve complexity or effort.

Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads