2020-02-23 11:35:47 +00:00
|
|
|
package graphite
|
|
|
|
|
|
|
|
import (
|
2020-09-27 23:06:27 +00:00
|
|
|
"bufio"
|
2020-04-10 09:43:51 +00:00
|
|
|
"flag"
|
2020-02-23 11:35:47 +00:00
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
"runtime"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/bytesutil"
|
2020-05-14 19:01:51 +00:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/fasttime"
|
2020-09-28 01:11:55 +00:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/logger"
|
2020-02-23 11:35:47 +00:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/protoparser/common"
|
|
|
|
"github.com/VictoriaMetrics/metrics"
|
|
|
|
)
|
|
|
|
|
2020-04-10 09:43:51 +00:00
|
|
|
var (
|
|
|
|
trimTimestamp = flag.Duration("graphiteTrimTimestamp", time.Second, "Trim timestamps for Graphite data to this duration. "+
|
|
|
|
"Minimum practical duration is 1s. Higher duration (i.e. 1m) may be used for reducing disk space usage for timestamp data")
|
|
|
|
)
|
|
|
|
|
2020-02-23 11:35:47 +00:00
|
|
|
// ParseStream parses Graphite lines from r and calls callback for the parsed rows.
|
|
|
|
//
|
2020-11-01 21:12:13 +00:00
|
|
|
// The callback can be called concurrently multiple times for streamed data from r.
|
|
|
|
// The callback can be called after ParseStream returns.
|
2020-02-23 11:35:47 +00:00
|
|
|
//
|
|
|
|
// callback shouldn't hold rows after returning.
|
|
|
|
func ParseStream(r io.Reader, callback func(rows []Row) error) error {
|
2020-09-27 23:06:27 +00:00
|
|
|
ctx := getStreamContext(r)
|
2020-02-23 11:35:47 +00:00
|
|
|
defer putStreamContext(ctx)
|
|
|
|
|
2020-09-27 23:06:27 +00:00
|
|
|
for ctx.Read() {
|
2020-09-28 01:11:55 +00:00
|
|
|
uw := getUnmarshalWork()
|
|
|
|
uw.callback = callback
|
2020-09-28 14:06:26 +00:00
|
|
|
uw.reqBuf, ctx.reqBuf = ctx.reqBuf, uw.reqBuf
|
2020-09-28 01:11:55 +00:00
|
|
|
common.ScheduleUnmarshalWork(uw)
|
2020-02-23 11:35:47 +00:00
|
|
|
}
|
|
|
|
return ctx.Error()
|
|
|
|
}
|
|
|
|
|
2020-09-27 23:06:27 +00:00
|
|
|
func (ctx *streamContext) Read() bool {
|
2020-02-23 11:35:47 +00:00
|
|
|
readCalls.Inc()
|
|
|
|
if ctx.err != nil {
|
|
|
|
return false
|
|
|
|
}
|
2020-09-27 23:06:27 +00:00
|
|
|
ctx.reqBuf, ctx.tailBuf, ctx.err = common.ReadLinesBlock(ctx.br, ctx.reqBuf, ctx.tailBuf)
|
2020-02-23 11:35:47 +00:00
|
|
|
if ctx.err != nil {
|
2020-08-14 17:39:43 +00:00
|
|
|
if ctx.err != io.EOF {
|
|
|
|
readErrors.Inc()
|
|
|
|
ctx.err = fmt.Errorf("cannot read graphite plaintext protocol data: %w", ctx.err)
|
2020-02-23 11:35:47 +00:00
|
|
|
}
|
2020-08-14 17:39:43 +00:00
|
|
|
return false
|
2020-02-23 11:35:47 +00:00
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
type streamContext struct {
|
2020-09-27 23:06:27 +00:00
|
|
|
br *bufio.Reader
|
2020-02-23 11:35:47 +00:00
|
|
|
reqBuf []byte
|
|
|
|
tailBuf []byte
|
|
|
|
err error
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ctx *streamContext) Error() error {
|
|
|
|
if ctx.err == io.EOF {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return ctx.err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ctx *streamContext) reset() {
|
2020-09-27 23:06:27 +00:00
|
|
|
ctx.br.Reset(nil)
|
2020-02-23 11:35:47 +00:00
|
|
|
ctx.reqBuf = ctx.reqBuf[:0]
|
|
|
|
ctx.tailBuf = ctx.tailBuf[:0]
|
|
|
|
ctx.err = nil
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
2020-02-28 18:19:35 +00:00
|
|
|
readCalls = metrics.NewCounter(`vm_protoparser_read_calls_total{type="graphite"}`)
|
|
|
|
readErrors = metrics.NewCounter(`vm_protoparser_read_errors_total{type="graphite"}`)
|
|
|
|
rowsRead = metrics.NewCounter(`vm_protoparser_rows_read_total{type="graphite"}`)
|
2020-02-23 11:35:47 +00:00
|
|
|
)
|
|
|
|
|
2020-09-27 23:06:27 +00:00
|
|
|
func getStreamContext(r io.Reader) *streamContext {
|
2020-02-23 11:35:47 +00:00
|
|
|
select {
|
|
|
|
case ctx := <-streamContextPoolCh:
|
2020-09-27 23:06:27 +00:00
|
|
|
ctx.br.Reset(r)
|
2020-02-23 11:35:47 +00:00
|
|
|
return ctx
|
|
|
|
default:
|
|
|
|
if v := streamContextPool.Get(); v != nil {
|
2020-09-27 23:06:27 +00:00
|
|
|
ctx := v.(*streamContext)
|
|
|
|
ctx.br.Reset(r)
|
|
|
|
return ctx
|
|
|
|
}
|
|
|
|
return &streamContext{
|
|
|
|
br: bufio.NewReaderSize(r, 64*1024),
|
2020-02-23 11:35:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func putStreamContext(ctx *streamContext) {
|
|
|
|
ctx.reset()
|
|
|
|
select {
|
|
|
|
case streamContextPoolCh <- ctx:
|
|
|
|
default:
|
|
|
|
streamContextPool.Put(ctx)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var streamContextPool sync.Pool
|
|
|
|
var streamContextPoolCh = make(chan *streamContext, runtime.GOMAXPROCS(-1))
|
2020-09-28 01:11:55 +00:00
|
|
|
|
|
|
|
type unmarshalWork struct {
|
|
|
|
rows Rows
|
|
|
|
callback func(rows []Row) error
|
|
|
|
reqBuf []byte
|
|
|
|
}
|
|
|
|
|
|
|
|
func (uw *unmarshalWork) reset() {
|
|
|
|
uw.rows.Reset()
|
|
|
|
uw.callback = nil
|
|
|
|
uw.reqBuf = uw.reqBuf[:0]
|
|
|
|
}
|
|
|
|
|
|
|
|
// Unmarshal implements common.UnmarshalWork
|
|
|
|
func (uw *unmarshalWork) Unmarshal() {
|
|
|
|
uw.rows.Unmarshal(bytesutil.ToUnsafeString(uw.reqBuf))
|
|
|
|
rows := uw.rows.Rows
|
|
|
|
rowsRead.Add(len(rows))
|
|
|
|
|
|
|
|
// Fill missing timestamps with the current timestamp rounded to seconds.
|
|
|
|
currentTimestamp := int64(fasttime.UnixTimestamp())
|
|
|
|
for i := range rows {
|
|
|
|
r := &rows[i]
|
|
|
|
if r.Timestamp == 0 || r.Timestamp == -1 {
|
|
|
|
r.Timestamp = currentTimestamp
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Convert timestamps from seconds to milliseconds.
|
|
|
|
for i := range rows {
|
|
|
|
rows[i].Timestamp *= 1e3
|
|
|
|
}
|
|
|
|
|
|
|
|
// Trim timestamps if required.
|
|
|
|
if tsTrim := trimTimestamp.Milliseconds(); tsTrim > 1000 {
|
|
|
|
for i := range rows {
|
|
|
|
row := &rows[i]
|
|
|
|
row.Timestamp -= row.Timestamp % tsTrim
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := uw.callback(rows); err != nil {
|
|
|
|
logger.Errorf("error when processing imported data: %s", err)
|
|
|
|
putUnmarshalWork(uw)
|
|
|
|
return
|
|
|
|
}
|
|
|
|
putUnmarshalWork(uw)
|
|
|
|
}
|
|
|
|
|
|
|
|
func getUnmarshalWork() *unmarshalWork {
|
|
|
|
v := unmarshalWorkPool.Get()
|
|
|
|
if v == nil {
|
|
|
|
return &unmarshalWork{}
|
|
|
|
}
|
|
|
|
return v.(*unmarshalWork)
|
|
|
|
}
|
|
|
|
|
|
|
|
func putUnmarshalWork(uw *unmarshalWork) {
|
|
|
|
uw.reset()
|
|
|
|
unmarshalWorkPool.Put(uw)
|
|
|
|
}
|
|
|
|
|
|
|
|
var unmarshalWorkPool sync.Pool
|