Skip to content

Instantly share code, notes, and snippets.

View jstr's full-sized avatar

James Stradling jstr

  • Nelson, New Zealand
  • 02:48 (UTC +12:00)
View GitHub Profile
@jstr
jstr / migrate-redis.py
Created September 26, 2016 03:25 — forked from thomasst/migrate-redis.py
Migrate Redis data on Amazon ElastiCache
"""
Copies all keys from the source Redis host to the destination Redis host.
Useful to migrate Redis instances where commands like SLAVEOF and MIGRATE are
restricted (e.g. on Amazon ElastiCache).
The script scans through the keyspace of the given database number and uses
a pipeline of DUMP and RESTORE commands to migrate the keys.
Requires Redis 2.8.0 or higher.