Allocation Fragmentation and Replication In Distributed Databases: A Quick Start Guide

By: Published: May 26, 2022

Fragmentation and Replication In Distributed Database- Featured Image

Database Management Systems (DBMS) are universal to just about every business. They touch on various aspects like banking, education, manufacturing, selling, human resources, etc. These fundamental tools allow businesses to define, store, retrieve and update information on their databases. When these databases are stored at different computer network sites, they constitute what is called a Distributed Database System.

Most businesses today operate from multiple geographies. Each unit requires its own set of data, which is where Distributed Database Management Systems (DDBMS) come in. Distributing data across multiple sites provides high availability, easy sharing, and local query optimization. Replicating data automatically helps in Data Recovery if the database in any site gets damaged or malfunctions.

Businesses love to use DDBMS since it is not application-specific. DDBMS provides a standard capability for using the same data across several platforms so that you and your teams can work securely and reliably. 

This comprehensive guide presents an overview of Distributed Database Management Systems. We discuss three essential processes: allocation, fragmentation and replication in distributed databases, with in-depth coverage of each. 

Table of Contents

What Is a Distributed Database?

Distributed Database: Fragmentation and Replication In Distributed Database | Hevo Data
Image Source: Zygiaris, S. (2018), “Distributed DataBases and Concurrency Control”

A distributed database refers to a collection of databases scattered across multiple sites over a network. Think of this system as a Multinational Corporation, whose offices and systems are distributed across the globe, yet they work harmoniously for a common purpose. 

In a Distributed Database Management System (Distributed DBMS or DDBMS), data, processes, and interface components of a system are divided across multiple locations to allow independent functioning. Different databases are stored across multiple computers, and accordingly, the workload processing is distributed. This network architecture delivers much better performance and increased reliability compared to Centralized Database Management Systems.

One of the main benefits of using Distributed Database Management Systems is that your applications need not know where your data resides (also called transparent access to data). When a user executes a query on a distributed database, multiple sites from various data centers can seamlessly collaborate to answer the user’s inquiry. 

Unlike the Centralized Database Management System, the distributed database comes with consistent commit protocols, concurrency control techniques, and recovery methods that are extremely useful in managing heavy user transactions or preventing database system failures.

Similar: Distributed Data Mining: 7 Critical Processes & Algorithms

Features of Distributed Database Management System

A Distributed Database Management System (DDBMS) carries the full functionality of a standard DBMS and provides transparent management of distributed and replicated data. It also:

  • Improves reliability & data availability through distributed transactions.
  • Provides an easier and more economical system for database expansion.
  • Maintains confidentiality and data integrity of databases.
  • Is hardware independent.
  • Delivers quick responses to user queries through efficient distribution of data.
  • Gives users a simple interface to open, read/write records, and close files. 
  • Comes with declarative query capabilities, transaction management, and integrity enforcement. 

What Do You Mean By Allocation Fragmentation and Replication In Distributed Database?

In this section on fragmentation and replication in distributed database guide, we help you in understanding replication in databases and distributed systems to a greater depth.

Data Allocation

Data Allocation is an intelligent distribution of your data pieces, (called data fragments) to improve database performance and Data Availability for end-users. It aims to reduce overall costs of transaction processing while also providing accurate data rapidly in your DDBMS systems.

Data Allocation is one of the key steps in building your Distributed Database Systems. There are two common strategies used in optimal Data Allocation: Data Fragmentation and Data Replication. In the following sections on fragmentation and replication in distributed databases, we discuss both of these techniques in greater detail.

Fragmentation and Replication In Distributed Database

Data Fragmentation

Fragmentation is a process of disintegrating relations or tables into several partitions in multiple sites. It divides a database into various subtables and sub relations so that data can be distributed and stored efficiently. 

Database Fragmentation can be of two types: horizontal or vertical. In a horizontal fragmentation, each tuple of a relation r is assigned to one or more fragments. In vertical fragmentation, the schema for a relation r is split into numerous smaller schemas with a common candidate key and a special attribute. More details on horizontal and vertical fragmentation will be discussed in the next section.

Data Replication

Distributed Database Replication is the process of creating and maintaining multiple copies (redundancy) of data in different sites. The main benefit it brings to the table is that duplication of data ensures faster retrieval. This eliminates single points of failure and data loss issues if one site fails to deliver user requests, and hence provides you and your teams with a fault-tolerant system.

However, Distributed Database Replication also has some disadvantages. To ensure accurate and correct responses to user queries, data must be constantly updated and synchronized at all times. Failure to do so will create inconsistencies in data, which can hamper business goals and decisions for other teams.

Discover more information about Data Replication in Distributed Database Systems here. Our further sections will help you in understanding replication in databases and distributed systems in greater depth.

Perform Data Replication From Your Distributed Databases Within Minutes! No Setup. No Code.

Hevo Data, a No-Code & Automated Data Pipeline solution, can help you automate, simplify & enrich your aggregation process in a few clicks. With Hevo’s out-of-the-box Distributed Database Connectors and blazing-fast Data Pipelines, you can extract & aggregate data from Distributed Databases like MySQL and Oracle Databases straight into your Data Warehouse, Database, or any destination.

To further streamline and prepare your data for analysis, you can process and enrich Raw Granular Data using Hevo’s robust & built-in Transformation Layer without writing a single line of code!

Get Started with Hevo for Free

Hevo is the fastest, easiest, and most reliable data replication platform that will save your engineering bandwidth and time multifold. Try our 14-day full access free trial today to experience an entirely automated hassle-free Data Replication!

Methods of Data Fragmentation of a Table

In this section of our fragmentation and replication in distributed database guide, we discuss the two fundamental fragmentation strategies: horizontal and vertical. In addition to these, Distributed Database Management Systems also allow the nesting of fragments in a hybrid fashion, called Hybrid Fragmentation. This will be discussed separately in our third fragmentation strategy.

Horizontal Fragmentation (or Sharding)

Horizontal Fragmentation: Fragmentation and Replication In Distributed Database | Hevo Data
Image Source: IJICT (Parul Tomar, 2014)

A Horizontal Fragmentation strategy divides a table horizontally by selecting a subset of rows in accordance with values of one or more fields. After partition, these data fragments are assigned to different sites of a Distributed Database System. When a user makes a complete table request, these fragments are then combined using a union operation.

There are two versions of Horizontal Fragmentation: Primary Horizontal Fragmentation, which uses predicates of relation to perform fragmentation, and Derived Horizontal Fragmentation, which uses predicates defined on another relation to partition a relation.

Horizontal Fragmentation allows parallel processing of a relation. You can also split a global table into tuples and allocate them to places where they are most frequently accessed for efficient data storage and better access.

Vertical Fragmentation

Vertical Fragmentation: Fragmentation and Replication In Distributed Database | Hevo Data
Image Source: IJICT (Parul Tomar, 2014)

Vertical Fragmentation splits a table vertically by attributes or columns. In this case, data fragments keep only certain attributes of the original table. They are then assigned to different sites of a DDBMS. 

Every data fragment gets a primary key that is required while restoring the original table. The fragmentation is done in such a way that reconstructing a table from fragments only requires a normal JOIN operation. To do so, a specific property called Tuple-id is added to the schema.

Vertical Fragmentation is highly useful for cases when you want to enforce data privacy.

Hybrid Fragmentation

Out of the two discussed in fragmentation and replication in distributed databases, Hybrid Fragmentation takes a different approach. It comprises a combination of both Horizontal and Vertical Fragmentation.

Here the tables are initially fragmented in any form (horizontal or vertical) and then these fragments are partially replicated across different sites according to the frequency of accessing the database fragments. In this case, the original table can be reconstructed by applying union and natural JOIN operations in the appropriate order.

Advantages and Disadvantages of Fragmentation

Database Fragmentation improves Data Accessibility and provides faster transaction processing to user queries. Using fragmentation, you can decompose a relation into multiple independent units so that your users can perform a number of transactions, and retrieve data concurrently without any noticeable lag. 

However, Data Fragmentation raises some difficulties as well. Fragmentation and replication in distributed databases must ensure fault tolerance and zero data loss while reconstructing your original table from its fragments. This must happen correctly and at all times whenever your users pass a request. 

Moreover, your database fragments must be split up “sensibly” so that users with a high demand volume can request and receive data from fragmented tables quickly. In other words, your Database Fragmentation should ensure high query performance and concurrent user processing. Additionally, you must be mindful of the need to reduce dispersed joins throughout the process, which can inevitably add to your costs.

Here, in this section on fragmentation and replication in distributed database guide, we discuss the pros and cons of Database Fragmentation. Let’s have a closer look at those.

Advantages

Using Database Fragmentation, you and your teams can:

  • Concurrently execute a number of transactions.
  • Capitalize on parallel processing of a single query.
  • Take advantage of increased system throughput.
  • Store data efficiently, by saving frequently used data close to the site of usage.
  • Use local query optimization.
  • Preserve the security and privacy of your database systems.
  • Benefit from fault-tolerance architecture with better disaster recovery mechanisms.

Disadvantages

Database Fragmentation falls short in the following scenarios:

  • When application views are defined on more than one fragment, they can develop conflicting requirements.
  • When doing recurrent fragmentation, the reconstruction task might become rather large.
  • In simple operations like checking for dependencies, which might result in chasing data across several sites.
  • When data from several fragments is required, access times can be extremely fast.

Data Replication In DBMS

Data Replication duplicates your database and creates multiple copies at two or more sites. This is useful for providing continuous system availability, performance, and scalability to fulfill your application requirements. It creates a system of distributed databases, which can in turn help your users access data relevant to their tasks without interfering with the work of other users.

Advantages of Data Replication

  • Data Reliability: Your databases continue to work even in case of a site failure. Using Distributed Database Replication, you can request and receive the same copy from a different site.
  • Scalability: As your systems grow geographically and in terms of the number of locations (and hence the number of access requests), replication provides a seamless way to handle this expansion without compromising on response times.
  • Quicker Response: Data Replication enables copies of data to be available close to their access sites. This method of localization delivers quick query processing and consequently fast response times.
  • Simpler Transactions: With Data Replication, user transactions become simple since they require fewer table joins and minimal coordination across the network.

Disadvantages of Data Replication

  • High Storage Requirements: If your databases are of a gigantic scale, creating and maintaining copies of those databases will demand a high storage capacity. 
  • Increased Costs and Complexity: More copies mean more storage costs. And with every update, your DDBMS system must ensure that new changes are reflected in all the copies of the data at all sites.
  • Undesirable Application – Database Coupling: Inherent to data update mechanisms are possibilities of Data Inconsistency. Eliminating those requires complex coordination and careful investigation at the application level. 

Types of Data Replication In DBMS

On a high level, there are three ways to perform Database Replication:

Transactional Replication

Transactional Replication makes a complete copy of your database, as well as copies of new data changes. In this type of Data Replication, changes to your database are synced in real-time and in the same order as they occur. This guarantees transactional consistency

Transactional Replication is your go-to option when you have frequent changes that you wish to send to your subscribers. You can either choose to aggregate transactions and send them at regular intervals, or you can send them as they occur. This type of replication improves performance and decreases latency while providing a high volume of read, write, and delete activity.

Snapshot Replication

Snapshot Replication is perhaps the simplest type of Data Replication that copies “snapshots” of your database. It replicates the current state of your database as is, at a specific point in time, without including any changes/updates to your data. This kind of replication is helpful when changes made to your databases are infrequent. 

Snapshot Replication is slower compared to Transactional Replication because it sends data in bulk as opposed to new changes. It is generally used in scenarios when your subscribers can function in read-only mode or when your subscribers don’t require updated data to operate.

Merge Replication

Merge Replication combines data from several databases into a single database. This type of Data Replication tracks subsequent data changes and schema modifications made at publishers and subscribers and synchronizes the same to your database using merge agents. A great advantage of using Merge Replication is that it allows publishers and subscribers to independently modify the database.

Merge Replication is extremely useful for subscribers who can’t always connect to the publisher, but yet need to carry along a copy of the database that they can modify. They can make changes offline, and later synchronize changes with the Publisher and other Subscribers.

What Makes Hevo’s ETL Process Best-In-Class

Providing a high-quality ETL solution can be a difficult task if you have a large volume of data. Hevo Data’s automated, No-code platform empowers you with everything you need to have for a smooth data replication experience.

Check out what makes Hevo amazing:

  • Fully Managed: Hevo requires no management and maintenance as it is a fully automated platform.
  • Data Transformation: Hevo provides a simple interface to perfect, modify, and enrich the data you want to transfer.
  • Faster Insight Generation: Hevo offers near real-time data replication so you have access to real-time insight generation and faster decision making. 
  • Schema Management: Hevo can automatically detect the schema of the incoming data and map it to the destination schema.
  • Scalable Infrastructure: Hevo has in-built integrations for 100+ Sources (including 40+ Sources) like MySQL, PostgreSQL, Oracle Database, and Azure SQL, and store it in a Data Warehouse of your choice.
  • Live Support: Hevo team is available round the clock to extend exceptional support to its customers through chat, email, and support calls.
Sign up here for a 14-Day Free Trial!

Distributed Database Replication Schemas

You can perform Data Replication in DDBMS in either full or partial forms. A Full Replication is when you create full copy clones of your existing database and store them on multiple sites. A Partial Replication is when you copy and store only the frequently used fragments of your database, leaving the rest. A No Replication is when you exclusively hold fragments at one site, without any duplication. 

In this section of fragmentation and replication in distributed databases guide, we discuss these replication schemes in detail:

Full Replication

Full Replication in DDBMS: Fragmentation and Replication In Distributed Database | Hevo Data
Image Source: ManageEngine

Full Replication is a process of cloning your database entirely. In Full Replication, you would create full copies of your database at every site of the distributed system. Although this improves system availability, since you have multiple backups of the same database, this process takes a long time to take effect. 

Full Replication is appropriate for worldwide enterprises with teams that require complete data access. Using Full Replication, for example, North American counterparts can take up the remaining work from their European counterparts if their servers fail.

Advantages of Full Replication

  • Guaranteed High Availability.
  • Rapid retrieval of global queries.
  • Faster query execution.
  • Negligible communication costs.

Disadvantages of Full Replication

  • Processing concurrent queries is difficult.
  • Slower update process due to bulk duplication.

Up next, in our fragmentation and replication in distributed database guide, we take a look at Partial Replication. 

Partial Replication

Partial Replication in DDBMS: Fragmentation and Replication In Distributed Database | Hevo Data
Image Source: ManageEngine

Partial Replication is a process of replicating only frequently used fragments of your database. Here, each fragment is replicated based on its importance and user demand. The number of copies can range from one to many, depending upon the total number of available nodes in the Distributed Database Management System. 

Partial Replication is a very helpful Distributed Database Replication Schema for mobilized teams. They can use it to carry relevant and important pieces of data on their laptops and mobiles and periodically synchronize it with the main server once they are back online. 

More so than this, even for some businesses, keeping confidential information inside their private network is a necessity. Teams who want to use such datasets can duplicate only the necessary pieces and sync them back once they are complete. Alternatively, they can continue working on their own datasets, leaving the secret data on the private network, and then returning to make the necessary changes, all using Partial Replication.

Advantages of Partial Replication

  • Better database performance.
  • Duplication of only relevant data fragments ensures better resource utilization and fewer costs.
  • Increased Data Availability.

Disadvantages of Partial Replication

  • Keeping all data current and relevant could be a challenge.
  • Performance may suffer when a user requests less used data fragments.

No Replication

No Replication in DDBMS: Fragmentation and Replication In Distributed Database | Hevo Data
Image Source: ManageEngine

When your database fragments are partitioned and exist in singularity, you have a No Replication situation. In this case, each fragment resides at only one site, and therefore failure of one site might result in users losing access to data. 

Of all the distributed database replication schemas, No Replication is the fastest to perform, but provides lower data availability and is slow to execute user queries when multiple users request at the same time. 

Advantages of No Replication

  • Easy recovery of data.

Disadvantages of No Replication

  • Slow execution time in case of concurrent user requests.
  • High probability of data loss; no replicas.

Fragmentation and Replication In Distributed Database: Rule of Thumb

At this point, you might ask: Should I replicate my database?

Fortunately, there exists a rule of thumb, while performing fragmentation and replication in distributed databases, to help you answer the question. For distributed database replication schemas, the rule of thumb says: 

  • If (Read-only Queries)/(Update Queries) ≥ 1, Data Replication is advantageous.
  • If (Read-only Queries)/(Update Queries) < 1, Data Replication may cause problems.

Conclusion

In the current scenario of the fast-changing world, the distribution of data has become an essential need. Cloud databases and distributed computing have accelerated business interest in Distributed Database Management Systems and Data Allocation is becoming more useful than ever. Data Allocation, as we discussed, comprises Data Fragmentation and Data Replication techniques.

Although both fragmentation and replication in distributed databases aren’t simple processes, if applied judiciously can be an extraordinary solution for developing better applications and improving database performance. 

Along with your Distributed Database Systems comes a need for Distributed Database Integration. How do you manage the effortless integration of your distributed databases, CRM, and SaaS platforms into a common repository like a Data Warehouse?

Lucky you, because Hevo Data packs the ultimate ETL solution to start your database pipelines in minutes.

Hevo Data with its strong integration with Distributed Databases such as MySQL, PostgreSQL, and Oracle Database allows you to not only export data from sources & load data to the destinations, but also transform & enrich your data, & make it analysis-ready so that you can focus only on your key business needs and perform insightful analysis using BI tools. 

Visit our Website to Explore Hevo

Hevo lets you migrate your data from your PostgreSQL database to any Data Warehouse of your choice like Amazon Redshift, Snowflake, Google BigQuery, or Firebolt within minutes with just a few clicks.

Why not try Hevo? Sign Up here for a 14-day free trial and experience the feature-rich Hevo suite first hand. You can also check our pricing and make a decision on your best-suited plan. 

Thank you for reading! We hope you found our fragmentation and replication in distributed database guide informative.

Divyansh Sharma
Former Content Manager, Hevo Data

With a background in marketing research and campaign management at Hevo Data and myHQ Workspaces, Divyansh specializes in data analysis for optimizing marketing strategies. He has experience writing articles on diverse topics such as data integration and infrastructure by collaborating with thought leaders in the industry.

No Code Data Pipeline For Your Distributed Database