forked from ccfos/nightingale
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig_cache.go
125 lines (103 loc) · 3.28 KB
/
config_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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
package memsto
import (
"log"
"sync"
"time"
"github.com/ccfos/nightingale/v6/dumper"
"github.com/ccfos/nightingale/v6/models"
"github.com/ccfos/nightingale/v6/pkg/ctx"
"github.com/pkg/errors"
"github.com/toolkits/pkg/logger"
)
type ConfigCache struct {
statTotal int64
statLastUpdated int64
ctx *ctx.Context
stats *Stats
privateKey []byte
passWord string
mu sync.RWMutex
userVariableMap map[string]string
}
func NewConfigCache(ctx *ctx.Context, status *Stats, privateKey []byte, passWord string) *ConfigCache {
configCache := &ConfigCache{
statTotal: -1,
statLastUpdated: -1,
ctx: ctx,
stats: status,
privateKey: privateKey,
passWord: passWord,
userVariableMap: make(map[string]string),
}
configCache.initSyncConfigs()
return configCache
}
func (c *ConfigCache) initSyncConfigs() {
err := c.syncConfigs()
if err != nil {
log.Fatalln("failed to sync configs:", err)
}
go c.loopSyncConfigs()
}
func (c *ConfigCache) loopSyncConfigs() {
duration := time.Duration(9000) * time.Millisecond
for {
time.Sleep(duration)
if err := c.syncConfigs(); err != nil {
logger.Warning("failed to sync configs:", err)
}
}
}
func (c *ConfigCache) syncConfigs() error {
start := time.Now()
stat, err := models.ConfigsUserVariableStatistics(c.ctx)
if err != nil {
dumper.PutSyncRecord("user_variables", start.Unix(), -1, -1, "failed to query statistics: "+err.Error())
return errors.WithMessage(err, "failed to call userVariables")
}
if !c.statChanged(stat.Total, stat.LastUpdated) {
c.stats.GaugeCronDuration.WithLabelValues("sync_user_variables").Set(0)
c.stats.GaugeSyncNumber.WithLabelValues("sync_user_variables").Set(0)
dumper.PutSyncRecord("user_variables", start.Unix(), -1, -1, "not changed")
return nil
}
decryptMap, decryptErr := models.ConfigUserVariableGetDecryptMap(c.ctx, c.privateKey, c.passWord)
if decryptErr != nil {
dumper.PutSyncRecord("user_variables", start.Unix(), -1, -1, "failed to query records: "+decryptErr.Error())
return errors.WithMessage(err, "failed to call ConfigUserVariableGetDecryptMap")
}
c.Set(decryptMap, stat.Total, stat.LastUpdated)
ms := time.Since(start).Milliseconds()
c.stats.GaugeCronDuration.WithLabelValues("sync_user_variables").Set(float64(ms))
c.stats.GaugeSyncNumber.WithLabelValues("sync_user_variables").Set(float64(len(decryptMap)))
logger.Infof("timer: sync user_variables done, cost: %dms, number: %d", ms, len(decryptMap))
dumper.PutSyncRecord("user_variables", start.Unix(), ms, len(decryptMap), "success")
return nil
}
func (c *ConfigCache) statChanged(total int64, updated int64) bool {
if c.statTotal == total && c.statLastUpdated == updated {
return false
}
return true
}
func (c *ConfigCache) Set(decryptMap map[string]string, total int64, updated int64) {
c.mu.Lock()
defer c.mu.Unlock()
c.userVariableMap = decryptMap
c.statTotal = total
c.statLastUpdated = updated
}
func (c *ConfigCache) Get() map[string]string {
c.mu.RLock()
defer c.mu.RUnlock()
resMap := make(map[string]string, len(c.userVariableMap))
for k, v := range c.userVariableMap {
resMap[k] = v
}
return resMap
}
func (c *ConfigCache) GetLastUpdateTime() int64 {
c.mu.RLock()
defer c.mu.RUnlock()
return c.statLastUpdated
}