Trade-offs in Databases
Explore the pros and cons of centralized and distributed databases, and query optimization in distributed databases.
Which is the best database sharding approach?
Both horizontal and vertical sharding involve adding resources to our computing infrastructure. Our business stakeholders must decide which is suitable for our organization. We must scale our resources accordingly for our organization and business to grow, to prevent downtime, and to reduce latency. We can scale these resources through a combination of adjustments to CPU, physical memory requirements, hard disk adjustments, and network bandwidth.
The following sections explain the pros and cons of centralized and distributed database:
Advantages and disadvantages of a centralized database
Advantages
-
Data maintenance, such as updating and taking backups of a centralized database, is easy.
-
Centralized databases provide stronger consistency and ACID transactions than distributed databases.
-
Centralized databases provide a much simpler programming model for the end programmers as compared to distributed databases.
-
It’s more efficient for businesses that have a small amount of data to store that can reside on a single node.
Disadvantages
-
A centralized database can slow down, causing high latency for end users, when the number of queries per second accessing the centralized database is approaching single-node limits.
-
A centralized database has a single point of failure. Because of this, its probability of not being accessible is much higher.
Advantages and disadvantages of a distributed database
Advantages
-
It’s fast and easy to access data in a distributed database because data is retrieved from the nearest database shard or the one frequently used.
-
Data with different
can be stored in separate places.levels of distribution transparency DistributionTransparency -
Intensive transactions consisting of queries can be divided into multiple optimized subqueries, which can be processed in a parallel fashion.
Disadvantages
-
Sometimes, data is required from multiple sites, which takes more time than expected.
-
Relations are partitioned vertically or horizontally among different nodes. Therefore, operations such as joins need to reconstruct complete relations by carefully fetching data. These operations can become much more expensive and complex.
-
It’s difficult to maintain consistency of data across sites in the distributed database, and it requires extra measures.
-
Updations and backups in distributed databases take time to synchronize data.
Query optimization and processing speed in a distributed database
A transaction in the distributed database depends on the type of query, number of sites (shards) involved, communication speed, and other factors, such as underlying hardware and the type of database used. However, as an example, let’s assume a query accessing three tables, Store
, Product
, and Sales
, residing on different sites.
The number of attributes in each table is given in the following figure:
Let’s assume the distribution of both tables on different sites is the following:
- The
Store
table has 10,000 tuples stored at site A. - The
Product
table has 100,000 tuples stored at site B. - The
Sales
table has one million tuples stored at site A.
Now, assume that we need to process the following query:
Select Store_key from (Store JOIN Sales JOIN Product)
where Region= 'East' AND Brand='Wolf';
The above query performs the join operations on the Store
, Sales
, and Product
tables and retrieves the Store_key
values from the table generated in the result of join operations.
Next, assume every stored tuple is 200 bits long. That’s equal to 25 Bytes. Furthermore, estimated cardinalities of certain intermediate results are as follows:
- The number of the
Wolf
brand is 10. - The number of
East
region stores is 3000 (since there are 10,000 rows in the store table, and 3000 have region as east).
Communication assumptions are the following:
- Data rate