bugfix: do not use select in cluster. see #131

v4
vinllen 5 years ago
parent dfa69b120d
commit b1abb9b27f
  1. 1
      src/redis-shake/common/common.go
  2. 8
      src/redis-shake/rump.go

@ -32,6 +32,7 @@ const (
TencentCluster = "tencent_cluster"
AliyunCluster = "aliyun_cluster"
UCloudCluster = "ucloud_cluster"
CodisCluster = "codis_cluster"
CoidsErrMsg = "ERR backend server 'server' not found"
)

@ -184,13 +184,14 @@ type dbRumperExecutor struct {
targetClient redis.Conn // target client
tencentNodeId string // tencent cluster node id
targetBigKeyClient redis.Conn // target client only used in big key, this is a bit ugly
previousDb int // store previous db
keyChan chan *KeyNode // keyChan is used to communicated between routine1 and routine2
resultChan chan *KeyNode // resultChan is used to communicated between routine2 and routine3
scanner scanner.Scanner // one scanner match one db/proxy
fetcherWg sync.WaitGroup
fetcherWg sync.WaitGroup
stat dbRumperExexutorStats
}
@ -203,6 +204,7 @@ func NewDbRumperExecutor(rumperId, executorId int, sourceClient, targetClient, t
targetClient: targetClient,
tencentNodeId: tencentNodeId,
targetBigKeyClient: targetBigKeyClient,
previousDb: 0,
stat: dbRumperExexutorStats{
minSize: 1 << 30,
maxSize: 0,
@ -453,7 +455,9 @@ func (dre *dbRumperExecutor) getSourceDbList() ([]int32, error) {
}
func (dre *dbRumperExecutor) doFetch(db int) error {
if conf.Options.ScanSpecialCloud != utils.TencentCluster {
// some redis type only has db0, so we add this judge
if db != dre.previousDb {
dre.previousDb = db
// send 'select' command to both source and target
log.Infof("dbRumper[%v] executor[%v] send source select db", dre.rumperId, dre.executorId)
if _, err := dre.sourceClient.Do("select", db); err != nil {

Loading…
Cancel
Save