This repository has been archived by the owner on Nov 24, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 188
/
Copy pathmode.go
59 lines (50 loc) · 1.67 KB
/
mode.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// Copyright 2019 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 syncer
import (
"context"
"time"
"github.com/pingcap/errors"
"github.com/pingcap/failpoint"
"github.com/pingcap/dm/dm/pb"
"github.com/pingcap/dm/dm/unit"
"github.com/pingcap/dm/pkg/log"
sm "github.com/pingcap/dm/syncer/safe-mode"
)
func (s *Syncer) enableSafeModeInitializationPhase(ctx context.Context, safeMode *sm.SafeMode) {
safeMode.Reset() // in initialization phase, reset first
safeMode.Add(1) // try to enable
if s.cfg.SafeMode {
safeMode.Add(1) // add 1 but should no corresponding -1
log.Info("[syncer] enable safe-mode by config")
}
go func() {
defer func() {
err := safeMode.Add(-1) // try to disable after 5 minutes
if err != nil {
// send error to the fatal chan to interrupt the process
s.runFatalChan <- unit.NewProcessError(pb.ErrorType_UnknownError, errors.ErrorStack(err))
}
}()
initPhaseSeconds := 300
failpoint.Inject("SafeModeInitPhaseSeconds", func(val failpoint.Value) {
seconds, _ := val.(int)
initPhaseSeconds = seconds
log.Infof("[failpoint] set initPhaseSeconds to %d", seconds)
})
select {
case <-ctx.Done():
case <-time.After(time.Duration(initPhaseSeconds) * time.Second):
}
}()
}