Skip to content

Instantly share code, notes, and snippets.

@arjunKumbakkara
arjunKumbakkara / Migrate Keys from One Redis DB to Another Redis DB
Last active January 16, 2020 10:40
Beautiful and Painful Redis Cluster Migration
#set connection data accordingly
#Will only work for redis > 5.0
#Easiest way
#if it doesnt work , then try with target_db=0 for both
#Also always use -c after redis-cli . Or else the redirection wont work and it will throw (error) Move
#There are multiple ways of doing it. One is via MIGRATE command , 2nd is via DUMP and RESTORE command.
source_host=localhost
source_port=6379