Database Concepts
Disadvantages of sharding
What are the possible issues and disadvantages related to database sharding?
Database Concepts
Database Partitioning
What is a database table partitioning? Partitioning is the process of dividing large database table into smaller parts. Partitioning helping in making queries fast, as after dividing large table, queries have to access smaller data. What are different ways of partitioning? Two ways: Horizontal partitioning Vertical partitioning What is Vertical Read more…