Files
wehub-resource-sync 498b235461
Build and test / Build and test AMD64 Ubuntu 22.04 (push) Failing after 0s
Publish Builder / amazonlinux2023 (push) Failing after 1s
Build and test / UT for Go (push) Has been skipped
Publish KRTE Images / KRTE (push) Failing after 1s
Build and test / Integration Test (push) Has been skipped
Build and test / Upload Code Coverage (push) Has been skipped
Publish Builder / rockylinux9 (push) Failing after 1s
Publish Builder / ubuntu22.04 (push) Failing after 0s
Publish Builder / ubuntu24.04 (push) Failing after 0s
Publish Gpu Builder / publish-gpu-builder (push) Failing after 1s
Publish Test Images / PyTest (push) Failing after 0s
Build and test / UT for Cpp (push) Has been cancelled
chore: import upstream snapshot with attribution
2026-07-13 12:31:17 +08:00

286 lines
12 KiB
Go

package metricsutil
import (
"strconv"
"sync"
"time"
"github.com/prometheus/client_golang/prometheus"
"go.uber.org/atomic"
"github.com/milvus-io/milvus/pkg/v3/metrics"
"github.com/milvus-io/milvus/pkg/v3/util/paramtable"
"github.com/milvus-io/milvus/pkg/v3/util/typeutil"
)
// labeledRecord is a labeled sample point.
type labeledRecord interface {
// Label of the access metric.
Label() SegmentLabel
// Finish finishes the record.
Finish(err error)
// getError returns the error of the record.
// current metric system simply reject the error operation.
getError() error
}
// globalObserver is the global resource groups observer.
var (
once sync.Once
globalObserver *segmentsObserver
)
func getGlobalObserver() *segmentsObserver {
once.Do(func() {
globalObserver = newSegmentsObserver()
go func() {
d := 15 * time.Minute
ticker := time.NewTicker(d)
defer ticker.Stop()
for range ticker.C {
expireAt := time.Now().Add(-d)
globalObserver.Expire(expireAt)
}
}()
})
return globalObserver
}
// newSegmentsObserver creates a new segmentsObserver.
// Used to check if a segment is hot or cold.
func newSegmentsObserver() *segmentsObserver {
return &segmentsObserver{
nodeID: strconv.FormatInt(paramtable.GetNodeID(), 10),
segments: typeutil.NewConcurrentMap[SegmentLabel, *segmentObserver](),
}
}
// segmentsObserver is a observer all segments metrics.
type segmentsObserver struct {
nodeID string
segments *typeutil.ConcurrentMap[SegmentLabel, *segmentObserver] // map segment id to observer.
// one segment can be removed from one query node, for balancing or compacting.
// no more search operation will be performed on the segment after it is removed.
// all related metric should be expired after a while.
// may be a huge map with 100000+ entries.
}
// Observe records a new metric
func (o *segmentsObserver) Observe(m labeledRecord) {
if m.getError() != nil {
return // reject error record.
// TODO: add error as a label of metrics.
}
// fast path.
label := m.Label()
observer, ok := o.segments.Get(label)
if !ok {
// slow path.
newObserver := newSegmentObserver(o.nodeID, label)
observer, _ = o.segments.GetOrInsert(label, newObserver)
}
// do a observer.
observer.Observe(m)
}
// Expire expires the observer.
func (o *segmentsObserver) Expire(expiredAt time.Time) {
o.segments.Range(func(label SegmentLabel, value *segmentObserver) bool {
if value.IsExpired(expiredAt) {
o.segments.Remove(label)
value.Clear()
return true
}
return true
})
}
// newSegmentObserver creates a new segmentObserver.
func newSegmentObserver(nodeID string, label SegmentLabel) *segmentObserver {
now := time.Now()
return &segmentObserver{
label: label,
prom: newPromObserver(nodeID, label),
lastUpdates: atomic.NewPointer[time.Time](&now),
}
}
// segmentObserver is a observer for segment metrics.
type segmentObserver struct {
label SegmentLabel // never updates
// observers.
prom promMetricsObserver // prometheus metrics observer.
// for expiration.
lastUpdates *atomic.Pointer[time.Time] // update every access.
}
// IsExpired checks if the segment observer is expired.
func (o *segmentObserver) IsExpired(expireAt time.Time) bool {
return o.lastUpdates.Load().Before(expireAt)
}
// Observe observe a new
func (o *segmentObserver) Observe(m labeledRecord) {
now := time.Now()
o.lastUpdates.Store(&now)
switch mm := m.(type) {
case *CacheLoadRecord:
o.prom.ObserveCacheLoad(mm)
case *CacheEvictRecord:
o.prom.ObserveCacheEvict(mm)
case QuerySegmentAccessRecord:
o.prom.ObserveQueryAccess(mm)
case SearchSegmentAccessRecord:
o.prom.ObserveSearchAccess(mm)
default:
panic("unknown segment access metric")
}
}
// Clear clears the observer.
func (o *segmentObserver) Clear() {
o.prom.Clear()
}
// queryAccessHandles holds pre-cached prometheus handles for a specific query label.
type queryAccessHandles struct {
AccessTotal prometheus.Counter
AccessDuration prometheus.Counter
AccessWaitCacheTotal prometheus.Counter
AccessWaitCacheDuration prometheus.Counter
AccessGlobalDuration prometheus.Observer
AccessWaitCacheGlobalDuration prometheus.Observer
}
func newQueryAccessHandles(nodeID string, label SegmentLabel, queryLabel string) queryAccessHandles {
return queryAccessHandles{
AccessTotal: metrics.QueryNodeSegmentAccessTotal.WithLabelValues(nodeID, label.DatabaseName, label.ResourceGroup, queryLabel),
AccessDuration: metrics.QueryNodeSegmentAccessDuration.WithLabelValues(nodeID, label.DatabaseName, label.ResourceGroup, queryLabel),
AccessWaitCacheTotal: metrics.QueryNodeSegmentAccessWaitCacheTotal.WithLabelValues(nodeID, label.DatabaseName, label.ResourceGroup, queryLabel),
AccessWaitCacheDuration: metrics.QueryNodeSegmentAccessWaitCacheDuration.WithLabelValues(nodeID, label.DatabaseName, label.ResourceGroup, queryLabel),
AccessGlobalDuration: metrics.QueryNodeSegmentAccessGlobalDuration.WithLabelValues(nodeID, queryLabel),
AccessWaitCacheGlobalDuration: metrics.QueryNodeSegmentAccessWaitCacheGlobalDuration.WithLabelValues(nodeID, queryLabel),
}
}
// newPromObserver creates a new promMetrics.
func newPromObserver(nodeID string, label SegmentLabel) promMetricsObserver {
return promMetricsObserver{
nodeID: nodeID,
label: label,
DiskCacheLoadTotal: metrics.QueryNodeDiskCacheLoadTotal.WithLabelValues(nodeID, label.DatabaseName, label.ResourceGroup),
DiskCacheLoadDuration: metrics.QueryNodeDiskCacheLoadDuration.WithLabelValues(nodeID, label.DatabaseName, label.ResourceGroup),
DiskCacheLoadBytes: metrics.QueryNodeDiskCacheLoadBytes.WithLabelValues(nodeID, label.DatabaseName, label.ResourceGroup),
DiskCacheEvictTotal: metrics.QueryNodeDiskCacheEvictTotal.WithLabelValues(nodeID, label.DatabaseName, label.ResourceGroup),
DiskCacheEvictDuration: metrics.QueryNodeDiskCacheEvictDuration.WithLabelValues(nodeID, label.DatabaseName, label.ResourceGroup),
DiskCacheEvictBytes: metrics.QueryNodeDiskCacheEvictBytes.WithLabelValues(nodeID, label.DatabaseName, label.ResourceGroup),
queryAccess: newQueryAccessHandles(nodeID, label, metrics.QueryLabel),
upsertQueryAccess: newQueryAccessHandles(nodeID, label, metrics.UpsertQueryLabel),
SearchSegmentAccessTotal: metrics.QueryNodeSegmentAccessTotal.WithLabelValues(nodeID, label.DatabaseName, label.ResourceGroup, metrics.SearchLabel),
SearchSegmentAccessDuration: metrics.QueryNodeSegmentAccessDuration.WithLabelValues(nodeID, label.DatabaseName, label.ResourceGroup, metrics.SearchLabel),
SearchSegmentAccessWaitCacheTotal: metrics.QueryNodeSegmentAccessWaitCacheTotal.WithLabelValues(nodeID, label.DatabaseName, label.ResourceGroup, metrics.SearchLabel),
SearchSegmentAccessWaitCacheDuration: metrics.QueryNodeSegmentAccessWaitCacheDuration.WithLabelValues(nodeID, label.DatabaseName, label.ResourceGroup, metrics.SearchLabel),
DiskCacheLoadGlobalDuration: metrics.QueryNodeDiskCacheLoadGlobalDuration.WithLabelValues(nodeID),
DiskCacheEvictGlobalDuration: metrics.QueryNodeDiskCacheEvictGlobalDuration.WithLabelValues(nodeID),
SearchSegmentAccessGlobalDuration: metrics.QueryNodeSegmentAccessGlobalDuration.WithLabelValues(nodeID, metrics.SearchLabel),
SearchSegmentAccessWaitCacheGlobalDuration: metrics.QueryNodeSegmentAccessWaitCacheGlobalDuration.WithLabelValues(nodeID, metrics.SearchLabel),
}
}
// promMetricsObserver is a observer for prometheus metrics.
type promMetricsObserver struct {
nodeID string
label SegmentLabel // never updates
DiskCacheLoadTotal prometheus.Counter
DiskCacheLoadDuration prometheus.Counter
DiskCacheLoadBytes prometheus.Counter
DiskCacheEvictTotal prometheus.Counter
DiskCacheEvictBytes prometheus.Counter
DiskCacheEvictDuration prometheus.Counter
queryAccess queryAccessHandles
upsertQueryAccess queryAccessHandles
SearchSegmentAccessTotal prometheus.Counter
SearchSegmentAccessDuration prometheus.Counter
SearchSegmentAccessWaitCacheTotal prometheus.Counter
SearchSegmentAccessWaitCacheDuration prometheus.Counter
DiskCacheLoadGlobalDuration prometheus.Observer
DiskCacheEvictGlobalDuration prometheus.Observer
SearchSegmentAccessGlobalDuration prometheus.Observer
SearchSegmentAccessWaitCacheGlobalDuration prometheus.Observer
}
// ObserveLoad records a new cache load
func (o *promMetricsObserver) ObserveCacheLoad(r *CacheLoadRecord) {
o.DiskCacheLoadTotal.Inc()
o.DiskCacheLoadBytes.Add(r.getBytes())
d := r.getMilliseconds()
o.DiskCacheLoadDuration.Add(d)
o.DiskCacheLoadGlobalDuration.Observe(d)
}
// ObserveCacheEvict records a new cache evict.
func (o *promMetricsObserver) ObserveCacheEvict(r *CacheEvictRecord) {
o.DiskCacheEvictTotal.Inc()
o.DiskCacheEvictBytes.Add(r.getBytes())
d := r.getMilliseconds()
o.DiskCacheEvictDuration.Add(d)
o.DiskCacheEvictGlobalDuration.Observe(d)
}
// ObserveQueryAccess records a new query access.
func (o *promMetricsObserver) ObserveQueryAccess(r QuerySegmentAccessRecord) {
h := &o.queryAccess
if r.queryLabel == metrics.UpsertQueryLabel || r.queryLabel == metrics.DeleteQueryLabel || r.queryLabel == metrics.ReQueryLabel {
h = &o.upsertQueryAccess
}
h.AccessTotal.Inc()
d := r.getMilliseconds()
h.AccessDuration.Add(d)
h.AccessGlobalDuration.Observe(d)
if r.isCacheMiss {
h.AccessWaitCacheTotal.Inc()
d := r.getWaitLoadMilliseconds()
h.AccessWaitCacheDuration.Add(d)
h.AccessWaitCacheGlobalDuration.Observe(d)
}
}
// ObserveSearchAccess records a new search access.
func (o *promMetricsObserver) ObserveSearchAccess(r SearchSegmentAccessRecord) {
o.SearchSegmentAccessTotal.Inc()
d := r.getMilliseconds()
o.SearchSegmentAccessDuration.Add(d)
o.SearchSegmentAccessGlobalDuration.Observe(d)
if r.isCacheMiss {
o.SearchSegmentAccessWaitCacheTotal.Inc()
d := r.getWaitLoadMilliseconds()
o.SearchSegmentAccessWaitCacheDuration.Add(d)
o.SearchSegmentAccessWaitCacheGlobalDuration.Observe(d)
}
}
// Clear clears the prometheus metrics.
func (o *promMetricsObserver) Clear() {
label := o.label
metrics.QueryNodeDiskCacheLoadTotal.DeleteLabelValues(o.nodeID, label.DatabaseName, label.ResourceGroup)
metrics.QueryNodeDiskCacheLoadBytes.DeleteLabelValues(o.nodeID, label.DatabaseName, label.ResourceGroup)
metrics.QueryNodeDiskCacheLoadDuration.DeleteLabelValues(o.nodeID, label.DatabaseName, label.ResourceGroup)
metrics.QueryNodeDiskCacheEvictTotal.DeleteLabelValues(o.nodeID, label.DatabaseName, label.ResourceGroup)
metrics.QueryNodeDiskCacheEvictBytes.DeleteLabelValues(o.nodeID, label.DatabaseName, label.ResourceGroup)
metrics.QueryNodeDiskCacheEvictDuration.DeleteLabelValues(o.nodeID, label.DatabaseName, label.ResourceGroup)
for _, ql := range []string{metrics.SearchLabel, metrics.QueryLabel, metrics.UpsertQueryLabel, metrics.DeleteQueryLabel, metrics.ReQueryLabel} {
metrics.QueryNodeSegmentAccessTotal.DeleteLabelValues(o.nodeID, label.DatabaseName, label.ResourceGroup, ql)
metrics.QueryNodeSegmentAccessDuration.DeleteLabelValues(o.nodeID, label.DatabaseName, label.ResourceGroup, ql)
metrics.QueryNodeSegmentAccessWaitCacheTotal.DeleteLabelValues(o.nodeID, label.DatabaseName, label.ResourceGroup, ql)
metrics.QueryNodeSegmentAccessWaitCacheDuration.DeleteLabelValues(o.nodeID, label.DatabaseName, label.ResourceGroup, ql)
}
}