tair-opensource / RedisShake

RedisShake is a Redis data processing and migration tool.

Home Page:https://tair-opensource.github.io/RedisShake/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

streams group中的entries-read不同步

wangshuang0220 opened this issue · comments

问题描述(Issue Description)

请在这里简要描述你遇到的问题。
源端通过xinfo groups命名查看entries-read有值,同步过来通过
XINFO GROUPS xxx entries-read字段没有值了。

环境信息(Environment)

  • RedisShake 版本(RedisShake Version):4.0.2
  • Redis 源端版本(Redis Source Version):redis7
  • Redis 目的端版本(Redis Destination Version):redis7
  • Redis 部署方式(standalone/cluster/sentinel):cluster
  • 是否在云服务商实例上部署(Deployed on Cloud Provider):

if typeByte == rdbTypeStreamListpacks2 {
/* Load the first entry ID. */
_ = structure.ReadLength(rd) // first_ms
_ = structure.ReadLength(rd) // first_seq
/* Load the maximal deleted entry ID. */
_ = structure.ReadLength(rd) // max_deleted_ms
_ = structure.ReadLength(rd) // max_deleted_seq
/* Load the offset. */
_ = structure.ReadLength(rd) // offset
}

是的,154 行的写法直接丢弃了这个值。