mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-31 15:06:26 +00:00
app/vminsert: fixes merge conflicts
This commit is contained in:
parent
fbfd7415da
commit
1ab593f807
2 changed files with 7 additions and 3 deletions
|
@ -8,7 +8,8 @@ import (
|
||||||
"github.com/VictoriaMetrics/VictoriaMetrics/app/vminsert/netstorage"
|
"github.com/VictoriaMetrics/VictoriaMetrics/app/vminsert/netstorage"
|
||||||
"github.com/VictoriaMetrics/VictoriaMetrics/lib/auth"
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/auth"
|
||||||
"github.com/VictoriaMetrics/VictoriaMetrics/lib/logger"
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/logger"
|
||||||
parser "github.com/VictoriaMetrics/VictoriaMetrics/lib/protoparser/vmimport"
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/protoparser/vmimport"
|
||||||
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/protoparser/vmimport/stream"
|
||||||
"github.com/VictoriaMetrics/VictoriaMetrics/lib/storage"
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/storage"
|
||||||
"github.com/VictoriaMetrics/VictoriaMetrics/lib/tenantmetrics"
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/tenantmetrics"
|
||||||
"github.com/VictoriaMetrics/metrics"
|
"github.com/VictoriaMetrics/metrics"
|
||||||
|
@ -29,12 +30,12 @@ func generateUniqueGenerationID() []byte {
|
||||||
// InsertHandler processes `/api/v1/update/series` request.
|
// InsertHandler processes `/api/v1/update/series` request.
|
||||||
func InsertHandler(at *auth.Token, req *http.Request) error {
|
func InsertHandler(at *auth.Token, req *http.Request) error {
|
||||||
isGzipped := req.Header.Get("Content-Encoding") == "gzip"
|
isGzipped := req.Header.Get("Content-Encoding") == "gzip"
|
||||||
return parser.ParseStream(req.Body, isGzipped, func(rows []parser.Row) error {
|
return stream.Parse(req.Body, isGzipped, func(rows []vmimport.Row) error {
|
||||||
return insertRows(at, rows)
|
return insertRows(at, rows)
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
||||||
func insertRows(at *auth.Token, rows []parser.Row) error {
|
func insertRows(at *auth.Token, rows []vmimport.Row) error {
|
||||||
ctx := netstorage.GetInsertCtx()
|
ctx := netstorage.GetInsertCtx()
|
||||||
defer netstorage.PutInsertCtx(ctx)
|
defer netstorage.PutInsertCtx(ctx)
|
||||||
|
|
||||||
|
|
|
@ -587,6 +587,9 @@ func (pts *packedTimeseries) Unpack(dst *Result, tbfs []*tmpBlocksFile, tr stora
|
||||||
dedupInterval := storage.GetDedupInterval()
|
dedupInterval := storage.GetDedupInterval()
|
||||||
mergeSortBlocks(dst, sbh, dedupInterval)
|
mergeSortBlocks(dst, sbh, dedupInterval)
|
||||||
seriesUpdateSbss, err := pts.unpackUpdateAddrs(tbfs, tr)
|
seriesUpdateSbss, err := pts.unpackUpdateAddrs(tbfs, tr)
|
||||||
|
if err != nil {
|
||||||
|
return fmt.Errorf("cannot unpack series updates: %w", err)
|
||||||
|
}
|
||||||
// apply updates
|
// apply updates
|
||||||
if len(seriesUpdateSbss) > 0 {
|
if len(seriesUpdateSbss) > 0 {
|
||||||
var updateDst Result
|
var updateDst Result
|
||||||
|
|
Loading…
Reference in a new issue