redis-migrate 1.0.0

Creator: bradpython12

Last updated:

Add to Cart

Description:

redismigrate 1.0.0

Redis Migrate
Simple command line tool for redis data migration (minimal functionality)
It is useful when you're not able to use slaveof command (e.g. slaveof command is not available in ElastiCache) or should migrate from multiple redis servers to a single server.
Installation
pip install redis-migrate

Usage
# Basic usage
redis-migrate srchost[:port][/db] dsthost[:port][/db] [--all-keys=false] [--procs=1]

# Migrate the keys from db 0 of source host to db 1 of destination host.
redis-migrate srchost dsthost/1

# If you don't want to replace existing keys, use `--no-replace` option.
redis-migrate srchost dsthost/1 --no-replace

# Migrate the entire keys from source host at 6380 port to destination host.
# It will ignore `/db` number.
redis-migrate srchost:6380 dsthost --all-keys

# You can also set process number to use multiprocessing for speed up.
# It works only with `--all-keys`.
redis-migrate srchost dsthost --all-keys --procs 4

License
MIT







Stashed changes

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.