Search code examples
redisredis-serverredis-cluster

Migrate Redis Data To Cluster


We have a single Redis instance with a good amount of data (over 100GB). We also have an empty Redis Cluster with 6 nodes. What would be the best way to move all that data from the stand-alone instance to the Redis Cluster and make it distribute it evenly?


Solution

  • After some searching around, I came across a post detailing how to move data over to a cluster. It may take some time to move lots of data over but this is the best way I've seen so far.

    You can read about it here: https://fnordig.de/2014/03/11/redis-cluster-with-pre-existing-data/