2021-03-11 05:32:56 -08:00
|
|
|
// Copyright 2021 The Prometheus Authors
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package storage
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
2023-04-30 13:13:25 -07:00
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
|
2023-04-10 13:07:43 -07:00
|
|
|
"github.com/prometheus/prometheus/model/histogram"
|
2021-11-28 23:54:23 -08:00
|
|
|
"github.com/prometheus/prometheus/tsdb/chunkenc"
|
2023-04-10 13:07:43 -07:00
|
|
|
"github.com/prometheus/prometheus/tsdb/tsdbutil"
|
2021-03-11 05:32:56 -08:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestMemoizedSeriesIterator(t *testing.T) {
|
|
|
|
var it *MemoizedSeriesIterator
|
|
|
|
|
2023-04-10 13:07:43 -07:00
|
|
|
sampleEq := func(ets int64, ev float64, efh *histogram.FloatHistogram) {
|
|
|
|
if efh == nil {
|
|
|
|
ts, v := it.At()
|
2024-07-14 21:09:02 -07:00
|
|
|
require.Equal(t, ets, ts, "At() timestamp mismatch")
|
|
|
|
require.Equal(t, ev, v, "At() value mismatch")
|
2023-04-10 13:07:43 -07:00
|
|
|
} else {
|
|
|
|
ts, fh := it.AtFloatHistogram()
|
2024-07-14 21:09:02 -07:00
|
|
|
require.Equal(t, ets, ts, "AtFloatHistogram() timestamp mismatch")
|
|
|
|
require.Equal(t, efh, fh, "AtFloatHistogram() histogram mismatch")
|
2023-04-10 13:07:43 -07:00
|
|
|
}
|
2024-07-14 21:09:02 -07:00
|
|
|
|
|
|
|
require.Equal(t, ets, it.AtT(), "AtT() timestamp mismatch")
|
2021-03-11 05:32:56 -08:00
|
|
|
}
|
2023-04-10 13:07:43 -07:00
|
|
|
prevSampleEq := func(ets int64, ev float64, efh *histogram.FloatHistogram, eok bool) {
|
|
|
|
ts, v, fh, ok := it.PeekPrev()
|
2021-03-11 05:32:56 -08:00
|
|
|
require.Equal(t, eok, ok, "exist mismatch")
|
|
|
|
require.Equal(t, ets, ts, "timestamp mismatch")
|
2023-04-10 13:07:43 -07:00
|
|
|
if efh == nil {
|
|
|
|
require.Equal(t, ev, v, "value mismatch")
|
|
|
|
} else {
|
|
|
|
require.Equal(t, efh, fh, "histogram mismatch")
|
|
|
|
}
|
2021-03-11 05:32:56 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
it = NewMemoizedIterator(NewListSeriesIterator(samples{
|
2022-12-08 04:31:08 -08:00
|
|
|
fSample{t: 1, f: 2},
|
|
|
|
fSample{t: 2, f: 3},
|
|
|
|
fSample{t: 3, f: 4},
|
|
|
|
fSample{t: 4, f: 5},
|
|
|
|
fSample{t: 5, f: 6},
|
|
|
|
fSample{t: 99, f: 8},
|
|
|
|
fSample{t: 100, f: 9},
|
|
|
|
fSample{t: 101, f: 10},
|
2023-04-10 13:07:43 -07:00
|
|
|
hSample{t: 102, h: tsdbutil.GenerateTestHistogram(0)},
|
|
|
|
hSample{t: 103, h: tsdbutil.GenerateTestHistogram(1)},
|
|
|
|
fhSample{t: 104, fh: tsdbutil.GenerateTestFloatHistogram(2)},
|
|
|
|
fhSample{t: 199, fh: tsdbutil.GenerateTestFloatHistogram(3)},
|
|
|
|
hSample{t: 200, h: tsdbutil.GenerateTestHistogram(4)},
|
|
|
|
fhSample{t: 299, fh: tsdbutil.GenerateTestFloatHistogram(5)},
|
|
|
|
fSample{t: 300, f: 11},
|
2023-04-30 13:13:25 -07:00
|
|
|
hSample{t: 399, h: tsdbutil.GenerateTestHistogram(6)},
|
|
|
|
fSample{t: 400, f: 12},
|
2021-03-11 05:32:56 -08:00
|
|
|
}), 2)
|
|
|
|
|
2023-12-07 03:35:01 -08:00
|
|
|
require.Equal(t, chunkenc.ValFloat, it.Seek(-123), "seek failed")
|
2023-04-10 13:07:43 -07:00
|
|
|
sampleEq(1, 2, nil)
|
|
|
|
prevSampleEq(0, 0, nil, false)
|
2021-03-11 05:32:56 -08:00
|
|
|
|
2023-12-07 03:35:01 -08:00
|
|
|
require.Equal(t, chunkenc.ValFloat, it.Seek(5), "seek failed")
|
2023-04-10 13:07:43 -07:00
|
|
|
sampleEq(5, 6, nil)
|
|
|
|
prevSampleEq(4, 5, nil, true)
|
2021-03-11 05:32:56 -08:00
|
|
|
|
2023-04-30 13:13:25 -07:00
|
|
|
// Seek to a histogram sample with a previous float sample.
|
2023-12-07 03:35:01 -08:00
|
|
|
require.Equal(t, chunkenc.ValFloatHistogram, it.Seek(102), "seek failed")
|
2023-04-30 13:13:25 -07:00
|
|
|
sampleEq(102, 10, tsdbutil.GenerateTestFloatHistogram(0))
|
2023-04-10 13:07:43 -07:00
|
|
|
prevSampleEq(101, 10, nil, true)
|
|
|
|
|
2023-04-30 13:13:25 -07:00
|
|
|
// Attempt to seek backwards (no-op).
|
2023-12-07 03:35:01 -08:00
|
|
|
require.Equal(t, chunkenc.ValFloatHistogram, it.Seek(50), "seek failed")
|
2023-04-30 13:13:25 -07:00
|
|
|
sampleEq(102, 10, tsdbutil.GenerateTestFloatHistogram(0))
|
|
|
|
prevSampleEq(101, 10, nil, true)
|
2023-04-10 13:07:43 -07:00
|
|
|
|
2023-04-30 13:13:25 -07:00
|
|
|
// Seek to a float histogram sample with a previous histogram sample.
|
2023-12-07 03:35:01 -08:00
|
|
|
require.Equal(t, chunkenc.ValFloatHistogram, it.Seek(104), "seek failed")
|
2023-04-10 13:07:43 -07:00
|
|
|
sampleEq(104, 0, tsdbutil.GenerateTestFloatHistogram(2))
|
|
|
|
prevSampleEq(103, 0, tsdbutil.GenerateTestFloatHistogram(1), true)
|
|
|
|
|
2023-04-30 13:13:25 -07:00
|
|
|
// Seek to a float sample with a previous float histogram sample.
|
|
|
|
require.Equal(t, chunkenc.ValFloat, it.Seek(300), "seek failed")
|
2023-04-10 13:07:43 -07:00
|
|
|
sampleEq(300, 11, nil)
|
|
|
|
prevSampleEq(299, 0, tsdbutil.GenerateTestFloatHistogram(5), true)
|
2021-03-11 05:32:56 -08:00
|
|
|
|
2023-04-30 13:13:25 -07:00
|
|
|
// Seek to a float sample with a previous histogram sample.
|
|
|
|
require.Equal(t, chunkenc.ValFloat, it.Seek(400), "seek failed")
|
|
|
|
sampleEq(400, 12, nil)
|
|
|
|
prevSampleEq(399, 0, tsdbutil.GenerateTestFloatHistogram(6), true)
|
|
|
|
|
2023-12-07 03:35:01 -08:00
|
|
|
require.Equal(t, chunkenc.ValNone, it.Seek(1024), "seek succeeded unexpectedly")
|
2021-03-11 05:32:56 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkMemoizedSeriesIterator(b *testing.B) {
|
|
|
|
// Simulate a 5 minute rate.
|
|
|
|
it := NewMemoizedIterator(newFakeSeriesIterator(int64(b.N), 30), 5*60)
|
|
|
|
|
2022-09-21 08:31:37 -07:00
|
|
|
b.SetBytes(16)
|
2021-03-11 05:32:56 -08:00
|
|
|
b.ReportAllocs()
|
|
|
|
b.ResetTimer()
|
|
|
|
|
2023-10-31 04:35:13 -07:00
|
|
|
for it.Next() != chunkenc.ValNone {
|
2023-04-12 04:05:41 -07:00
|
|
|
// Scan everything.
|
2021-03-11 05:32:56 -08:00
|
|
|
}
|
|
|
|
require.NoError(b, it.Err())
|
|
|
|
}
|