mirror of
https://gitee.com/milvus-io/milvus.git
synced 2024-11-30 19:08:30 +08:00
3c503afe7c
Signed-off-by: Congqi Xia <congqi.xia@zilliz.com>
113 lines
3.0 KiB
Go
113 lines
3.0 KiB
Go
// Licensed to the LF AI & Data foundation under one
|
|
// or more contributor license agreements. See the NOTICE file
|
|
// distributed with this work for additional information
|
|
// regarding copyright ownership. The ASF licenses this file
|
|
// to you 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 timerecord
|
|
|
|
import (
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/milvus-io/milvus/pkg/util/typeutil"
|
|
)
|
|
|
|
// groups maintains string to GroupChecker
|
|
var groups = typeutil.NewConcurrentMap[string, *GroupChecker]()
|
|
|
|
// GroupChecker checks members in same group silent for certain period of time
|
|
// print warning msg if there are item(s) that not reported
|
|
type GroupChecker struct {
|
|
groupName string
|
|
|
|
d time.Duration // check duration
|
|
t *time.Ticker // internal ticker
|
|
ch chan struct{} // closing signal
|
|
lastest *typeutil.ConcurrentMap[string, time.Time] // map member name => lastest report time
|
|
initOnce sync.Once
|
|
stopOnce sync.Once
|
|
|
|
fn func(list []string)
|
|
}
|
|
|
|
// init start worker goroutine
|
|
// protected by initOnce
|
|
func (gc *GroupChecker) init() {
|
|
gc.initOnce.Do(func() {
|
|
gc.ch = make(chan struct{})
|
|
go gc.work()
|
|
})
|
|
}
|
|
|
|
// work is the main procedure logic
|
|
func (gc *GroupChecker) work() {
|
|
gc.t = time.NewTicker(gc.d)
|
|
defer gc.t.Stop()
|
|
|
|
for {
|
|
select {
|
|
case <-gc.t.C:
|
|
case <-gc.ch:
|
|
return
|
|
}
|
|
|
|
var list []string
|
|
gc.lastest.Range(func(name string, ts time.Time) bool {
|
|
if time.Since(ts) > gc.d {
|
|
list = append(list, name)
|
|
}
|
|
return true
|
|
})
|
|
if len(list) > 0 && gc.fn != nil {
|
|
gc.fn(list)
|
|
}
|
|
}
|
|
}
|
|
|
|
// Check updates the latest timestamp for provided name
|
|
func (gc *GroupChecker) Check(name string) {
|
|
gc.lastest.Insert(name, time.Now())
|
|
}
|
|
|
|
// Remove deletes name from watch list
|
|
func (gc *GroupChecker) Remove(name string) {
|
|
gc.lastest.GetAndRemove(name)
|
|
}
|
|
|
|
// Stop closes the GroupChecker
|
|
func (gc *GroupChecker) Stop() {
|
|
gc.stopOnce.Do(func() {
|
|
close(gc.ch)
|
|
groups.GetAndRemove(gc.groupName)
|
|
})
|
|
}
|
|
|
|
// GetGroupChecker returns the GroupChecker with related group name
|
|
// if no exist GroupChecker has the provided name, a new instance will be created with provided params
|
|
// otherwise the params will be ignored
|
|
func GetGroupChecker(groupName string, duration time.Duration, fn func([]string)) *GroupChecker {
|
|
gc := &GroupChecker{
|
|
groupName: groupName,
|
|
d: duration,
|
|
fn: fn,
|
|
lastest: typeutil.NewConcurrentMap[string, time.Time](),
|
|
}
|
|
gc, loaded := groups.GetOrInsert(groupName, gc)
|
|
if !loaded {
|
|
gc.init()
|
|
}
|
|
|
|
return gc
|
|
}
|