0
0
Redisquery~30 mins

Why clustering provides horizontal scaling in Redis - See It in Action

Choose your learning style9 modes available
Why Clustering Provides Horizontal Scaling
📖 Scenario: Imagine you run a popular online store. Your website stores customer data and product info in a database. As more people visit your site, the database gets slower because it has to handle many requests at once.To fix this, you decide to split the database into parts and spread them across several servers. This is called clustering. It helps your system handle more users smoothly.
🎯 Goal: You will create a simple example to show how clustering splits data across servers, allowing horizontal scaling. You will simulate data distribution and count how many items each server holds.
📋 What You'll Learn
Create a dictionary with sample data items and their values
Create a list of server names representing cluster nodes
Write code to assign each data item to a server based on a simple rule
Print the distribution of data items across servers
💡 Why This Matters
🌍 Real World
Large websites and apps use clustering to keep their databases fast and reliable as they grow.
💼 Career
Understanding clustering and horizontal scaling is important for roles like data engineers, backend developers, and system architects.
Progress0 / 4 steps
1
Create sample data items
Create a dictionary called data_items with these exact entries: 'item1': 10, 'item2': 20, 'item3': 30, 'item4': 40, 'item5': 50.
Redis
Need a hint?

Use curly braces {} to create a dictionary with keys and values separated by colons.

2
Create cluster server list
Create a list called servers with these exact values: 'server1', 'server2', 'server3'.
Redis
Need a hint?

Use square brackets [] to create a list with the server names as strings.

3
Assign data items to servers
Create an empty dictionary called distribution. Then use a for loop with variables item and value to iterate over data_items.items(). Inside the loop, assign each item to a server by using servers[hash(item) % len(servers)]. Add the item to the list for that server in distribution.
Redis
Need a hint?

Use hash(item) % len(servers) to pick a server index. Use distribution[server] = [] if the server key is not in the dictionary yet.

4
Print data distribution
Use a for loop with variables server and items to iterate over distribution.items(). Inside the loop, print the server name and the list of items assigned to it in this exact format: Server server1 has items: ['item1', 'item4'].
Redis
Need a hint?

Use print(f"Server {server} has items: {items}") inside the loop.