Resolving the CROSSSLOT Keys Error with Redis Cluster-Mode Enabled

Written by valerio-barbera | Published 2022/01/24
Tech Story Tags: redis | programming | software-development | redis-use-cases | coding | learning-to-code | crossslot-keys-error | redis-cluster-mode | hackernoon-es

TLDRInspector's cache system runs on Redis. Inspector recently moved from a single Redis server to an AWS-managed Redis cluster. Amazon ElastiCache is a fully managed caching service that can be configured in cluster mode with a simple click so it can be easily scaled in and out. A new error caused a new error to appear: Keys in request don't hash to the same slot that is used by CROSSSLOT keys that could be used by the CROS SSLOT function.via the TL;DR App

Hi, I'm Valerio, founder and CTO at Inspector.

As the Inspector's cache system runs on Redis, we recently decided to move from a single Redis server to an AWS-managed Redis cluster.

Amazon ElastiCache is a fully managed caching service that can be configured in cluster mode with a simple click so it can be easily scaled in and out.

Running a Redis cluster isn't an easy task. Orchestrating multiple Redis nodes with the same efficiency as a managed service requires a lot of vertical skills. A managed service helps us to stay focused on application development instead of dealing with infrastructure management issues.

But moving from a single server instance to a cluster enabled configuration caused a new error to appear:

CROSSSLOT Keys in request don't hash to the same slot

Where Does This New Error Come From?

When Redis operates in cluster mode, it handles data storage differently than when it operates as a single instance.

This is because it should be ready to distribute data across multiple nodes enabling horizontal scalability.

A Redis Cluster, if you are comparing it to the standalone Redis, which is the non-distributed setup, use the "HASH SLOT" concept for key management, which implies some restrictions on key operations, necessary to ensure data consistency in a distributed environment.

If you take a look at the error description, it says, "Keys in request don't hash to the same slot", it means that we are running some commands not compatible with "HASH SLOT" restrictions mentioned above.

What is a Hash Slot in Redis?

Redis Cluster determines what instance the particular key shall be assigned to using a specific algorithm.

To make it simple, when you create a new key, Redis will assign an integer to it, called hash-slot. Keys with the same hash-slot will reside on the same Redis node inside the cluster.

You can verify it by yourself with a quick example.

Connect to your Redis Cluster:

redis-cli -h [CLUSTER_ADDRESS] -p 6379

Create two new keys and checkout their assigned hash slot:

redis> SET mykey1 "Hello"
"OK"
redis> SET mykey2 "Hello 2"
"OK"
redis> CLUSTER KEYSLOT mykey1
(integer) 650
redis> CLUSTER KEYSLOT mykey2
(integer) 8734

As you can see, the cluster has assigned two different hash-slots to the keys, so they are probably stored on different nodes within the cluster.

This is exactly what happens when your application creates or changes keys in Redis.

Why does the CROSSSLOT Error Occur?

This error occurs because the application is trying to run a command on multiple keys, but the keys involved in the operation aren't in the same hash-slot.

This result in a “CROSS-SLOT” operation which is not allowed in a cluster.

Hash slots control how data is distributed within the cluster, so this constraint is necessary to avoid information corruption in a distributed environment.

In the example above we have verified that the two keys (mykey1, mykey2) have obtained two different hashes slots.

Trying to run a command that involve both keys we will get the error:

redis> SUNION mykey1 mykey2
(error) CROSSSLOT Keys in request don't hash to the same slot

How to Solve CROSSSLOT Error at the Application Level

When creating keys that could be used by multi-key operations, use hashtags ({…}) to force the keys into the same hash slot.

When the key contains a "{…}" pattern, only the substring between the braces, "{" and "}", is considered to calculate the hash slot.

For example, the keys {user1}:mykey1 and {user1}:mykey2 are hashed to the same hash-slot, because only the string inside the braces "{" and "}", that is, "user1", is used to compute the hash-slot:

redis> CLUSTER KEYSLOT {user1}:mykey1
(integer) 8006
redis> CLUSTER KEYSLOT {user1}:mykey2
(integer) 8006

redis> SUNION {user1}:mykey1 {user1}:mykey2
1) "Hello"
2) "Hello 2"

Now multi-key operations can be performed since both keys are placed in the same hash-slot.

Almost all Redis client support the "tag" feature, so you should explore the documentation of your framework/library to understand how to use it.

New to Inspector?

Are you looking for a "code-driven" monitoring tool instead of having to install things at the server level?

Get a monitoring environment specifically designed for software developers avoiding any server or infrastructure configuration.

Thanks to Inspector, you will never install things at the server level or make complex configuration in your cloud infrastructure.

Inspector works with a lightweight software library that you can install in your application like any other dependencies. Checkout the supported technology on our GitHub.

Visit our website for more details: https://inspector.dev


Also Published Here


Written by valerio-barbera | Simple Code Execution Monitoring, built for developers
Published by HackerNoon on 2022/01/24