2019-05-22 21:16:55 +00:00
|
|
|
package storage
|
|
|
|
|
|
|
|
import (
|
|
|
|
"container/heap"
|
|
|
|
"fmt"
|
|
|
|
"io"
|
|
|
|
|
2020-05-14 19:01:51 +00:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/fasttime"
|
2019-05-22 21:16:55 +00:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/logger"
|
2024-05-12 09:24:48 +00:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/slicesutil"
|
2019-05-22 21:16:55 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
// tableSearch performs searches in the table.
|
|
|
|
type tableSearch struct {
|
2020-04-27 05:13:41 +00:00
|
|
|
BlockRef *BlockRef
|
2019-05-22 21:16:55 +00:00
|
|
|
|
|
|
|
tb *table
|
|
|
|
|
|
|
|
// ptws hold paritions snapshot for the given table during Init call.
|
|
|
|
// This snapshot is used for calling table.PutPartitions on tableSearch.MustClose.
|
|
|
|
ptws []*partitionWrapper
|
|
|
|
|
|
|
|
ptsPool []partitionSearch
|
|
|
|
ptsHeap partitionSearchHeap
|
|
|
|
|
|
|
|
err error
|
|
|
|
|
|
|
|
nextBlockNoop bool
|
|
|
|
needClosing bool
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ts *tableSearch) reset() {
|
2020-04-27 05:13:41 +00:00
|
|
|
ts.BlockRef = nil
|
2019-05-22 21:16:55 +00:00
|
|
|
ts.tb = nil
|
|
|
|
|
|
|
|
for i := range ts.ptws {
|
|
|
|
ts.ptws[i] = nil
|
|
|
|
}
|
|
|
|
ts.ptws = ts.ptws[:0]
|
|
|
|
|
|
|
|
for i := range ts.ptsPool {
|
|
|
|
ts.ptsPool[i].reset()
|
|
|
|
}
|
|
|
|
ts.ptsPool = ts.ptsPool[:0]
|
|
|
|
|
|
|
|
for i := range ts.ptsHeap {
|
|
|
|
ts.ptsHeap[i] = nil
|
|
|
|
}
|
|
|
|
ts.ptsHeap = ts.ptsHeap[:0]
|
|
|
|
|
|
|
|
ts.err = nil
|
|
|
|
ts.nextBlockNoop = false
|
|
|
|
ts.needClosing = false
|
|
|
|
}
|
|
|
|
|
|
|
|
// Init initializes the ts.
|
|
|
|
//
|
2019-09-23 19:34:04 +00:00
|
|
|
// tsids must be sorted.
|
|
|
|
// tsids cannot be modified after the Init call, since it is owned by ts.
|
|
|
|
//
|
2019-05-22 21:16:55 +00:00
|
|
|
// MustClose must be called then the tableSearch is done.
|
2020-04-27 05:13:41 +00:00
|
|
|
func (ts *tableSearch) Init(tb *table, tsids []TSID, tr TimeRange) {
|
2019-05-22 21:16:55 +00:00
|
|
|
if ts.needClosing {
|
|
|
|
logger.Panicf("BUG: missing MustClose call before the next call to Init")
|
|
|
|
}
|
|
|
|
|
|
|
|
// Adjust tr.MinTimestamp, so it doesn't obtain data older
|
|
|
|
// than the tb retention.
|
2020-05-14 19:01:51 +00:00
|
|
|
now := int64(fasttime.UnixTimestamp() * 1000)
|
2022-10-23 22:30:50 +00:00
|
|
|
minTimestamp := now - tb.s.retentionMsecs
|
2019-05-22 21:16:55 +00:00
|
|
|
if tr.MinTimestamp < minTimestamp {
|
|
|
|
tr.MinTimestamp = minTimestamp
|
|
|
|
}
|
|
|
|
|
|
|
|
ts.reset()
|
|
|
|
ts.tb = tb
|
|
|
|
ts.needClosing = true
|
|
|
|
|
|
|
|
if len(tsids) == 0 {
|
|
|
|
// Fast path - zero tsids.
|
|
|
|
ts.err = io.EOF
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
ts.ptws = tb.GetPartitions(ts.ptws[:0])
|
|
|
|
|
|
|
|
// Initialize the ptsPool.
|
2024-05-12 09:24:48 +00:00
|
|
|
ts.ptsPool = slicesutil.SetLength(ts.ptsPool, len(ts.ptws))
|
2019-05-22 21:16:55 +00:00
|
|
|
for i, ptw := range ts.ptws {
|
2020-04-27 05:13:41 +00:00
|
|
|
ts.ptsPool[i].Init(ptw.pt, tsids, tr)
|
2019-05-22 21:16:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Initialize the ptsHeap.
|
|
|
|
ts.ptsHeap = ts.ptsHeap[:0]
|
|
|
|
for i := range ts.ptsPool {
|
|
|
|
pts := &ts.ptsPool[i]
|
|
|
|
if !pts.NextBlock() {
|
|
|
|
if err := pts.Error(); err != nil {
|
2022-01-28 10:10:47 +00:00
|
|
|
// Return only the first error, since it has no sense in returning all errors.
|
|
|
|
ts.err = fmt.Errorf("cannot initialize table search: %w", err)
|
|
|
|
return
|
2019-05-22 21:16:55 +00:00
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
ts.ptsHeap = append(ts.ptsHeap, pts)
|
|
|
|
}
|
|
|
|
if len(ts.ptsHeap) == 0 {
|
|
|
|
ts.err = io.EOF
|
|
|
|
return
|
|
|
|
}
|
|
|
|
heap.Init(&ts.ptsHeap)
|
2020-04-27 05:13:41 +00:00
|
|
|
ts.BlockRef = ts.ptsHeap[0].BlockRef
|
2019-05-22 21:16:55 +00:00
|
|
|
ts.nextBlockNoop = true
|
|
|
|
}
|
|
|
|
|
|
|
|
// NextBlock advances to the next block.
|
|
|
|
//
|
2020-04-27 05:13:41 +00:00
|
|
|
// The blocks are sorted by (TSID, MinTimestamp). Two subsequent blocks
|
2019-05-22 21:16:55 +00:00
|
|
|
// for the same TSID may contain overlapped time ranges.
|
|
|
|
func (ts *tableSearch) NextBlock() bool {
|
|
|
|
if ts.err != nil {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
if ts.nextBlockNoop {
|
|
|
|
ts.nextBlockNoop = false
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
ts.err = ts.nextBlock()
|
|
|
|
if ts.err != nil {
|
|
|
|
if ts.err != io.EOF {
|
2020-06-30 19:58:18 +00:00
|
|
|
ts.err = fmt.Errorf("cannot obtain the next block to search in the table: %w", ts.err)
|
2019-05-22 21:16:55 +00:00
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ts *tableSearch) nextBlock() error {
|
|
|
|
ptsMin := ts.ptsHeap[0]
|
|
|
|
if ptsMin.NextBlock() {
|
|
|
|
heap.Fix(&ts.ptsHeap, 0)
|
2020-04-27 05:13:41 +00:00
|
|
|
ts.BlockRef = ts.ptsHeap[0].BlockRef
|
2019-05-22 21:16:55 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := ptsMin.Error(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
heap.Pop(&ts.ptsHeap)
|
|
|
|
|
|
|
|
if len(ts.ptsHeap) == 0 {
|
|
|
|
return io.EOF
|
|
|
|
}
|
|
|
|
|
2020-04-27 05:13:41 +00:00
|
|
|
ts.BlockRef = ts.ptsHeap[0].BlockRef
|
2019-05-22 21:16:55 +00:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// Error returns the last error in the ts.
|
|
|
|
func (ts *tableSearch) Error() error {
|
|
|
|
if ts.err == io.EOF {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return ts.err
|
|
|
|
}
|
|
|
|
|
|
|
|
// MustClose closes the ts.
|
|
|
|
func (ts *tableSearch) MustClose() {
|
|
|
|
if !ts.needClosing {
|
|
|
|
logger.Panicf("BUG: missing Init call before MustClose call")
|
|
|
|
}
|
|
|
|
for i := range ts.ptsPool {
|
|
|
|
ts.ptsPool[i].MustClose()
|
|
|
|
}
|
|
|
|
ts.tb.PutPartitions(ts.ptws)
|
|
|
|
ts.reset()
|
|
|
|
}
|
|
|
|
|
|
|
|
type partitionSearchHeap []*partitionSearch
|
|
|
|
|
|
|
|
func (ptsh *partitionSearchHeap) Len() int {
|
|
|
|
return len(*ptsh)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ptsh *partitionSearchHeap) Less(i, j int) bool {
|
|
|
|
x := *ptsh
|
2020-04-27 05:13:41 +00:00
|
|
|
return x[i].BlockRef.bh.Less(&x[j].BlockRef.bh)
|
2019-05-22 21:16:55 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (ptsh *partitionSearchHeap) Swap(i, j int) {
|
|
|
|
x := *ptsh
|
|
|
|
x[i], x[j] = x[j], x[i]
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ptsh *partitionSearchHeap) Push(x interface{}) {
|
|
|
|
*ptsh = append(*ptsh, x.(*partitionSearch))
|
|
|
|
}
|
|
|
|
|
|
|
|
func (ptsh *partitionSearchHeap) Pop() interface{} {
|
|
|
|
a := *ptsh
|
|
|
|
v := a[len(a)-1]
|
|
|
|
*ptsh = a[:len(a)-1]
|
|
|
|
return v
|
|
|
|
}
|