-
Notifications
You must be signed in to change notification settings - Fork 287
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
etcd_worker: fix a bug that etcd worker maybe lost data at starting (#…
- Loading branch information
leoppro
authored
May 24, 2021
1 parent
1c0706e
commit 99ee8fb
Showing
2 changed files
with
163 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,162 @@ | ||
// Copyright 2021 PingCAP, Inc. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package orchestrator | ||
|
||
import ( | ||
"context" | ||
"fmt" | ||
"math/rand" | ||
"strconv" | ||
"strings" | ||
"sync" | ||
"time" | ||
|
||
"github.com/pingcap/check" | ||
"github.com/pingcap/errors" | ||
"github.com/pingcap/log" | ||
cerror "github.com/pingcap/ticdc/pkg/errors" | ||
"github.com/pingcap/ticdc/pkg/orchestrator/util" | ||
"github.com/pingcap/ticdc/pkg/util/testleak" | ||
"go.uber.org/zap" | ||
) | ||
|
||
type bankReactorState struct { | ||
c *check.C | ||
account []int | ||
pendingPatch []DataPatch | ||
index int | ||
notFirstTick bool | ||
} | ||
|
||
const bankTestPrefix = "/ticdc/test/bank/" | ||
|
||
func (b *bankReactorState) Update(key util.EtcdKey, value []byte, isInit bool) error { | ||
b.c.Assert(strings.HasPrefix(key.String(), bankTestPrefix), check.IsTrue) | ||
indexStr := key.String()[len(bankTestPrefix):] | ||
b.account[b.atoi(indexStr)] = b.atoi(string(value)) | ||
return nil | ||
} | ||
|
||
func (b *bankReactorState) GetPatches() []DataPatch { | ||
pendingPatches := b.pendingPatch | ||
b.pendingPatch = nil | ||
return pendingPatches | ||
} | ||
|
||
func (b *bankReactorState) Check() { | ||
var sum int | ||
for _, money := range b.account { | ||
sum += money | ||
} | ||
if sum != 0 { | ||
log.Info("show account", zap.Int("index", b.index), zap.Int("sum", sum), zap.Ints("account", b.account)) | ||
} | ||
b.c.Assert(sum, check.Equals, 0, check.Commentf("not ft:%t", b.notFirstTick)) | ||
} | ||
|
||
func (b *bankReactorState) atoi(value string) int { | ||
i, err := strconv.Atoi(value) | ||
b.c.Assert(err, check.IsNil) | ||
return i | ||
} | ||
|
||
func (b *bankReactorState) patchAccount(index int, fn func(int) int) { | ||
b.pendingPatch = append(b.pendingPatch, &SingleDataPatch{ | ||
Key: util.NewEtcdKey(fmt.Sprintf("%s%d", bankTestPrefix, index)), | ||
Func: func(old []byte) (newValue []byte, changed bool, err error) { | ||
oldMoney := b.atoi(string(old)) | ||
newMoney := fn(oldMoney) | ||
if oldMoney == newMoney { | ||
return old, false, nil | ||
} | ||
log.Debug("change money", zap.Int("account", index), zap.Int("from", oldMoney), zap.Int("to", newMoney)) | ||
return []byte(strconv.Itoa(newMoney)), true, nil | ||
}, | ||
}) | ||
} | ||
|
||
func (b *bankReactorState) TransferRandomly(transferNumber int) { | ||
for i := 0; i < transferNumber; i++ { | ||
accountA := rand.Intn(len(b.account)) | ||
accountB := rand.Intn(len(b.account)) | ||
transferMoney := rand.Intn(100) | ||
b.patchAccount(accountA, func(money int) int { | ||
return money - transferMoney | ||
}) | ||
b.patchAccount(accountB, func(money int) int { | ||
return money + transferMoney | ||
}) | ||
log.Debug("transfer money", zap.Int("accountA", accountA), zap.Int("accountB", accountB), zap.Int("money", transferMoney)) | ||
} | ||
} | ||
|
||
type bankReactor struct { | ||
accountNumber int | ||
} | ||
|
||
func (b *bankReactor) Tick(ctx context.Context, state ReactorState) (nextState ReactorState, err error) { | ||
bankState := (state).(*bankReactorState) | ||
bankState.Check() | ||
// transfer 20% of account | ||
bankState.TransferRandomly(rand.Intn(b.accountNumber/5 + 2)) | ||
// there is a 20% chance of restarting etcd worker | ||
if rand.Intn(10) < 2 { | ||
err = cerror.ErrReactorFinished.GenWithStackByArgs() | ||
} | ||
bankState.notFirstTick = true | ||
return state, err | ||
} | ||
|
||
func (s *etcdWorkerSuite) TestEtcdBank(c *check.C) { | ||
defer testleak.AfterTest(c)() | ||
totalAccountNumber := 25 | ||
workerNumber := 10 | ||
var wg sync.WaitGroup | ||
ctx, cancel := context.WithTimeout(context.Background(), time.Second*10) | ||
defer cancel() | ||
|
||
newClient, closer := setUpTest(c) | ||
defer closer() | ||
|
||
cli := newClient() | ||
defer func() { | ||
_ = cli.Unwrap().Close() | ||
}() | ||
|
||
for i := 0; i < totalAccountNumber; i++ { | ||
_, err := cli.Put(ctx, fmt.Sprintf("%s%d", bankTestPrefix, i), "0") | ||
c.Check(err, check.IsNil) | ||
} | ||
|
||
for i := 0; i < workerNumber; i++ { | ||
i := i | ||
wg.Add(1) | ||
go func() { | ||
defer wg.Done() | ||
for { | ||
worker, err := NewEtcdWorker(cli, bankTestPrefix, &bankReactor{ | ||
accountNumber: totalAccountNumber, | ||
}, &bankReactorState{c: c, index: i, account: make([]int, totalAccountNumber)}) | ||
c.Check(err, check.IsNil) | ||
err = worker.Run(ctx, nil, 100*time.Millisecond) | ||
if err == nil || err.Error() == "etcdserver: request timed out" { | ||
continue | ||
} | ||
c.Check(errors.Cause(err), check.Equals, context.DeadlineExceeded) | ||
return | ||
} | ||
}() | ||
} | ||
wg.Wait() | ||
} |