mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
71 lines
1.4 KiB
Go
71 lines
1.4 KiB
Go
|
package common
|
||
|
|
||
|
import (
|
||
|
"runtime"
|
||
|
"sync"
|
||
|
|
||
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/prompbmarshal"
|
||
|
)
|
||
|
|
||
|
// PushCtx is a context used for populating WriteRequest.
|
||
|
type PushCtx struct {
|
||
|
WriteRequest prompbmarshal.WriteRequest
|
||
|
|
||
|
// Labels contains flat list of all the labels used in WriteRequest.
|
||
|
Labels []prompbmarshal.Label
|
||
|
|
||
|
// Samples contains flat list of all the samples used in WriteRequest.
|
||
|
Samples []prompbmarshal.Sample
|
||
|
}
|
||
|
|
||
|
// Reset resets ctx.
|
||
|
func (ctx *PushCtx) Reset() {
|
||
|
tss := ctx.WriteRequest.Timeseries
|
||
|
for i := range tss {
|
||
|
ts := &tss[i]
|
||
|
ts.Labels = nil
|
||
|
ts.Samples = nil
|
||
|
}
|
||
|
ctx.WriteRequest.Timeseries = ctx.WriteRequest.Timeseries[:0]
|
||
|
|
||
|
labels := ctx.Labels
|
||
|
for i := range labels {
|
||
|
label := &labels[i]
|
||
|
label.Name = ""
|
||
|
label.Value = ""
|
||
|
}
|
||
|
ctx.Labels = ctx.Labels[:0]
|
||
|
|
||
|
ctx.Samples = ctx.Samples[:0]
|
||
|
}
|
||
|
|
||
|
// GetPushCtx returns PushCtx from pool.
|
||
|
//
|
||
|
// Call PutPushCtx when the ctx is no longer needed.
|
||
|
func GetPushCtx() *PushCtx {
|
||
|
select {
|
||
|
case ctx := <-pushCtxPoolCh:
|
||
|
return ctx
|
||
|
default:
|
||
|
if v := pushCtxPool.Get(); v != nil {
|
||
|
return v.(*PushCtx)
|
||
|
}
|
||
|
return &PushCtx{}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// PutPushCtx returns ctx to the pool.
|
||
|
//
|
||
|
// ctx mustn't be used after returning to the pool.
|
||
|
func PutPushCtx(ctx *PushCtx) {
|
||
|
ctx.Reset()
|
||
|
select {
|
||
|
case pushCtxPoolCh <- ctx:
|
||
|
default:
|
||
|
pushCtxPool.Put(ctx)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
var pushCtxPool sync.Pool
|
||
|
var pushCtxPoolCh = make(chan *PushCtx, runtime.GOMAXPROCS(-1))
|