您好,登錄后才能下訂單哦!
需要將一個(gè)redis實(shí)例中的部分keys,轉(zhuǎn)移到另一個(gè)redis實(shí)例
#!/bin/bash
#redis 源ip
src_ip=127.0.0.1
#redis 源port
src_port=6392
#redis 目的ip
dest_ip=127.0.0.1
#redis 目的port
dest_port=6393
#要遷移的key前綴
key_prefix=test
i=1
redis-cli -h $src_ip -p $src_port keys "${key_prefix}*" | while read key
do
redis-cli -h $dest_ip -p $dest_port del $key
redis-cli -h $src_ip -p $src_port --raw dump $key | perl -pe 'chomp if eof' | redis-cli -h $dest_ip -p $dest_port -x restore $key 0
echo "$i migrate key $key"
((i++))
done
migrate用法:
MIGRATE host port key destination-db timeout [COPY] [REPLACE]
起始版本:2.6.0
時(shí)間復(fù)雜度:This command actually executes a DUMP+DEL in the source instance, and a RESTORE in the target instance. See the pages of these commands for time complexity. Also an O(N) data transfer between the two instances is performed.
遷移腳本
#!/bin/bash
#redis 源ip
src_ip=127.0.0.1
#redis 源port
src_port=6392
#redis 目的ip
dest_ip=127.0.0.1
#redis 目的port
dest_port=6393
#要遷移的key前綴
key_prefix=test
i=1
redis-cli -h $src_ip -p $src_port keys "${key_prefix}*" | while read key
do
redis-cli -h $src_ip -p $src_port migrate $dest_ip $dest_port $key 0 1000 replace
echo "$i migrate key $key"
((i++))
done
如果源實(shí)例與目標(biāo)實(shí)例版本不相同,使用migrate進(jìn)行遷移的時(shí)候會(huì)有如下錯(cuò)誤:
1935 migrate key esf_common_auth_code_18587656289
(error) ERR Target instance replied with error: ERR DUMP payload version or checksum are wrong
如果源實(shí)例與目標(biāo)實(shí)例版本不相同,使用dump進(jìn)行遷移的時(shí)候會(huì)有如下錯(cuò)誤
(error) ERR DUMP payload version or checksum are wrong
5453:S 23 Nov 18:13:14.153 * MASTER <-> SLAVE sync: Flushing old data
5453:S 23 Nov 18:13:14.153 * MASTER <-> SLAVE sync: Loading DB in memory
5453:S 23 Nov 18:13:14.153 # Can't handle RDB format version 8
5453:S 23 Nov 18:13:14.153 # Failed trying to load the MASTER synchronization DB from disk
開啟源實(shí)例aof持久化功能
config set appendonly yes
手動(dòng)進(jìn)行aof持久化
bgrewriteaof
將源實(shí)例的redis的aof文件導(dǎo)入新建實(shí)例
redis-cli -h 127.0.0.1 -p 6395 -a password --pipe < appendonly.aof
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。