Added contents for scalability

pull/1070/head
J-Atulya 2025-04-12 23:44:52 +05:30
parent d8f5bdaca3
commit 489d6ee4f3
1 changed files with 1 additions and 1 deletions

View File

@ -465,7 +465,7 @@ First, you'll need a basic understanding of common principles, learning about wh
- **Replication lag** : When you copy data from the main database to replicas, there's a small delay. The replicas might not have the very latest updates right away. - **Replication lag** : When you copy data from the main database to replicas, there's a small delay. The replicas might not have the very latest updates right away.
- **Consistency issues in write-heavy apps** : If your app writes a lot of data (e.g., saving user actions), the replicas may fall behind, and different servers might show different versions of the data for a short time. - **Consistency issues in write-heavy apps** : If your app writes a lot of data (e.g., saving user actions), the replicas may fall behind, and different servers might show different versions of the data for a short time.
## Database Partitioning [Sharding](https://learn.microsoft.com/en-us/azure/architecture/patterns/sharding) ## Database Partitioning - [Sharding](https://learn.microsoft.com/en-us/azure/architecture/patterns/sharding)
**Sharding** splits a large database into smaller parts, called shards, each stored on separate machines. **Sharding** splits a large database into smaller parts, called shards, each stored on separate machines.