当前位置:   article > 正文

redis数据迁移_err dump payload version or checksum are wrong

err dump payload version or checksum are wrong

1.需求

需要将一个redis实例中的keys,转移到另一个redis实例

2.迁移方案

部分命令由 docker 执行,原因目标 redis 部署在 docker 

2.1 源实例与目标实例版本相同

2.1.1 使用dump命令

  1. #!/bin/bash
  2. #redis 源ip
  3. src_ip=10.88.91.89
  4. #redis 源port
  5. src_port=6379
  6. #redis 目的ip
  7. dest_ip=192.168.10.6
  8. #redis 目的port
  9. dest_port=6379
  10. #要迁移的key前缀
  11. key_prefix=''
  12. i=1
  13. docker exec -i 740f4b08a26d redis-cli -h $src_ip -p $src_port -n 0 keys "*" | while read key
  14. do
  15. # 禁止删除原实例数据
  16. #docker exec -i 740f4b08a26d redis-cli -h $dest_ip -p $dest_port -n 0 del $key
  17. docker exec -i 740f4b08a26d redis-cli -h $src_ip -p $src_port -n 0 --raw dump $key | perl -pe 'chomp if eof' | docker exec -i 740f4b08a26d redis-cli -h $dest_ip -p $dest_port -n 0 -x restore $key 0 &
  18. echo "$i migrate key $key"
  19. ((i++))
  20. done

2.1.2 使用migrate命令

migrate用法:

MIGRATE host port key destination-db timeout [COPY] [REPLACE] 

起始版本:2.6.0
时间复杂度: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.

迁移脚本:copy 不会删除原redis 实例数据,replace 会删除原redis实例数据

  1. #!/bin/bash
  2. #redis 源ip
  3. src_ip=10.88.91.89
  4. #redis 源port
  5. src_port=6379
  6. #redis 目的ip
  7. dest_ip=192.168.10.6
  8. #redis 目的port
  9. dest_port=6379
  10. #要迁移的key前缀
  11. key_prefix=''
  12. i=1
  13. docker exec -i 740f4b08a26d redis-cli -h $src_ip -p $src_port -n 0 keys "*" | while read key
  14. do
  15. docker exec -i 740f4b08a26d redis-cli -h $src_ip -p $src_port migrate $dest_ip $dest_port $key 0 10000 copy &
  16. echo "$i migrate key $key"
  17. ((i++))
  18. done

2.2 源实例与目标实例版本不相同

2.2.1 不可行方案

  • 如果源实例与目标实例版本不相同,使用migrate进行迁移的时候会有如下错误:

    1. 1935 migrate key esf_common_auth_code_18587656289
    2. (error) ERR Target instance replied with error: ERR DUMP payload version or checksum are wrong
  • 如果源实例与目标实例版本不相同,使用dump进行迁移的时候会有如下错误

    (error) ERR DUMP payload version or checksum are wrong
  • 如果源实例与目标实例版本不相同,直接复制rdbw文件搭建从库为有如下报错
    1. 5453:S 23 Nov 18:13:14.153 * MASTER <-> SLAVE sync: Flushing old data
    2. 5453:S 23 Nov 18:13:14.153 * MASTER <-> SLAVE sync: Loading DB in memory
    3. 5453:S 23 Nov 18:13:14.153 # Can't handle RDB format version 8
    4. 5453:S 23 Nov 18:13:14.153 # Failed trying to load the MASTER synchronization DB from disk

2.2.2 可行方案

  1. 开启源实例aof持久化功能

    config set appendonly yes
  2. 手动进行aof持久化

    bgrewriteaof
  3. 新建一个redis实例,与目标实例版本相同并启动
  4. 将源实例的redis的aof文件导入新建实例

    redis-cli -h 127.0.0.1 -p 6395 -a password --pipe < appendonly.aof
  5. 通过dump或者migrate的方式将新实例的key迁移到目标实例

相关资源:Redis数据导入导出以及数据迁移的4种方法详解_redis导出数据txt...

redis数据迁移_weixin_34320724的博客-CSDN博客
redis数据库迁移只需一条命令_Rouemm的博客-CSDN博客_阿里云redis迁移
redis 获取不到_你不知道的redis:第三方jar无封装命令我们该怎么执行?_李奇诺的博客-CSDN博客
the input device is not a TTY_一篮小土的博客-CSDN博客
 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/531307
推荐阅读
相关标签
  

闽ICP备14008679号