2023-01-04 06:19:18 +00:00
|
|
|
package common
|
|
|
|
|
|
|
|
import (
|
|
|
|
"flag"
|
2023-03-29 16:05:58 +00:00
|
|
|
"fmt"
|
|
|
|
"sync"
|
2023-01-04 06:19:18 +00:00
|
|
|
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/app/vmstorage"
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/bytesutil"
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/fasttime"
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/logger"
|
2023-03-29 16:05:58 +00:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/procutil"
|
2023-01-04 06:19:18 +00:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/prompbmarshal"
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/promrelabel"
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/storage"
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/streamaggr"
|
2023-03-29 16:05:58 +00:00
|
|
|
"github.com/VictoriaMetrics/metrics"
|
2023-01-04 06:19:18 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
streamAggrConfig = flag.String("streamAggr.config", "", "Optional path to file with stream aggregation config. "+
|
2023-01-04 06:40:00 +00:00
|
|
|
"See https://docs.victoriametrics.com/stream-aggregation.html . "+
|
2023-01-25 17:14:49 +00:00
|
|
|
"See also -remoteWrite.streamAggr.keepInput and -streamAggr.dedupInterval")
|
2023-01-04 06:40:00 +00:00
|
|
|
streamAggrKeepInput = flag.Bool("streamAggr.keepInput", false, "Whether to keep input samples after the aggregation with -streamAggr.config. "+
|
2023-01-04 06:19:18 +00:00
|
|
|
"By default the input is dropped after the aggregation, so only the aggregate data is stored. "+
|
|
|
|
"See https://docs.victoriametrics.com/stream-aggregation.html")
|
2023-01-25 17:14:49 +00:00
|
|
|
streamAggrDedupInterval = flag.Duration("streamAggr.dedupInterval", 0, "Input samples are de-duplicated with this interval before being aggregated. "+
|
|
|
|
"Only the last sample per each time series per each interval is aggregated if the interval is greater than zero")
|
2023-01-04 06:19:18 +00:00
|
|
|
)
|
|
|
|
|
2023-03-29 16:05:58 +00:00
|
|
|
var (
|
|
|
|
stopCh = make(chan struct{})
|
|
|
|
configReloaderWG sync.WaitGroup
|
|
|
|
|
|
|
|
saCfgReloads = metrics.NewCounter(`vminsert_streamagg_config_reloads_total`)
|
|
|
|
saCfgReloadErr = metrics.NewCounter(`vminsert_streamagg_config_reloads_errors_total`)
|
|
|
|
saCfgSuccess = metrics.NewCounter(`vminsert_streamagg_config_last_reload_successful`)
|
|
|
|
saCfgTimestamp = metrics.NewCounter(`vminsert_streamagg_config_last_reload_success_timestamp_seconds`)
|
|
|
|
|
|
|
|
sa *streamaggr.Aggregators
|
|
|
|
saHash uint64
|
|
|
|
)
|
|
|
|
|
2023-01-04 06:19:18 +00:00
|
|
|
// InitStreamAggr must be called after flag.Parse and before using the common package.
|
|
|
|
//
|
|
|
|
// MustStopStreamAggr must be called when stream aggr is no longer needed.
|
|
|
|
func InitStreamAggr() {
|
|
|
|
if *streamAggrConfig == "" {
|
|
|
|
return
|
|
|
|
}
|
2023-03-29 16:05:58 +00:00
|
|
|
|
|
|
|
sighupCh := procutil.NewSighupChan()
|
|
|
|
|
|
|
|
configs, hash, err := streamaggr.LoadConfigsFromFile(*streamAggrConfig)
|
2023-01-04 06:19:18 +00:00
|
|
|
if err != nil {
|
|
|
|
logger.Fatalf("cannot load -streamAggr.config=%q: %s", *streamAggrConfig, err)
|
|
|
|
}
|
2023-03-29 16:05:58 +00:00
|
|
|
a, err := streamaggr.NewAggregators(configs, pushAggregateSeries, *streamAggrDedupInterval)
|
|
|
|
if err != nil {
|
|
|
|
logger.Fatalf("cannot init -streamAggr.config=%q: %s", *streamAggrConfig, err)
|
|
|
|
}
|
2023-01-04 06:19:18 +00:00
|
|
|
sa = a
|
2023-03-29 16:05:58 +00:00
|
|
|
saHash = hash
|
|
|
|
saCfgSuccess.Set(1)
|
|
|
|
saCfgTimestamp.Set(fasttime.UnixTimestamp())
|
|
|
|
|
|
|
|
// Start config reloader.
|
|
|
|
configReloaderWG.Add(1)
|
|
|
|
go func() {
|
|
|
|
defer configReloaderWG.Done()
|
|
|
|
for {
|
|
|
|
select {
|
|
|
|
case <-sighupCh:
|
|
|
|
case <-stopCh:
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if err := reloadSaConfig(); err != nil {
|
|
|
|
logger.Errorf("cannot reload -streamAggr.config=%q: %s", *streamAggrConfig, err)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}()
|
2023-01-04 06:19:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// MustStopStreamAggr stops stream aggregators.
|
|
|
|
func MustStopStreamAggr() {
|
2023-03-29 16:05:58 +00:00
|
|
|
close(stopCh)
|
|
|
|
|
2023-01-04 06:19:18 +00:00
|
|
|
sa.MustStop()
|
|
|
|
sa = nil
|
|
|
|
|
2023-03-29 16:05:58 +00:00
|
|
|
configReloaderWG.Wait()
|
|
|
|
}
|
2023-01-04 06:19:18 +00:00
|
|
|
|
|
|
|
type streamAggrCtx struct {
|
|
|
|
mn storage.MetricName
|
|
|
|
tss [1]prompbmarshal.TimeSeries
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ctx *streamAggrCtx) Reset() {
|
|
|
|
ctx.mn.Reset()
|
|
|
|
ts := &ctx.tss[0]
|
|
|
|
promrelabel.CleanLabels(ts.Labels)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ctx *streamAggrCtx) push(mrs []storage.MetricRow) {
|
|
|
|
mn := &ctx.mn
|
|
|
|
tss := ctx.tss[:]
|
|
|
|
ts := &tss[0]
|
|
|
|
labels := ts.Labels
|
|
|
|
samples := ts.Samples
|
|
|
|
for _, mr := range mrs {
|
|
|
|
if err := mn.UnmarshalRaw(mr.MetricNameRaw); err != nil {
|
|
|
|
logger.Panicf("BUG: cannot unmarshal recently marshaled MetricName: %s", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
labels = append(labels[:0], prompbmarshal.Label{
|
|
|
|
Name: "__name__",
|
|
|
|
Value: bytesutil.ToUnsafeString(mn.MetricGroup),
|
|
|
|
})
|
|
|
|
for _, tag := range mn.Tags {
|
|
|
|
labels = append(labels, prompbmarshal.Label{
|
|
|
|
Name: bytesutil.ToUnsafeString(tag.Key),
|
|
|
|
Value: bytesutil.ToUnsafeString(tag.Value),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
samples = append(samples[:0], prompbmarshal.Sample{
|
|
|
|
Timestamp: mr.Timestamp,
|
|
|
|
Value: mr.Value,
|
|
|
|
})
|
|
|
|
|
|
|
|
ts.Labels = labels
|
|
|
|
ts.Samples = samples
|
|
|
|
|
|
|
|
sa.Push(tss)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func pushAggregateSeries(tss []prompbmarshal.TimeSeries) {
|
|
|
|
currentTimestamp := int64(fasttime.UnixTimestamp()) * 1000
|
|
|
|
var ctx InsertCtx
|
|
|
|
ctx.Reset(len(tss))
|
|
|
|
ctx.skipStreamAggr = true
|
|
|
|
for _, ts := range tss {
|
|
|
|
labels := ts.Labels
|
|
|
|
for _, label := range labels {
|
|
|
|
name := label.Name
|
|
|
|
if name == "__name__" {
|
|
|
|
name = ""
|
|
|
|
}
|
|
|
|
ctx.AddLabel(name, label.Value)
|
|
|
|
}
|
|
|
|
value := ts.Samples[0].Value
|
|
|
|
if err := ctx.WriteDataPoint(nil, ctx.Labels, currentTimestamp, value); err != nil {
|
|
|
|
logger.Errorf("cannot store aggregate series: %s", err)
|
|
|
|
// Do not continue pushing the remaining samples, since it is likely they will return the same error.
|
|
|
|
return
|
|
|
|
}
|
|
|
|
}
|
2023-01-07 06:40:07 +00:00
|
|
|
// There is no need in limiting the number of concurrent calls to vmstorage.AddRows() here,
|
|
|
|
// since the number of concurrent pushAggregateSeries() calls should be already limited by lib/streamaggr.
|
2023-01-04 06:19:18 +00:00
|
|
|
if err := vmstorage.AddRows(ctx.mrs); err != nil {
|
|
|
|
logger.Errorf("cannot flush aggregate series: %s", err)
|
|
|
|
}
|
|
|
|
}
|
2023-03-29 16:05:58 +00:00
|
|
|
|
|
|
|
func reloadSaConfig() error {
|
|
|
|
saCfgReloads.Inc()
|
|
|
|
|
|
|
|
cfgs, hash, err := streamaggr.LoadConfigsFromFile(*streamAggrConfig)
|
|
|
|
if err != nil {
|
|
|
|
saCfgSuccess.Set(0)
|
|
|
|
saCfgReloadErr.Inc()
|
|
|
|
return fmt.Errorf("cannot reload -streamAggr.config=%q: %w", *streamAggrConfig, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
if saHash == hash {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if err = sa.ReInitConfigs(cfgs); err != nil {
|
|
|
|
saCfgSuccess.Set(0)
|
|
|
|
saCfgReloadErr.Inc()
|
|
|
|
return fmt.Errorf("cannot apply new -streamAggr.config=%q: %w", *streamAggrConfig, err)
|
|
|
|
}
|
|
|
|
|
|
|
|
saHash = hash
|
|
|
|
|
|
|
|
saCfgSuccess.Set(1)
|
|
|
|
saCfgTimestamp.Set(fasttime.UnixTimestamp())
|
|
|
|
|
|
|
|
logger.Infof("Successfully reloaded stream aggregation config")
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|