Open In App

Types of Distributed DBMS

Last Updated : 07 Sep, 2023
Improve
Improve
Like Article
Like
Save
Share
Report

A system that is used for managing the storage and retrieval of data across multiple interconnected databases is called a Distributed Database Management System(DDBMS). In this case, the interconnected databases are situated in different geographical areas. In DDBMS, one can access and store data transparently from different geographical locations and ensure high availability, scalability, and fault tolerance mechanisms. DDBMSs are designed to handle huge amounts of data spread across different sites. It can give seamless performance in data sharing and collaboration by organizations.

Features of Distributed DBMS

There is a presence of a certain number of features that make DDBMS very popular in organizing data.

  • Data Fragmentation: The overall database system is divided into smaller subsets which are fragmentations. This fragmentation can be three types horizontal (divided by rows depending upon conditions), vertical (divided by columns depending upon conditions), and hybrid (horizontal + vertical).
  • Data Replication: DDBMS maintains and stores multiple copies of the same data in its different fragments to ensure data availability, fault tolerance, and seamless performance.
  • Data Allocation: It determines if all data fragments are required to be stored in all sites or not. This feature is used to reduce network traffic and optimize the performance.
  • Data Transparency: DDBMS hides all the complexities from its users and provides transparent access to data and applications to users.

Types of Distributed DBMS

There are 6 types of DDBMS present there which are discussed below:

  • Homogeneous: In this type of DDBMS, all the participating sites should have the exact same DBMS software and architecture which makes all underlying systems consistent across all sites. It provides simplified data sharing and integration.
  • Heterogeneous: In this type of DDBMS, the participating sites can be from multiple sites and use different DBMS software, data models, or architectures. This model faces little integration problem as all site’s data representation and query language can be different from each other.
  • Federated: Here, the local databases are maintained by individual sites or federations. These local databases are connected via a middleware system that allows users to access and query data from multiple distributed databases. The federation combines different local databases but maintains autonomy at the local level.
  • Replicated: In this type, the DDBMS maintains multiple copies of the same data fragment across different sites. It is used to ensure data availability, fault tolerance, and seamless performance. Users can access any data from the nearest replica if the root is down for some reason. However, it is required to perform high-end synchronization of data changes in replication.
  • Partitioned: In a Partitioned DDBMS, the overall database is divided into distinct partitions, and each partition is assigned to a specific site. Partitioning can be done depending on specific conditions like date range, geographic location, and functional modules. Each site controls its own partition and the data from other partitions should be accessed through communication and coordination between sites.
  • Hybrid: It is just a combination of multiple other five types of DDBMS which are discussed above. The combination is done to address specific requirements and challenges of complex distributed environments. Hybrid DDBMS provides more optimized performance and high scalability.

FAQs on Distributed DBMS

Q1: Define Distributed DBMS?

Answer:

A Distributed Database Management System(DDBMS) can be defined as a system which controls the storage and retrieval of data among multiple interconnected small databases(nodes). This system is popular in modern data management because of it’s transparency and efficient data sharing mechanism within a distributed environment.

Q2: Write the types of DDBMS?

Answer:

Distributed Database Management System(DDBMS) can be divided in six types which are–> Homogeneous, Heterogeneous, Federated, Replicated, Partitioned and Hybrid DDBMS where the hybrid DDBMS is the combination of previous five types of DDBMS based on requirements and conditions.

Q3: Write the main difference between Replicated and Partitioned DDBMS?

Answer:

For Replicated DDBMS, multiple copies of same data fragments are stored and managed across different sites which provides improved availability and performance. In the other hand, for Partitioned DDBMS, the whole database is partitioned into distinct blocks and assigned for different sites.

Q4: What is Federated DDBMS?

Answer:

In a Federated DDBMS system, all of it’s users can access and query data from multiple distributed databases which are the participants of a single logical database. Federated DDBMS maintains local autonomy and controls over individual sites.

Q5: Why it is difficult for manage a Heterogeneous DDBMS?

Answer:

In Heterogeneous DDBMS, the participating databases may contain different DBMS software, data modelling and query languages across multiple sites. For this reason managing data representation, translation and query processing may be time consuming and not easy yet.

Q6: What factors should be considered while selecting a DDBMS?

Answer:

Selecting a DDBMS is a crucial work for business purposes. This selection may depend upon various conditions such as data distribution requirements and availability needs, site autonomy, scalability and performance, the level of heterogeneity in the system etc.


Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads