2020-02-23 11:35:47 +00:00
|
|
|
package influx
|
|
|
|
|
|
|
|
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"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/bytesutil"
|
2020-12-08 18:49:32 +00:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/cgroup"
|
2020-10-05 12:18:50 +00:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/flagutil"
|
2020-02-23 11:35:47 +00:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/protoparser/common"
|
2023-01-07 02:59:39 +00:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/writeconcurrencylimiter"
|
2020-02-23 11:35:47 +00:00
|
|
|
"github.com/VictoriaMetrics/metrics"
|
|
|
|
)
|
|
|
|
|
2020-04-10 09:43:51 +00:00
|
|
|
var (
|
2021-09-13 14:04:28 +00:00
|
|
|
maxLineSize = flagutil.NewBytes("influx.maxLineSize", 256*1024, "The maximum size in bytes for a single InfluxDB line during parsing")
|
|
|
|
trimTimestamp = flag.Duration("influxTrimTimestamp", time.Millisecond, "Trim timestamps for InfluxDB line protocol data to this duration. "+
|
2020-04-10 09:43:51 +00:00
|
|
|
"Minimum practical duration is 1ms. Higher duration (i.e. 1s) may be used for reducing disk space usage for timestamp data")
|
|
|
|
)
|
|
|
|
|
2020-02-25 17:09:46 +00:00
|
|
|
// ParseStream parses r with the given args and calls callback for the parsed rows.
|
2020-02-23 11:35:47 +00:00
|
|
|
//
|
2020-11-01 21:12:13 +00:00
|
|
|
// The callback can be called concurrently multiple times for streamed data from r.
|
2020-02-23 11:35:47 +00:00
|
|
|
//
|
|
|
|
// callback shouldn't hold rows after returning.
|
2020-02-25 17:09:46 +00:00
|
|
|
func ParseStream(r io.Reader, isGzipped bool, precision, db string, callback func(db string, rows []Row) error) error {
|
2023-01-07 02:59:39 +00:00
|
|
|
wcr := writeconcurrencylimiter.GetReader(r)
|
|
|
|
defer writeconcurrencylimiter.PutReader(wcr)
|
|
|
|
r = wcr
|
|
|
|
|
2020-02-25 17:09:46 +00:00
|
|
|
if isGzipped {
|
2020-02-23 11:35:47 +00:00
|
|
|
zr, err := common.GetGzipReader(r)
|
|
|
|
if err != nil {
|
2020-06-30 19:58:18 +00:00
|
|
|
return fmt.Errorf("cannot read gzipped influx line protocol data: %w", err)
|
2020-02-23 11:35:47 +00:00
|
|
|
}
|
|
|
|
defer common.PutGzipReader(zr)
|
|
|
|
r = zr
|
|
|
|
}
|
|
|
|
|
2021-10-28 09:46:27 +00:00
|
|
|
tsMultiplier := int64(0)
|
2020-02-25 17:09:46 +00:00
|
|
|
switch precision {
|
2020-02-23 11:35:47 +00:00
|
|
|
case "ns":
|
|
|
|
tsMultiplier = 1e6
|
2020-08-10 17:23:09 +00:00
|
|
|
case "u", "us", "µ":
|
2020-02-23 11:35:47 +00:00
|
|
|
tsMultiplier = 1e3
|
|
|
|
case "ms":
|
|
|
|
tsMultiplier = 1
|
|
|
|
case "s":
|
|
|
|
tsMultiplier = -1e3
|
|
|
|
case "m":
|
|
|
|
tsMultiplier = -1e3 * 60
|
|
|
|
case "h":
|
|
|
|
tsMultiplier = -1e3 * 3600
|
|
|
|
}
|
|
|
|
|
2020-09-27 23:06:27 +00:00
|
|
|
ctx := getStreamContext(r)
|
2020-02-23 11:35:47 +00:00
|
|
|
defer putStreamContext(ctx)
|
2020-09-28 01:11:55 +00:00
|
|
|
for ctx.Read() {
|
|
|
|
uw := getUnmarshalWork()
|
2022-04-06 11:00:08 +00:00
|
|
|
uw.ctx = ctx
|
|
|
|
uw.callback = callback
|
2020-09-28 01:11:55 +00:00
|
|
|
uw.db = db
|
|
|
|
uw.tsMultiplier = tsMultiplier
|
2020-09-28 14:06:26 +00:00
|
|
|
uw.reqBuf, ctx.reqBuf = ctx.reqBuf, uw.reqBuf
|
2020-11-13 11:03:54 +00:00
|
|
|
ctx.wg.Add(1)
|
2020-09-28 01:11:55 +00:00
|
|
|
common.ScheduleUnmarshalWork(uw)
|
2023-01-07 02:59:39 +00:00
|
|
|
wcr.DecConcurrency()
|
2020-02-23 11:35:47 +00:00
|
|
|
}
|
2020-11-13 11:03:54 +00:00
|
|
|
ctx.wg.Wait()
|
|
|
|
if err := ctx.Error(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return ctx.callbackErr
|
2020-02-23 11:35:47 +00:00
|
|
|
}
|
|
|
|
|
2020-09-28 01:11:55 +00:00
|
|
|
func (ctx *streamContext) Read() bool {
|
2020-07-10 08:11:17 +00:00
|
|
|
readCalls.Inc()
|
2021-06-14 12:18:46 +00:00
|
|
|
if ctx.err != nil || ctx.hasCallbackError() {
|
2020-02-23 11:35:47 +00:00
|
|
|
return false
|
|
|
|
}
|
2022-12-15 03:26:24 +00:00
|
|
|
ctx.reqBuf, ctx.tailBuf, ctx.err = common.ReadLinesBlockExt(ctx.br, ctx.reqBuf, ctx.tailBuf, maxLineSize.IntN())
|
2020-02-23 11:35:47 +00:00
|
|
|
if ctx.err != nil {
|
|
|
|
if ctx.err != io.EOF {
|
|
|
|
readErrors.Inc()
|
2020-06-30 19:58:18 +00:00
|
|
|
ctx.err = fmt.Errorf("cannot read influx line protocol data: %w", ctx.err)
|
2020-02-23 11:35:47 +00:00
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
2020-02-28 18:19:35 +00:00
|
|
|
readCalls = metrics.NewCounter(`vm_protoparser_read_calls_total{type="influx"}`)
|
|
|
|
readErrors = metrics.NewCounter(`vm_protoparser_read_errors_total{type="influx"}`)
|
|
|
|
rowsRead = metrics.NewCounter(`vm_protoparser_rows_read_total{type="influx"}`)
|
2020-02-23 11:35:47 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
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
|
2020-11-13 11:03:54 +00:00
|
|
|
|
|
|
|
wg sync.WaitGroup
|
|
|
|
callbackErrLock sync.Mutex
|
|
|
|
callbackErr error
|
2020-02-23 11:35:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (ctx *streamContext) Error() error {
|
|
|
|
if ctx.err == io.EOF {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return ctx.err
|
|
|
|
}
|
|
|
|
|
2021-06-14 12:18:46 +00:00
|
|
|
func (ctx *streamContext) hasCallbackError() bool {
|
|
|
|
ctx.callbackErrLock.Lock()
|
|
|
|
ok := ctx.callbackErr != nil
|
|
|
|
ctx.callbackErrLock.Unlock()
|
|
|
|
return ok
|
|
|
|
}
|
|
|
|
|
2020-02-23 11:35:47 +00:00
|
|
|
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
|
2020-11-13 11:03:54 +00:00
|
|
|
ctx.callbackErr = nil
|
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
|
2020-12-08 18:49:32 +00:00
|
|
|
var streamContextPoolCh = make(chan *streamContext, cgroup.AvailableCPUs())
|
2020-09-28 01:11:55 +00:00
|
|
|
|
|
|
|
type unmarshalWork struct {
|
|
|
|
rows Rows
|
2022-04-06 11:00:08 +00:00
|
|
|
ctx *streamContext
|
|
|
|
callback func(db string, rows []Row) error
|
2020-09-28 01:11:55 +00:00
|
|
|
db string
|
|
|
|
tsMultiplier int64
|
|
|
|
reqBuf []byte
|
|
|
|
}
|
|
|
|
|
|
|
|
func (uw *unmarshalWork) reset() {
|
|
|
|
uw.rows.Reset()
|
2022-04-06 11:00:08 +00:00
|
|
|
uw.ctx = nil
|
2020-09-28 01:11:55 +00:00
|
|
|
uw.callback = nil
|
|
|
|
uw.db = ""
|
|
|
|
uw.tsMultiplier = 0
|
|
|
|
uw.reqBuf = uw.reqBuf[:0]
|
|
|
|
}
|
|
|
|
|
2022-04-06 11:00:08 +00:00
|
|
|
func (uw *unmarshalWork) runCallback(rows []Row) {
|
|
|
|
ctx := uw.ctx
|
|
|
|
if err := uw.callback(uw.db, rows); err != nil {
|
|
|
|
ctx.callbackErrLock.Lock()
|
|
|
|
if ctx.callbackErr == nil {
|
|
|
|
ctx.callbackErr = fmt.Errorf("error when processing imported data: %w", err)
|
|
|
|
}
|
|
|
|
ctx.callbackErrLock.Unlock()
|
|
|
|
}
|
|
|
|
ctx.wg.Done()
|
|
|
|
}
|
|
|
|
|
2020-09-28 01:11:55 +00:00
|
|
|
// Unmarshal implements common.UnmarshalWork
|
|
|
|
func (uw *unmarshalWork) Unmarshal() {
|
|
|
|
uw.rows.Unmarshal(bytesutil.ToUnsafeString(uw.reqBuf))
|
|
|
|
rows := uw.rows.Rows
|
|
|
|
rowsRead.Add(len(rows))
|
|
|
|
|
|
|
|
// Adjust timestamps according to uw.tsMultiplier
|
|
|
|
currentTs := time.Now().UnixNano() / 1e6
|
|
|
|
tsMultiplier := uw.tsMultiplier
|
2021-10-28 09:46:27 +00:00
|
|
|
if tsMultiplier == 0 {
|
|
|
|
// Default precision is 'ns'. See https://docs.influxdata.com/influxdb/v1.7/write_protocols/line_protocol_tutorial/#timestamp
|
|
|
|
// But it can be in ns, us, ms or s depending on the number of digits in practice.
|
|
|
|
for i := range rows {
|
|
|
|
tsPtr := &rows[i].Timestamp
|
|
|
|
*tsPtr = detectTimestamp(*tsPtr, currentTs)
|
|
|
|
}
|
|
|
|
} else if tsMultiplier >= 1 {
|
2020-09-28 01:11:55 +00:00
|
|
|
for i := range rows {
|
|
|
|
row := &rows[i]
|
|
|
|
if row.Timestamp == 0 {
|
|
|
|
row.Timestamp = currentTs
|
|
|
|
} else {
|
|
|
|
row.Timestamp /= tsMultiplier
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else if tsMultiplier < 0 {
|
|
|
|
tsMultiplier = -tsMultiplier
|
|
|
|
currentTs -= currentTs % tsMultiplier
|
|
|
|
for i := range rows {
|
|
|
|
row := &rows[i]
|
|
|
|
if row.Timestamp == 0 {
|
|
|
|
row.Timestamp = currentTs
|
|
|
|
} else {
|
|
|
|
row.Timestamp *= tsMultiplier
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Trim timestamps if required.
|
|
|
|
if tsTrim := trimTimestamp.Milliseconds(); tsTrim > 1 {
|
|
|
|
for i := range rows {
|
|
|
|
row := &rows[i]
|
|
|
|
row.Timestamp -= row.Timestamp % tsTrim
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-06 11:00:08 +00:00
|
|
|
uw.runCallback(rows)
|
2020-09-28 01:11:55 +00:00
|
|
|
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
|
2021-10-28 09:46:27 +00:00
|
|
|
|
|
|
|
func detectTimestamp(ts, currentTs int64) int64 {
|
|
|
|
if ts == 0 {
|
|
|
|
return currentTs
|
|
|
|
}
|
|
|
|
if ts >= 1e17 {
|
|
|
|
// convert nanoseconds to milliseconds
|
|
|
|
return ts / 1e6
|
|
|
|
}
|
|
|
|
if ts >= 1e14 {
|
|
|
|
// convert microseconds to milliseconds
|
|
|
|
return ts / 1e3
|
|
|
|
}
|
|
|
|
if ts >= 1e11 {
|
|
|
|
// the ts is in milliseconds
|
|
|
|
return ts
|
|
|
|
}
|
|
|
|
// convert seconds to milliseconds
|
|
|
|
return ts * 1e3
|
|
|
|
}
|