Files
tidb/pkg/util/wait_group_wrapper.go

266 lines
7.5 KiB
Go

// 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,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package util
import (
"context"
"sync"
"time"
"github.com/pingcap/tidb/pkg/util/logutil"
"github.com/tiancaiamao/gp"
"go.uber.org/zap"
"golang.org/x/sync/errgroup"
)
// WaitGroupEnhancedWrapper wrapper wg, it provides the basic ability of WaitGroupWrapper with checking unexited process
// if the `exited` signal is true by print them on log.
type WaitGroupEnhancedWrapper struct {
sync.WaitGroup
source string
mu struct {
sync.Mutex
registerProcess map[string]struct{}
}
}
// NewWaitGroupEnhancedWrapper returns WaitGroupEnhancedWrapper, the empty source indicates the unit test, then
// the `checkUnExitedProcess` won't be executed.
func NewWaitGroupEnhancedWrapper(source string, exit chan struct{}, exitedCheck bool) *WaitGroupEnhancedWrapper {
wgew := &WaitGroupEnhancedWrapper{
source: source,
}
wgew.mu.registerProcess = make(map[string]struct{})
if exitedCheck {
wgew.Add(1)
go wgew.checkUnExitedProcess(exit)
}
return wgew
}
func (w *WaitGroupEnhancedWrapper) checkUnExitedProcess(exit chan struct{}) {
defer func() {
logutil.BgLogger().Info("waitGroupWrapper exit-checking exited", zap.String("source", w.source))
w.Done()
}()
logutil.BgLogger().Info("waitGroupWrapper enable exit-checking", zap.String("source", w.source))
<-exit
logutil.BgLogger().Info("waitGroupWrapper start exit-checking", zap.String("source", w.source))
if w.check() {
ticker := time.NewTicker(2 * time.Second)
defer ticker.Stop()
for {
<-ticker.C
continueCheck := w.check()
if !continueCheck {
return
}
}
}
}
func (w *WaitGroupEnhancedWrapper) check() bool {
unexitedProcess := make([]string, 0)
w.mu.Lock()
for key := range w.mu.registerProcess {
unexitedProcess = append(unexitedProcess, key)
}
w.mu.Unlock()
if len(unexitedProcess) > 0 {
logutil.BgLogger().Warn("background process unexited while received exited signal",
zap.Strings("process", unexitedProcess),
zap.String("source", w.source))
return true
}
logutil.BgLogger().Info("waitGroupWrapper finish checking unexited process", zap.String("source", w.source))
return false
}
// Run runs a function in a goroutine, adds 1 to WaitGroup
// and calls done when function returns. Please DO NOT use panic
// in the cb function.
// Note that the registered label shouldn't be duplicated.
func (w *WaitGroupEnhancedWrapper) Run(exec func(), label string) {
w.onStart(label)
w.Add(1)
go func() {
defer func() {
w.onExit(label)
w.Done()
}()
exec()
}()
}
// RunWithRecover wraps goroutine startup call with force recovery, add 1 to WaitGroup
// and call done when function return.
// exec is that execute logic function. recoverFn is that handler will be called after recover and before dump stack,
// passing `nil` means noop.
// Note that the registered label shouldn't be duplicated.
func (w *WaitGroupEnhancedWrapper) RunWithRecover(exec func(), recoverFn func(r any), label string) {
w.onStart(label)
w.Add(1)
go func() {
defer func() {
r := recover()
if r != nil && recoverFn != nil {
logutil.BgLogger().Info("WaitGroupEnhancedWrapper exec panic recovered", zap.String("process", label))
recoverFn(r)
}
w.onExit(label)
w.Done()
}()
exec()
}()
}
func (w *WaitGroupEnhancedWrapper) onStart(label string) {
w.mu.Lock()
_, ok := w.mu.registerProcess[label]
w.mu.Unlock()
if ok {
logutil.BgLogger().Panic("WaitGroupEnhancedWrapper received duplicated source process",
zap.String("source", w.source),
zap.String("process", label))
}
w.mu.Lock()
w.mu.registerProcess[label] = struct{}{}
w.mu.Unlock()
logutil.BgLogger().Info("background process started",
zap.String("source", w.source),
zap.String("process", label))
}
func (w *WaitGroupEnhancedWrapper) onExit(label string) {
w.mu.Lock()
delete(w.mu.registerProcess, label)
w.mu.Unlock()
logutil.BgLogger().Info("background process exited",
zap.String("source", w.source),
zap.String("process", label))
}
// WaitGroupWrapper is a wrapper for sync.WaitGroup
type WaitGroupWrapper struct {
sync.WaitGroup
}
// Run runs a function in a goroutine, adds 1 to WaitGroup
// and calls done when function returns. Please DO NOT use panic
// in the cb function.
func (w *WaitGroupWrapper) Run(exec func()) {
w.Add(1)
go func() {
defer w.Done()
exec()
}()
}
// RunWithLog works like Run, but it also logs on panic.
func (w *WaitGroupWrapper) RunWithLog(exec func()) {
w.Add(1)
go func() {
defer w.Done()
defer func() {
if r := recover(); r != nil {
logutil.BgLogger().Error("panic in the wait group", zap.Any("recover", r), zap.Stack("stack"))
}
}()
exec()
}()
}
// RunWithRecover wraps goroutine startup call with force recovery, add 1 to WaitGroup
// and call done when function return. it will dump current goroutine stack into log if catch any recover result.
// exec is that execute logic function. recoverFn is that handler will be called after recover and before dump stack,
// passing `nil` means noop.
func (w *WaitGroupWrapper) RunWithRecover(exec func(), recoverFn func(r any)) {
w.Add(1)
go func() {
defer func() {
r := recover()
if recoverFn != nil {
recoverFn(r)
}
if r != nil {
logutil.BgLogger().Error("panic in the wait group", zap.Any("recover", r), zap.Stack("stack"))
}
w.Done()
}()
exec()
}()
}
// WaitGroupPool is a wrapper for sync.WaitGroup and support goroutine pool
type WaitGroupPool struct {
sync.WaitGroup
gp *gp.Pool
}
// NewWaitGroupPool returns WaitGroupPool
func NewWaitGroupPool(gp *gp.Pool) *WaitGroupPool {
var wg WaitGroupPool
wg.gp = gp
return &wg
}
// Run runs a function in a goroutine, adds 1 to WaitGroup
// and calls done when function returns. Please DO NOT use panic
// in the cb function.
func (w *WaitGroupPool) Run(exec func()) {
w.Add(1)
w.gp.Go(func() {
defer w.Done()
exec()
})
}
// ErrorGroupWithRecover will recover panic from error group. Please note that
// panic will break the control flow unexpectedly, even if we recover it some key
// logic may be skipped due to panic, for example, Mutex.Unlock(), and continue
// running may cause unexpected behaviour. Use it with caution.
type ErrorGroupWithRecover struct {
*errgroup.Group
}
// NewErrorGroupWithRecover creates a ErrorGroupWithRecover.
func NewErrorGroupWithRecover() *ErrorGroupWithRecover {
return &ErrorGroupWithRecover{
&errgroup.Group{},
}
}
// NewErrorGroupWithRecoverWithCtx is like errgroup.WithContext, but returns a
// ErrorGroupWithRecover.
func NewErrorGroupWithRecoverWithCtx(ctx context.Context) (*ErrorGroupWithRecover, context.Context) {
eg, ctx2 := errgroup.WithContext(ctx)
return &ErrorGroupWithRecover{
eg,
}, ctx2
}
// Go is like errgroup.Group.Go, but convert panic and its stack into error.
func (g *ErrorGroupWithRecover) Go(fn func() error) {
g.Group.Go(func() (err error) {
defer func() {
if r := recover(); r != nil {
logutil.BgLogger().Error("panic in the error group", zap.Any("recover", r), zap.Stack("stack"))
err = GetRecoverError(r)
}
}()
return fn()
})
}