Partitioning Data - Range, Hash, and When to Use Them
Source: https://arpitbhayani.me/blogs/some-data-partitioning-strategies-for-distributed-data-stores Date: 2022-01-31
Partitioning - Learn how to scale your database reads and writes by horizontally partitioning your data. Explore range-based vs hash-based approaches.
Partitioning plays a vital role in scaling a database beyond a certain scale of reads and writes. This essay takes a detailed look into the two common approaches to horizontally partition the data.
Partitioning
A database is partitioned when we split it, logically or physically, into mutually exclusive segments. Each partition of the database is a subset that can operate as a smaller independent database on its own.


