VictoriaMetrics/lib/logstorage/pipe_offset.go

90 lines
1.8 KiB
Go
Raw Permalink Normal View History

package logstorage
import (
"fmt"
"sync/atomic"
)
// pipeOffset implements '| offset ...' pipe.
//
// See https://docs.victoriametrics.com/victorialogs/logsql/#offset-pipe
type pipeOffset struct {
2024-05-20 02:08:30 +00:00
offset uint64
}
func (po *pipeOffset) String() string {
2024-05-20 02:08:30 +00:00
return fmt.Sprintf("offset %d", po.offset)
}
2024-06-27 12:18:42 +00:00
func (po *pipeOffset) canLiveTail() bool {
return false
}
func (po *pipeOffset) updateNeededFields(_, _ fieldsSet) {
2024-05-25 19:36:16 +00:00
// nothing to do
}
2024-05-25 19:36:16 +00:00
func (po *pipeOffset) hasFilterInWithQuery() bool {
return false
}
func (po *pipeOffset) initFilterInValues(_ map[string][]string, _ getFieldValuesFunc) (pipe, error) {
2024-05-25 19:36:16 +00:00
return po, nil
}
func (po *pipeOffset) newPipeProcessor(_ int, _ <-chan struct{}, _ func(), ppNext pipeProcessor) pipeProcessor {
return &pipeOffsetProcessor{
po: po,
2024-05-25 19:36:16 +00:00
ppNext: ppNext,
}
}
type pipeOffsetProcessor struct {
po *pipeOffset
2024-05-25 19:36:16 +00:00
ppNext pipeProcessor
rowsProcessed atomic.Uint64
}
func (pop *pipeOffsetProcessor) writeBlock(workerID uint, br *blockResult) {
if br.rowsLen == 0 {
return
}
rowsProcessed := pop.rowsProcessed.Add(uint64(br.rowsLen))
2024-05-20 02:08:30 +00:00
if rowsProcessed <= pop.po.offset {
return
}
rowsProcessed -= uint64(br.rowsLen)
2024-05-20 02:08:30 +00:00
if rowsProcessed >= pop.po.offset {
2024-05-25 19:36:16 +00:00
pop.ppNext.writeBlock(workerID, br)
return
}
2024-05-20 02:08:30 +00:00
rowsSkip := pop.po.offset - rowsProcessed
br.skipRows(int(rowsSkip))
2024-05-25 19:36:16 +00:00
pop.ppNext.writeBlock(workerID, br)
}
func (pop *pipeOffsetProcessor) flush() error {
return nil
}
func parsePipeOffset(lex *lexer) (*pipeOffset, error) {
if !lex.isKeyword("offset", "skip") {
return nil, fmt.Errorf("expecting 'offset' or 'skip'; got %q", lex.token)
}
lex.nextToken()
n, err := parseUint(lex.token)
if err != nil {
return nil, fmt.Errorf("cannot parse the number of rows to skip from %q: %w", lex.token, err)
}
lex.nextToken()
po := &pipeOffset{
2024-05-20 02:08:30 +00:00
offset: n,
}
return po, nil
}