Recall & Review
beginner
What is database scaling?
Database scaling is the process of adjusting a database system to handle increased data volume or user load by improving its capacity and performance.
Click to reveal answer
beginner
What are the two main types of database scaling?
The two main types are vertical scaling (adding more resources like CPU or RAM to a single server) and horizontal scaling (adding more servers to distribute the load).
Click to reveal answer
intermediate
Why does vertical scaling have limits?
Vertical scaling is limited by the maximum hardware capacity of a single machine and can become expensive or impractical beyond a point.
Click to reveal answer
intermediate
How does horizontal scaling help with data growth?
Horizontal scaling spreads data and requests across multiple servers, allowing the system to handle more data and users by adding more machines.
Click to reveal answer
advanced
What is sharding in database scaling?
Sharding is a horizontal scaling technique where data is split into smaller parts called shards, each stored on different servers to improve performance and capacity.
Click to reveal answer
Which scaling method involves adding more servers to handle increased data?
✗ Incorrect
Horizontal scaling means adding more servers to distribute the load and data.
What is a limitation of vertical scaling?
✗ Incorrect
Vertical scaling is limited by the maximum hardware resources available on a single machine.
What does sharding do in a database?
✗ Incorrect
Sharding splits data into smaller parts called shards, each stored on different servers.
Why is horizontal scaling preferred for very large data growth?
✗ Incorrect
Horizontal scaling distributes data and requests across multiple servers, handling large growth better.
Which of these is NOT a direct benefit of database scaling?
✗ Incorrect
Database scaling aims to reduce downtime, not increase it.
Explain how horizontal and vertical scaling differ and why both are important for handling data growth.
Think about adding resources to one machine versus adding more machines.
You got /5 concepts.
Describe what sharding is and how it helps databases scale with growing data.
Imagine dividing a big book into chapters stored in different libraries.
You got /4 concepts.