Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion books/designing-data-intensive-applications.md
Original file line number Diff line number Diff line change
Expand Up @@ -1049,7 +1049,7 @@ Replication, for very large datasets or very high query throughput is not suffic

Basically, each partition is a small database of its own.

The main reason for wanting to partition data is _scalability_, query load can be load cabe distributed across many processors. Throughput can be scaled by adding more nodes.
The main reason for wanting to partition data is _scalability_, query load can be load can be distributed across many processors. Throughput can be scaled by adding more nodes.


### Partitioning and replication
Expand Down