tsdb: optimise block series iterators

Re-use previous memory if it is already of the correct type.

Also turn two levels of function closure into a single object that
holds the required data.

Signed-off-by: Bryan Boreham <bjboreham@gmail.com>
This commit is contained in:
Bryan Boreham 2022-09-20 19:27:44 +01:00
parent 3c7de69059
commit f0866c0774
2 changed files with 94 additions and 56 deletions

View File

@ -426,6 +426,16 @@ func labelNamesWithMatchers(r IndexReader, matchers ...*labels.Matcher) ([]strin
return r.LabelNamesFor(postings...) return r.LabelNamesFor(postings...)
} }
// These are the things fetched when we move from one series to another.
type seriesData struct {
chks []chunks.Meta
intervals tombstones.Intervals
labels labels.Labels
}
// Labels implements part of storage.Series and storage.ChunkSeries.
func (s *seriesData) Labels() labels.Labels { return s.labels }
// blockBaseSeriesSet allows to iterate over all series in the single block. // blockBaseSeriesSet allows to iterate over all series in the single block.
// Iterated series are trimmed with given min and max time as well as tombstones. // Iterated series are trimmed with given min and max time as well as tombstones.
// See newBlockSeriesSet and newBlockChunkSeriesSet to use it for either sample or chunk iterating. // See newBlockSeriesSet and newBlockChunkSeriesSet to use it for either sample or chunk iterating.
@ -438,8 +448,7 @@ type blockBaseSeriesSet struct {
mint, maxt int64 mint, maxt int64
disableTrimming bool disableTrimming bool
currIterFn func() *populateWithDelGenericSeriesIterator curr seriesData
currLabels labels.Labels
bufChks []chunks.Meta bufChks []chunks.Meta
bufLbls labels.Labels bufLbls labels.Labels
@ -519,12 +528,11 @@ func (b *blockBaseSeriesSet) Next() bool {
intervals = intervals.Add(tombstones.Interval{Mint: b.maxt + 1, Maxt: math.MaxInt64}) intervals = intervals.Add(tombstones.Interval{Mint: b.maxt + 1, Maxt: math.MaxInt64})
} }
b.currLabels = make(labels.Labels, len(b.bufLbls)) b.curr.labels = make(labels.Labels, len(b.bufLbls))
copy(b.currLabels, b.bufLbls) copy(b.curr.labels, b.bufLbls)
b.curr.chks = chks
b.curr.intervals = intervals
b.currIterFn = func() *populateWithDelGenericSeriesIterator {
return newPopulateWithDelGenericSeriesIterator(b.blockID, b.chunks, chks, intervals)
}
return true return true
} }
return false return false
@ -556,29 +564,26 @@ type populateWithDelGenericSeriesIterator struct {
// the same, single series. // the same, single series.
chks []chunks.Meta chks []chunks.Meta
i int i int // Index into chks; -1 if not started yet.
err error err error
bufIter *DeletedIterator bufIter DeletedIterator // Retained for memory re-use. currDelIter may point here.
intervals tombstones.Intervals intervals tombstones.Intervals
currDelIter chunkenc.Iterator currDelIter chunkenc.Iterator
currChkMeta chunks.Meta currChkMeta chunks.Meta
} }
func newPopulateWithDelGenericSeriesIterator( func (p *populateWithDelGenericSeriesIterator) reset(blockID ulid.ULID, cr ChunkReader, chks []chunks.Meta, intervals tombstones.Intervals) {
blockID ulid.ULID, p.blockID = blockID
chunks ChunkReader, p.chunks = cr
chks []chunks.Meta, p.chks = chks
intervals tombstones.Intervals, p.i = -1
) *populateWithDelGenericSeriesIterator { p.err = nil
return &populateWithDelGenericSeriesIterator{ p.bufIter.Iter = nil
blockID: blockID, p.bufIter.Intervals = p.bufIter.Intervals[:0]
chunks: chunks, p.intervals = intervals
chks: chks, p.currDelIter = nil
i: -1, p.currChkMeta = chunks.Meta{}
bufIter: &DeletedIterator{},
intervals: intervals,
}
} }
func (p *populateWithDelGenericSeriesIterator) next() bool { func (p *populateWithDelGenericSeriesIterator) next() bool {
@ -618,28 +623,55 @@ func (p *populateWithDelGenericSeriesIterator) next() bool {
// We don't want the full chunk, or it's potentially still opened, take // We don't want the full chunk, or it's potentially still opened, take
// just a part of it. // just a part of it.
p.bufIter.Iter = p.currChkMeta.Chunk.Iterator(nil) p.bufIter.Iter = p.currChkMeta.Chunk.Iterator(p.bufIter.Iter)
p.currDelIter = p.bufIter p.currDelIter = &p.bufIter
return true return true
} }
func (p *populateWithDelGenericSeriesIterator) Err() error { return p.err } func (p *populateWithDelGenericSeriesIterator) Err() error { return p.err }
func (p *populateWithDelGenericSeriesIterator) toSeriesIterator() chunkenc.Iterator { type blockSeriesEntry struct {
return &populateWithDelSeriesIterator{populateWithDelGenericSeriesIterator: p} chunks ChunkReader
blockID ulid.ULID
seriesData
} }
func (p *populateWithDelGenericSeriesIterator) toChunkSeriesIterator() chunks.Iterator { func (s *blockSeriesEntry) Iterator(it chunkenc.Iterator) chunkenc.Iterator {
return &populateWithDelChunkSeriesIterator{populateWithDelGenericSeriesIterator: p} pi, ok := it.(*populateWithDelSeriesIterator)
if !ok {
pi = &populateWithDelSeriesIterator{}
}
pi.reset(s.blockID, s.chunks, s.chks, s.intervals)
return pi
}
type chunkSeriesEntry struct {
chunks ChunkReader
blockID ulid.ULID
seriesData
}
func (s *chunkSeriesEntry) Iterator(it chunks.Iterator) chunks.Iterator {
pi, ok := it.(*populateWithDelChunkSeriesIterator)
if !ok {
pi = &populateWithDelChunkSeriesIterator{}
}
pi.reset(s.blockID, s.chunks, s.chks, s.intervals)
return pi
} }
// populateWithDelSeriesIterator allows to iterate over samples for the single series. // populateWithDelSeriesIterator allows to iterate over samples for the single series.
type populateWithDelSeriesIterator struct { type populateWithDelSeriesIterator struct {
*populateWithDelGenericSeriesIterator populateWithDelGenericSeriesIterator
curr chunkenc.Iterator curr chunkenc.Iterator
} }
func (p *populateWithDelSeriesIterator) reset(blockID ulid.ULID, cr ChunkReader, chks []chunks.Meta, intervals tombstones.Intervals) {
p.populateWithDelGenericSeriesIterator.reset(blockID, cr, chks, intervals)
p.curr = nil
}
func (p *populateWithDelSeriesIterator) Next() chunkenc.ValueType { func (p *populateWithDelSeriesIterator) Next() chunkenc.ValueType {
if p.curr != nil { if p.curr != nil {
if valueType := p.curr.Next(); valueType != chunkenc.ValNone { if valueType := p.curr.Next(); valueType != chunkenc.ValNone {
@ -701,11 +733,16 @@ func (p *populateWithDelSeriesIterator) Err() error {
} }
type populateWithDelChunkSeriesIterator struct { type populateWithDelChunkSeriesIterator struct {
*populateWithDelGenericSeriesIterator populateWithDelGenericSeriesIterator
curr chunks.Meta curr chunks.Meta
} }
func (p *populateWithDelChunkSeriesIterator) reset(blockID ulid.ULID, cr ChunkReader, chks []chunks.Meta, intervals tombstones.Intervals) {
p.populateWithDelGenericSeriesIterator.reset(blockID, cr, chks, intervals)
p.curr = chunks.Meta{}
}
func (p *populateWithDelChunkSeriesIterator) Next() bool { func (p *populateWithDelChunkSeriesIterator) Next() bool {
if !p.next() { if !p.next() {
return false return false
@ -834,13 +871,11 @@ func newBlockSeriesSet(i IndexReader, c ChunkReader, t tombstones.Reader, p inde
} }
func (b *blockSeriesSet) At() storage.Series { func (b *blockSeriesSet) At() storage.Series {
// At can be looped over before iterating, so save the current value locally. // At can be looped over before iterating, so save the current values locally.
currIterFn := b.currIterFn return &blockSeriesEntry{
return &storage.SeriesEntry{ chunks: b.chunks,
Lset: b.currLabels, blockID: b.blockID,
SampleIteratorFn: func(chunkenc.Iterator) chunkenc.Iterator { seriesData: b.curr,
return currIterFn().toSeriesIterator()
},
} }
} }
@ -868,13 +903,11 @@ func newBlockChunkSeriesSet(id ulid.ULID, i IndexReader, c ChunkReader, t tombst
} }
func (b *blockChunkSeriesSet) At() storage.ChunkSeries { func (b *blockChunkSeriesSet) At() storage.ChunkSeries {
// At can be looped over before iterating, so save the current value locally. // At can be looped over before iterating, so save the current values locally.
currIterFn := b.currIterFn return &chunkSeriesEntry{
return &storage.ChunkSeriesEntry{ chunks: b.chunks,
Lset: b.currLabels, blockID: b.blockID,
ChunkIteratorFn: func(chunks.Iterator) chunks.Iterator { seriesData: b.curr,
return currIterFn().toChunkSeriesIterator()
},
} }
} }

View File

@ -859,7 +859,8 @@ func TestPopulateWithTombSeriesIterators(t *testing.T) {
t.Run(tc.name, func(t *testing.T) { t.Run(tc.name, func(t *testing.T) {
t.Run("sample", func(t *testing.T) { t.Run("sample", func(t *testing.T) {
f, chkMetas := createFakeReaderAndNotPopulatedChunks(tc.chks...) f, chkMetas := createFakeReaderAndNotPopulatedChunks(tc.chks...)
it := newPopulateWithDelGenericSeriesIterator(ulid.ULID{}, f, chkMetas, tc.intervals).toSeriesIterator() it := &populateWithDelSeriesIterator{}
it.reset(ulid.ULID{}, f, chkMetas, tc.intervals)
var r []tsdbutil.Sample var r []tsdbutil.Sample
if tc.seek != 0 { if tc.seek != 0 {
@ -879,7 +880,8 @@ func TestPopulateWithTombSeriesIterators(t *testing.T) {
}) })
t.Run("chunk", func(t *testing.T) { t.Run("chunk", func(t *testing.T) {
f, chkMetas := createFakeReaderAndNotPopulatedChunks(tc.chks...) f, chkMetas := createFakeReaderAndNotPopulatedChunks(tc.chks...)
it := newPopulateWithDelGenericSeriesIterator(ulid.ULID{}, f, chkMetas, tc.intervals).toChunkSeriesIterator() it := &populateWithDelChunkSeriesIterator{}
it.reset(ulid.ULID{}, f, chkMetas, tc.intervals)
if tc.seek != 0 { if tc.seek != 0 {
// Chunk iterator does not have Seek method. // Chunk iterator does not have Seek method.
@ -911,7 +913,8 @@ func TestPopulateWithDelSeriesIterator_DoubleSeek(t *testing.T) {
[]tsdbutil.Sample{sample{4, 4, nil, nil}, sample{5, 5, nil, nil}}, []tsdbutil.Sample{sample{4, 4, nil, nil}, sample{5, 5, nil, nil}},
) )
it := newPopulateWithDelGenericSeriesIterator(ulid.ULID{}, f, chkMetas, nil).toSeriesIterator() it := &populateWithDelSeriesIterator{}
it.reset(ulid.ULID{}, f, chkMetas, nil)
require.Equal(t, chunkenc.ValFloat, it.Seek(1)) require.Equal(t, chunkenc.ValFloat, it.Seek(1))
require.Equal(t, chunkenc.ValFloat, it.Seek(2)) require.Equal(t, chunkenc.ValFloat, it.Seek(2))
require.Equal(t, chunkenc.ValFloat, it.Seek(2)) require.Equal(t, chunkenc.ValFloat, it.Seek(2))
@ -929,7 +932,8 @@ func TestPopulateWithDelSeriesIterator_SeekInCurrentChunk(t *testing.T) {
[]tsdbutil.Sample{}, []tsdbutil.Sample{},
) )
it := newPopulateWithDelGenericSeriesIterator(ulid.ULID{}, f, chkMetas, nil).toSeriesIterator() it := &populateWithDelSeriesIterator{}
it.reset(ulid.ULID{}, f, chkMetas, nil)
require.Equal(t, chunkenc.ValFloat, it.Next()) require.Equal(t, chunkenc.ValFloat, it.Next())
ts, v := it.At() ts, v := it.At()
require.Equal(t, int64(1), ts) require.Equal(t, int64(1), ts)
@ -946,7 +950,8 @@ func TestPopulateWithDelSeriesIterator_SeekWithMinTime(t *testing.T) {
[]tsdbutil.Sample{sample{1, 6, nil, nil}, sample{5, 6, nil, nil}, sample{6, 8, nil, nil}}, []tsdbutil.Sample{sample{1, 6, nil, nil}, sample{5, 6, nil, nil}, sample{6, 8, nil, nil}},
) )
it := newPopulateWithDelGenericSeriesIterator(ulid.ULID{}, f, chkMetas, nil).toSeriesIterator() it := &populateWithDelSeriesIterator{}
it.reset(ulid.ULID{}, f, chkMetas, nil)
require.Equal(t, chunkenc.ValNone, it.Seek(7)) require.Equal(t, chunkenc.ValNone, it.Seek(7))
require.Equal(t, chunkenc.ValFloat, it.Seek(3)) require.Equal(t, chunkenc.ValFloat, it.Seek(3))
} }
@ -958,9 +963,8 @@ func TestPopulateWithDelSeriesIterator_NextWithMinTime(t *testing.T) {
[]tsdbutil.Sample{sample{1, 6, nil, nil}, sample{5, 6, nil, nil}, sample{7, 8, nil, nil}}, []tsdbutil.Sample{sample{1, 6, nil, nil}, sample{5, 6, nil, nil}, sample{7, 8, nil, nil}},
) )
it := newPopulateWithDelGenericSeriesIterator( it := &populateWithDelSeriesIterator{}
ulid.ULID{}, f, chkMetas, tombstones.Intervals{{Mint: math.MinInt64, Maxt: 2}}.Add(tombstones.Interval{Mint: 4, Maxt: math.MaxInt64}), it.reset(ulid.ULID{}, f, chkMetas, tombstones.Intervals{{Mint: math.MinInt64, Maxt: 2}}.Add(tombstones.Interval{Mint: 4, Maxt: math.MaxInt64}))
).toSeriesIterator()
require.Equal(t, chunkenc.ValNone, it.Next()) require.Equal(t, chunkenc.ValNone, it.Next())
} }
@ -2225,11 +2229,12 @@ func TestBlockBaseSeriesSet(t *testing.T) {
i := 0 i := 0
for bcs.Next() { for bcs.Next() {
chks := bcs.currIterFn().chks si := populateWithDelGenericSeriesIterator{}
si.reset(bcs.blockID, bcs.chunks, bcs.curr.chks, bcs.curr.intervals)
idx := tc.expIdxs[i] idx := tc.expIdxs[i]
require.Equal(t, tc.series[idx].lset, bcs.currLabels) require.Equal(t, tc.series[idx].lset, bcs.curr.labels)
require.Equal(t, tc.series[idx].chunks, chks) require.Equal(t, tc.series[idx].chunks, si.chks)
i++ i++
} }