Redis Cluster Migration from Another Cloud with redis-shake
redis-shake is an open-source Redis migration tool that allows you to migrate Redis Cluster data online or by importing backup files. However, if the source Redis Cluster is deployed in another cloud, the SYNC and PSYNC commands may have been disabled by the cloud vendors. In this case, online migration is not supported and you can only migrate data by importing backup files.
The following describes how to use redis-shake for backup migration to a DCS Redis Cluster instance.
Importing Backup Files
If the source Redis and the destitution Redis cannot be connected, or the source Redis is deployed on other clouds, you can migrate data by importing backup files.
- Create a Redis Cluster instance on the DCS console.
The memory of this instance cannot be smaller than that of the source Redis.
- Run the following command to obtain the IP addresses and port numbers of all masters of the source Redis and target Redis:
redis-cli -h {redis_address} -p {redis_port} -a {redis_password} cluster nodes
In the command output similar to the following, obtain the IP addresses and ports of all masters.

After Redis is installed, it runs with redis-cli. To install Redis on CentOS, run the yum install redis command.
- Prepare a cloud server and install redis-shake.
redis-shake must be able to access the target Redis and bound to an EIP.
You can use HUAWEI CLOUD ECS and configure the same VPC, subnet, and security group for the ECS and the DCS instance.
Download and decompress the release version of redis-shake.

If the source Redis is deployed in the data center intranet, install redis-shake on the intranet server. Export data and then upload the data to the cloud server as instructed by the following steps
- Export the RDB file.
- Edit the redis-shake.conf file by providing the following information about all the masters of both the source and the target:
source.type = cluster # If there is no password, skip the following parameter. source.password_raw = {source_redis_password} # IP addresses and port numbers of all masters of the source Redis Cluster, which are separated by semicolons (;). source.address = {master1_ip}:{master1_port};{master2_ip}:{master2_port}...{masterN_ip}:{masterN_port} - Run the following command to export the RDB file:
./redis-shake -type dump -conf redis-shake.conf
If the following information is displayed in the execution log, the backup file is exported successfully:
execute runner[*run.CmdDump] finished!
- Edit the redis-shake.conf file by providing the following information about all the masters of both the source and the target:
- Import the RDB file.
- Import the RDB file (or files) to the cloud server. The cloud server must be connected to the target DCS instance.
- Edit the redis-shake configuration file. Edit the redis-shake.conf file by providing the following information about all the masters of both the source and the target:
target.type = cluster # If there is no password, skip the following parameter. target.password_raw = {target_redis_password} # IP addresses and port numbers of all masters of the target instance, which are separated by semicolons (;). target.address = {master1_ip}:{master1_port};{master2_ip}:{master2_port}...{masterN_ip}:{masterN_port} # List the RDB files to be imported, separated by semicolons (;). rdb.input = local_dump.0;local_dump.1;local_dump.2;local_dump.3Save and exit.
- Run the following command to import the RDB file to the target instance:
./redis-shake -type restore -conf redis-shake.conf
If the following information is displayed in the execution log, the backup file is imported successfully:
Enabled http stats, set status (incr), and wait forever.
- Verify the migration.
After data synchronization, access the DCS Redis Cluster instance using redis-cli. Run the info command to query the number of keys in the Keyspace section to confirm that data has been fully imported.
If the data has not been fully imported, run the flushall or flushdb command to clear the cached data in the instance, and synchronize data again.
Last Article: Codis Migration from Another Cloud with redis-cli and redis-port
Next Article: Migrating Data from DCS to Self-Hosted Redis
Did this article solve your problem?
Thank you for your score!Your feedback would help us improve the website.