forked from ccfos/nightingale
-
Notifications
You must be signed in to change notification settings - Fork 0
/
busi_group_cache.go
111 lines (87 loc) · 2.51 KB
/
busi_group_cache.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
package memsto
import (
"log"
"sync"
"time"
"github.com/ccfos/nightingale/v6/models"
"github.com/ccfos/nightingale/v6/pkg/ctx"
"github.com/pkg/errors"
"github.com/toolkits/pkg/logger"
)
type BusiGroupCacheType struct {
statTotal int64
statLastUpdated int64
ctx *ctx.Context
stats *Stats
sync.RWMutex
ugs map[int64]*models.BusiGroup // key: id
}
func NewBusiGroupCache(ctx *ctx.Context, stats *Stats) *BusiGroupCacheType {
bg := &BusiGroupCacheType{
statTotal: -1,
statLastUpdated: -1,
ugs: make(map[int64]*models.BusiGroup),
ctx: ctx,
stats: stats,
}
bg.SyncBusiGroups()
return bg
}
func (c *BusiGroupCacheType) StatChanged(total, lastUpdated int64) bool {
if c.statTotal == total && c.statLastUpdated == lastUpdated {
return false
}
return true
}
func (c *BusiGroupCacheType) Set(ugs map[int64]*models.BusiGroup, total, lastUpdated int64) {
c.Lock()
c.ugs = ugs
c.Unlock()
// only one goroutine used, so no need lock
c.statTotal = total
c.statLastUpdated = lastUpdated
}
func (c *BusiGroupCacheType) GetByBusiGroupId(id int64) *models.BusiGroup {
c.RLock()
defer c.RUnlock()
return c.ugs[id]
}
func (c *BusiGroupCacheType) SyncBusiGroups() {
err := c.syncBusiGroups()
if err != nil {
log.Fatalln("failed to sync busi groups:", err)
}
go c.loopSyncBusiGroups()
}
func (c *BusiGroupCacheType) loopSyncBusiGroups() {
duration := time.Duration(9000) * time.Millisecond
for {
time.Sleep(duration)
if err := c.syncBusiGroups(); err != nil {
logger.Warning("failed to sync busi groups:", err)
}
}
}
func (c *BusiGroupCacheType) syncBusiGroups() error {
start := time.Now()
stat, err := models.BusiGroupStatistics(c.ctx)
if err != nil {
return errors.WithMessage(err, "failed to call BusiGroupStatistics")
}
if !c.StatChanged(stat.Total, stat.LastUpdated) {
c.stats.GaugeCronDuration.WithLabelValues("sync_busi_groups").Set(0)
c.stats.GaugeSyncNumber.WithLabelValues("sync_busi_groups").Set(0)
logger.Debug("busi_group not changed")
return nil
}
m, err := models.BusiGroupGetMap(c.ctx)
if err != nil {
return errors.WithMessage(err, "failed to call BusiGroupGetMap")
}
c.Set(m, stat.Total, stat.LastUpdated)
ms := time.Since(start).Milliseconds()
c.stats.GaugeCronDuration.WithLabelValues("sync_busi_groups").Set(float64(ms))
c.stats.GaugeSyncNumber.WithLabelValues("sync_busi_groups").Set(float64(len(m)))
logger.Infof("timer: sync busi groups done, cost: %dms, number: %d", ms, len(m))
return nil
}