package opentsdb import ( "fmt" "io" "net" "runtime" "sync" "time" "github.com/VictoriaMetrics/VictoriaMetrics/app/vminsert/common" "github.com/VictoriaMetrics/VictoriaMetrics/app/vminsert/concurrencylimiter" "github.com/VictoriaMetrics/VictoriaMetrics/app/vminsert/netstorage" "github.com/VictoriaMetrics/VictoriaMetrics/lib/auth" "github.com/VictoriaMetrics/VictoriaMetrics/lib/bytesutil" "github.com/VictoriaMetrics/VictoriaMetrics/lib/protoparser/opentsdb" "github.com/VictoriaMetrics/VictoriaMetrics/lib/tenantmetrics" "github.com/VictoriaMetrics/metrics" "github.com/valyala/fastjson/fastfloat" ) var ( rowsInserted = tenantmetrics.NewCounterMap(`vm_rows_inserted_total{type="opentsdb"}`) rowsPerInsert = metrics.NewSummary(`vm_rows_per_insert{type="opentsdb"}`) ) // insertHandler processes remote write for OpenTSDB put protocol. // // See http://opentsdb.net/docs/build/html/api_telnet/put.html func insertHandler(at *auth.Token, r io.Reader) error { return concurrencylimiter.Do(func() error { return insertHandlerInternal(at, r) }) } func insertHandlerInternal(at *auth.Token, r io.Reader) error { ctx := getPushCtx() defer putPushCtx(ctx) for ctx.Read(r) { if err := ctx.InsertRows(at); err != nil { return err } } return ctx.Error() } func (ctx *pushCtx) InsertRows(at *auth.Token) error { rows := ctx.Rows.Rows ic := &ctx.Common ic.Reset() atCopy := *at for i := range rows { r := &rows[i] ic.Labels = ic.Labels[:0] ic.AddLabel("", r.Metric) for j := range r.Tags { tag := &r.Tags[j] if atCopy.AccountID == 0 { // Multi-tenancy support via custom tags. // Do not allow overriding AccountID and ProjectID from atCopy for security reasons. if tag.Key == "VictoriaMetrics_AccountID" { atCopy.AccountID = uint32(fastfloat.ParseUint64BestEffort(tag.Value)) } if atCopy.ProjectID == 0 && tag.Key == "VictoriaMetrics_ProjectID" { atCopy.ProjectID = uint32(fastfloat.ParseUint64BestEffort(tag.Value)) } } ic.AddLabel(tag.Key, tag.Value) } if err := ic.WriteDataPoint(&atCopy, ic.Labels, r.Timestamp, r.Value); err != nil { return err } } // Assume that all the rows for a single connection belong to the same (AccountID, ProjectID). rowsInserted.Get(&atCopy).Add(len(rows)) rowsPerInsert.Update(float64(len(rows))) return ic.FlushBufs() } const flushTimeout = 3 * time.Second func (ctx *pushCtx) Read(r io.Reader) bool { readCalls.Inc() if ctx.err != nil { return false } if c, ok := r.(net.Conn); ok { if err := c.SetReadDeadline(time.Now().Add(flushTimeout)); err != nil { readErrors.Inc() ctx.err = fmt.Errorf("cannot set read deadline: %s", err) return false } } ctx.reqBuf, ctx.tailBuf, ctx.err = common.ReadLinesBlock(r, ctx.reqBuf, ctx.tailBuf) if ctx.err != nil { if ne, ok := ctx.err.(net.Error); ok && ne.Timeout() { // Flush the read data on timeout and try reading again. ctx.err = nil } else { if ctx.err != io.EOF { readErrors.Inc() ctx.err = fmt.Errorf("cannot read OpenTSDB put protocol data: %s", ctx.err) } return false } } ctx.Rows.Unmarshal(bytesutil.ToUnsafeString(ctx.reqBuf)) // Fill in missing timestamps currentTimestamp := time.Now().Unix() rows := ctx.Rows.Rows for i := range rows { r := &rows[i] if r.Timestamp == 0 { r.Timestamp = currentTimestamp } } // Convert timestamps from seconds to milliseconds for i := range rows { rows[i].Timestamp *= 1e3 } return true } type pushCtx struct { Rows opentsdb.Rows Common netstorage.InsertCtx reqBuf []byte tailBuf []byte err error } func (ctx *pushCtx) Error() error { if ctx.err == io.EOF { return nil } return ctx.err } func (ctx *pushCtx) reset() { ctx.Rows.Reset() ctx.Common.Reset() ctx.reqBuf = ctx.reqBuf[:0] ctx.tailBuf = ctx.tailBuf[:0] ctx.err = nil } var ( readCalls = metrics.NewCounter(`vm_read_calls_total{name="opentsdb"}`) readErrors = metrics.NewCounter(`vm_read_errors_total{name="opentsdb"}`) ) func getPushCtx() *pushCtx { select { case ctx := <-pushCtxPoolCh: return ctx default: if v := pushCtxPool.Get(); v != nil { return v.(*pushCtx) } return &pushCtx{} } } 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))