Skip to content
/ migr8 Public
forked from reverbdotcom/migr8

Concurrent redis migration utility written in Go

License

Notifications You must be signed in to change notification settings

oniestel/migr8

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

migr8

Redis Migration Utility written in Go

Build

migr8 uses gb to vendor dependencies.

To install it run, go get github.com/constabulary/gb/...

Tests require that redis-server is somewhere in your $PATH.

make To run tests and create a binary

Usage

NAME:
   migr8 - It's time to move some redis

USAGE:
   migr8 [global options] command [command options] [arguments...]

VERSION:
   0.0.0

COMMANDS:
   migrate	Migrate one redis to a new redis
   delete	Delete all keys with the given prefix
   help, h	Shows a list of commands or help for one command

GLOBAL OPTIONS:
   --dry-run, --dr			Run in dry-run mode
   --source, -s "127.0.0.1:6379"	The redis server to pull data from
   --dest, -d "127.0.0.1:6379"		The destination redis server
   --workers, -w "2"			The count of workers to spin up
   --batch, -b "10"			The batch size
   --prefix, -p 			The key prefix to act on
   --clear-dest, -c			Clear the destination of all it's keys and values
   --help, -h				show help
   --version, -v			print the version

Cross Compile for Linux:

Note: You will need the Go cross compile tools. If you're using homebrew: brew install go --cross-compile-common

make linux will build a linux binary in bin/

About

Concurrent redis migration utility written in Go

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 98.4%
  • Makefile 1.6%