mirror of
https://github.com/prometheus/prometheus
synced 2025-02-25 01:07:01 +00:00
tsdb: re-use iterator when stepping through chunks
Saves memory allocations, hence reduces garbage-collection overheads. Signed-off-by: Bryan Boreham <bjboreham@gmail.com>
This commit is contained in:
parent
ccea61c7bf
commit
1848623c77
@ -682,7 +682,7 @@ func (p *populateWithDelSeriesIterator) Next() chunkenc.ValueType {
|
||||
if p.currDelIter != nil {
|
||||
p.curr = p.currDelIter
|
||||
} else {
|
||||
p.curr = p.currChkMeta.Chunk.Iterator(nil)
|
||||
p.curr = p.currChkMeta.Chunk.Iterator(p.curr)
|
||||
}
|
||||
if valueType := p.curr.Next(); valueType != chunkenc.ValNone {
|
||||
return valueType
|
||||
|
Loading…
Reference in New Issue
Block a user