Skip to content

Instantly share code, notes, and snippets.

@josegonzalez
Forked from iserko/redis_migrate.py
Last active April 25, 2024 02:34
Show Gist options
  • Star 55 You must be signed in to star a gist
  • Fork 18 You must be signed in to fork a gist
  • Save josegonzalez/6049a72cb163337a18102743061dfcac to your computer and use it in GitHub Desktop.
Save josegonzalez/6049a72cb163337a18102743061dfcac to your computer and use it in GitHub Desktop.
A simple script to migrate all keys from one Redis to another
#!/usr/bin/env python
import argparse
import redis
def connect_redis(conn_dict):
conn = redis.StrictRedis(host=conn_dict['host'],
port=conn_dict['port'],
db=conn_dict['db'])
return conn
def conn_string_type(string):
format = '<host>:<port>/<db>'
try:
host, portdb = string.split(':')
port, db = portdb.split('/')
db = int(db)
except ValueError:
raise argparse.ArgumentTypeError('incorrect format, should be: %s' % format)
return {'host': host,
'port': port,
'db': db}
def migrate_redis(source, destination):
src = connect_redis(source)
dst = connect_redis(destination)
for key in src.keys('*'):
ttl = src.ttl(key)
# we handle TTL command returning -1 (no expire) or -2 (no key)
if ttl < 0:
ttl = 0
print "Dumping key: %s" % key
value = src.dump(key)
if not value:
print "Skipping none"
continue
print "Restoring key: %s" % key
try:
dst.restore(key, ttl * 1000, value, replace=True)
except redis.exceptions.ResponseError:
print "Failed to restore key: %s" % key
pass
return
def run():
parser = argparse.ArgumentParser()
parser.add_argument('source', type=conn_string_type)
parser.add_argument('destination', type=conn_string_type)
options = parser.parse_args()
migrate_redis(options.source, options.destination)
if __name__ == '__main__':
run()
@josegonzalez
Copy link
Author

Usage:

virtualenv migrate-redis
source migrate-redis/bin/activate
pip install -U git+git://github.com/andymccurdy/redis-py.git
nano migrate.py # add script here
python migrate.py

@vaibhavkaul
Copy link

works great!

@giefferre
Copy link

Thanks for your effort, this saved me πŸ‘

A cool feature would be to save the dump locally instead of migrating to another redis instance

@jsimanjuntak
Copy link

is it working for live migration? also between redis single instance to redis cluster. Please give me some advice.
Thanks!

@feliperazeek
Copy link

very useful thank you!

@blackaib
Copy link

It was very helpful for me. Thanks for your contribution~!

@RATHOREDPS03-zz
Copy link

Thanks for your effort, this saved me πŸ‘

A cool feature would be to save the dump locally instead of migrating to another redis instance

@izakp
Copy link

izakp commented Jan 22, 2020

Just what I was looking for / about to write! As AWS-managed Redis deployments don't let you use MIGRATE >:(

@izakp
Copy link

izakp commented Jan 22, 2020

One question though @josegonzalez - why do you set the TTL in the destination multiplied by 1000? i.e. dst.restore(key, ttl * 1000, value, replace=True)

@izakp
Copy link

izakp commented Jan 22, 2020

Oh never mind - I see TTL returns the key's ttl value in seconds while RESTORE expects the ttl value in milliseconds. πŸ‘ thorough work!

@cheryomushkin
Copy link

Thanks for your effort! Worked like a charm!

@rishi1kumar
Copy link

Can

Thanks for your effort, this saved me πŸ‘

A cool feature would be to save the dump locally instead of migrating to another redis instance

Can you help in editing the script as I am not a devloper and i need to migrate redis data to another redis db

@Khachik-IM
Copy link

Thanks a lot. You saved my time πŸ‘ πŸ‘ πŸ‘ πŸ‘

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment