When should you shard your database?

The Backend Engineering Show with Hussein Nasser

Episode | Podcast

Date: Tue, 28 Apr 2020 22:00:00 GMT

<p>Database Application level sharding is the process of splitting a table into multiple database instances in order to distribute the load. However, Sharding a database is an expensive operation (maintainability and overhead) and I suggest you do that only when you absolutely need to. That means when your single instance database can no longer serve queries with minimum latency. So I suggest you monitor that and only shard if necessary.. I rather do replication make master / backup and make requests read from replica than Sharding just because it is easier.. good question... nice idea for a video</p> <p>5:00 Partition horizontally</p> <p>7:45 Replication (Master/backup) Scale reads</p> <p>11:00 Scale writes by region</p> <p>12:30 Sharding</p> <p>16:40 Sharding in YouTube</p>