2021-11-29 01:47: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 (
|
2023-04-28 13:52:21 -07:00
|
|
|
"fmt"
|
|
|
|
"math"
|
2021-11-29 01:47:56 -08:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/require"
|
2021-11-30 08:20:28 -08:00
|
|
|
|
2023-04-28 13:52:21 -07:00
|
|
|
"github.com/prometheus/prometheus/model/histogram"
|
2022-11-29 03:04:13 -08:00
|
|
|
"github.com/prometheus/prometheus/model/labels"
|
2023-04-28 13:52:21 -07:00
|
|
|
"github.com/prometheus/prometheus/model/value"
|
2021-11-30 08:20:28 -08:00
|
|
|
"github.com/prometheus/prometheus/tsdb/chunkenc"
|
2023-04-28 13:52:21 -07:00
|
|
|
"github.com/prometheus/prometheus/tsdb/chunks"
|
2022-11-29 03:04:13 -08:00
|
|
|
"github.com/prometheus/prometheus/tsdb/tsdbutil"
|
2021-11-29 01:47:56 -08:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestListSeriesIterator(t *testing.T) {
|
2021-11-30 08:20:28 -08:00
|
|
|
it := NewListSeriesIterator(samples{
|
2022-12-08 04:31:08 -08:00
|
|
|
fSample{0, 0},
|
|
|
|
fSample{1, 1},
|
|
|
|
fSample{1, 1.5},
|
|
|
|
fSample{2, 2},
|
|
|
|
fSample{3, 3},
|
2021-11-30 08:20:28 -08:00
|
|
|
})
|
2021-11-29 01:47:56 -08:00
|
|
|
|
|
|
|
// Seek to the first sample with ts=1.
|
2021-11-30 08:20:28 -08:00
|
|
|
require.Equal(t, chunkenc.ValFloat, it.Seek(1))
|
2021-11-29 01:47:56 -08:00
|
|
|
ts, v := it.At()
|
|
|
|
require.Equal(t, int64(1), ts)
|
|
|
|
require.Equal(t, 1., v)
|
|
|
|
|
|
|
|
// Seek one further, next sample still has ts=1.
|
2021-11-30 08:20:28 -08:00
|
|
|
require.Equal(t, chunkenc.ValFloat, it.Next())
|
2021-11-29 01:47:56 -08:00
|
|
|
ts, v = it.At()
|
|
|
|
require.Equal(t, int64(1), ts)
|
|
|
|
require.Equal(t, 1.5, v)
|
|
|
|
|
|
|
|
// Seek again to 1 and make sure we stay where we are.
|
2021-11-30 08:20:28 -08:00
|
|
|
require.Equal(t, chunkenc.ValFloat, it.Seek(1))
|
2021-11-29 01:47:56 -08:00
|
|
|
ts, v = it.At()
|
|
|
|
require.Equal(t, int64(1), ts)
|
|
|
|
require.Equal(t, 1.5, v)
|
|
|
|
|
|
|
|
// Another seek.
|
2021-11-30 08:20:28 -08:00
|
|
|
require.Equal(t, chunkenc.ValFloat, it.Seek(3))
|
2021-11-29 01:47:56 -08:00
|
|
|
ts, v = it.At()
|
|
|
|
require.Equal(t, int64(3), ts)
|
|
|
|
require.Equal(t, 3., v)
|
|
|
|
|
|
|
|
// And we don't go back.
|
2021-11-30 08:20:28 -08:00
|
|
|
require.Equal(t, chunkenc.ValFloat, it.Seek(2))
|
2021-11-29 01:47:56 -08:00
|
|
|
ts, v = it.At()
|
|
|
|
require.Equal(t, int64(3), ts)
|
|
|
|
require.Equal(t, 3., v)
|
2021-12-16 03:01:54 -08:00
|
|
|
|
|
|
|
// Seek beyond the end.
|
2021-12-18 05:12:01 -08:00
|
|
|
require.Equal(t, chunkenc.ValNone, it.Seek(5))
|
2021-12-16 03:01:54 -08:00
|
|
|
// And we don't go back. (This exposes issue #10027.)
|
2021-12-18 05:12:01 -08:00
|
|
|
require.Equal(t, chunkenc.ValNone, it.Seek(2))
|
2021-11-29 01:47:56 -08:00
|
|
|
}
|
2022-11-29 03:04:13 -08:00
|
|
|
|
|
|
|
// TestSeriesSetToChunkSet test the property of SeriesSet that says
|
|
|
|
// returned series should be iterable even after Next is called.
|
|
|
|
func TestChunkSeriesSetToSeriesSet(t *testing.T) {
|
|
|
|
series := []struct {
|
|
|
|
lbs labels.Labels
|
|
|
|
samples []tsdbutil.Sample
|
|
|
|
}{
|
|
|
|
{
|
2022-12-20 09:59:22 -08:00
|
|
|
lbs: labels.FromStrings("__name__", "up", "instance", "localhost:8080"),
|
2022-11-29 03:04:13 -08:00
|
|
|
samples: []tsdbutil.Sample{
|
2022-12-08 04:31:08 -08:00
|
|
|
fSample{t: 1, f: 1},
|
|
|
|
fSample{t: 2, f: 2},
|
|
|
|
fSample{t: 3, f: 3},
|
|
|
|
fSample{t: 4, f: 4},
|
2022-11-29 03:04:13 -08:00
|
|
|
},
|
|
|
|
}, {
|
2022-12-20 09:59:22 -08:00
|
|
|
lbs: labels.FromStrings("__name__", "up", "instance", "localhost:8081"),
|
2022-11-29 03:04:13 -08:00
|
|
|
samples: []tsdbutil.Sample{
|
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: 6, f: 7},
|
2022-11-29 03:04:13 -08:00
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
var chunkSeries []ChunkSeries
|
|
|
|
for _, s := range series {
|
|
|
|
chunkSeries = append(chunkSeries, NewListChunkSeriesFromSamples(s.lbs, s.samples))
|
|
|
|
}
|
|
|
|
css := NewMockChunkSeriesSet(chunkSeries...)
|
|
|
|
|
|
|
|
ss := NewSeriesSetFromChunkSeriesSet(css)
|
|
|
|
var ssSlice []Series
|
|
|
|
for ss.Next() {
|
|
|
|
ssSlice = append(ssSlice, ss.At())
|
|
|
|
}
|
|
|
|
require.Len(t, ssSlice, 2)
|
|
|
|
var iter chunkenc.Iterator
|
|
|
|
for i, s := range ssSlice {
|
|
|
|
require.EqualValues(t, series[i].lbs, s.Labels())
|
|
|
|
iter = s.Iterator(iter)
|
|
|
|
j := 0
|
|
|
|
for iter.Next() == chunkenc.ValFloat {
|
|
|
|
ts, v := iter.At()
|
2022-12-08 04:31:08 -08:00
|
|
|
require.EqualValues(t, series[i].samples[j], fSample{t: ts, f: v})
|
2022-11-29 03:04:13 -08:00
|
|
|
j++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-04-28 13:52:21 -07:00
|
|
|
|
|
|
|
type histogramTest struct {
|
|
|
|
samples []tsdbutil.Sample
|
|
|
|
expectedChunks int
|
|
|
|
expectedCounterReset bool
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestHistogramSeriesToChunks(t *testing.T) {
|
|
|
|
h1 := &histogram.Histogram{
|
|
|
|
Count: 3,
|
|
|
|
ZeroCount: 2,
|
|
|
|
ZeroThreshold: 0.001,
|
|
|
|
Sum: 100,
|
|
|
|
Schema: 0,
|
|
|
|
PositiveSpans: []histogram.Span{
|
|
|
|
{Offset: 0, Length: 2},
|
|
|
|
},
|
|
|
|
PositiveBuckets: []int64{2, 1}, // Abs: 2, 3
|
|
|
|
}
|
|
|
|
// Appendable to h1.
|
|
|
|
h2 := &histogram.Histogram{
|
|
|
|
Count: 12,
|
|
|
|
ZeroCount: 2,
|
|
|
|
ZeroThreshold: 0.001,
|
|
|
|
Sum: 100,
|
|
|
|
Schema: 0,
|
|
|
|
PositiveSpans: []histogram.Span{
|
|
|
|
{Offset: 0, Length: 2},
|
|
|
|
{Offset: 1, Length: 2},
|
|
|
|
},
|
|
|
|
PositiveBuckets: []int64{2, 1, -2, 3}, // Abs: 2, 3, 1, 4
|
|
|
|
}
|
|
|
|
// Implicit counter reset by reduction in buckets, not appendable.
|
|
|
|
h2down := &histogram.Histogram{
|
|
|
|
Count: 8,
|
|
|
|
ZeroCount: 2,
|
|
|
|
ZeroThreshold: 0.001,
|
|
|
|
Sum: 100,
|
|
|
|
Schema: 0,
|
|
|
|
PositiveSpans: []histogram.Span{
|
|
|
|
{Offset: 0, Length: 2},
|
|
|
|
{Offset: 1, Length: 2},
|
|
|
|
},
|
|
|
|
PositiveBuckets: []int64{1, 1, -1, 3}, // Abs: 1, 2, 1, 4
|
|
|
|
}
|
|
|
|
|
|
|
|
fh1 := &histogram.FloatHistogram{
|
|
|
|
Count: 4,
|
|
|
|
ZeroCount: 2,
|
|
|
|
ZeroThreshold: 0.001,
|
|
|
|
Sum: 100,
|
|
|
|
Schema: 0,
|
|
|
|
PositiveSpans: []histogram.Span{
|
|
|
|
{Offset: 0, Length: 2},
|
|
|
|
},
|
|
|
|
PositiveBuckets: []float64{3, 1},
|
|
|
|
}
|
|
|
|
// Appendable to fh1.
|
|
|
|
fh2 := &histogram.FloatHistogram{
|
|
|
|
Count: 15,
|
|
|
|
ZeroCount: 2,
|
|
|
|
ZeroThreshold: 0.001,
|
|
|
|
Sum: 100,
|
|
|
|
Schema: 0,
|
|
|
|
PositiveSpans: []histogram.Span{
|
|
|
|
{Offset: 0, Length: 2},
|
|
|
|
{Offset: 1, Length: 2},
|
|
|
|
},
|
|
|
|
PositiveBuckets: []float64{4, 2, 7, 2},
|
|
|
|
}
|
|
|
|
// Implicit counter reset by reduction in buckets, not appendable.
|
|
|
|
fh2down := &histogram.FloatHistogram{
|
|
|
|
Count: 13,
|
|
|
|
ZeroCount: 2,
|
|
|
|
ZeroThreshold: 0.001,
|
|
|
|
Sum: 100,
|
|
|
|
Schema: 0,
|
|
|
|
PositiveSpans: []histogram.Span{
|
|
|
|
{Offset: 0, Length: 2},
|
|
|
|
{Offset: 1, Length: 2},
|
|
|
|
},
|
|
|
|
PositiveBuckets: []float64{2, 2, 7, 2},
|
|
|
|
}
|
|
|
|
|
|
|
|
staleHistogram := &histogram.Histogram{
|
|
|
|
Sum: math.Float64frombits(value.StaleNaN),
|
|
|
|
}
|
|
|
|
staleFloatHistogram := &histogram.FloatHistogram{
|
|
|
|
Sum: math.Float64frombits(value.StaleNaN),
|
|
|
|
}
|
|
|
|
|
|
|
|
tests := map[string]histogramTest{
|
|
|
|
"single histogram to single chunk": {
|
|
|
|
samples: []tsdbutil.Sample{
|
|
|
|
hSample{t: 1, h: h1},
|
|
|
|
},
|
|
|
|
expectedChunks: 1,
|
|
|
|
},
|
|
|
|
"two histograms encoded to a single chunk": {
|
|
|
|
samples: []tsdbutil.Sample{
|
|
|
|
hSample{t: 1, h: h1},
|
|
|
|
hSample{t: 2, h: h2},
|
|
|
|
},
|
|
|
|
expectedChunks: 1,
|
|
|
|
},
|
|
|
|
"two histograms encoded to two chunks": {
|
|
|
|
samples: []tsdbutil.Sample{
|
|
|
|
hSample{t: 1, h: h2},
|
|
|
|
hSample{t: 2, h: h1},
|
|
|
|
},
|
|
|
|
expectedChunks: 2,
|
|
|
|
expectedCounterReset: true,
|
|
|
|
},
|
|
|
|
"histogram and stale sample encoded to two chunks": {
|
|
|
|
samples: []tsdbutil.Sample{
|
|
|
|
hSample{t: 1, h: staleHistogram},
|
|
|
|
hSample{t: 2, h: h1},
|
|
|
|
},
|
|
|
|
expectedChunks: 2,
|
|
|
|
},
|
|
|
|
"histogram and reduction in bucket encoded to two chunks": {
|
|
|
|
samples: []tsdbutil.Sample{
|
|
|
|
hSample{t: 1, h: h1},
|
|
|
|
hSample{t: 2, h: h2down},
|
|
|
|
},
|
|
|
|
expectedChunks: 2,
|
|
|
|
expectedCounterReset: true,
|
|
|
|
},
|
|
|
|
// Float histograms.
|
|
|
|
"single float histogram to single chunk": {
|
|
|
|
samples: []tsdbutil.Sample{
|
|
|
|
fhSample{t: 1, fh: fh1},
|
|
|
|
},
|
|
|
|
expectedChunks: 1,
|
|
|
|
},
|
|
|
|
"two float histograms encoded to a single chunk": {
|
|
|
|
samples: []tsdbutil.Sample{
|
|
|
|
fhSample{t: 1, fh: fh1},
|
|
|
|
fhSample{t: 2, fh: fh2},
|
|
|
|
},
|
|
|
|
expectedChunks: 1,
|
|
|
|
},
|
|
|
|
"two float histograms encoded to two chunks": {
|
|
|
|
samples: []tsdbutil.Sample{
|
|
|
|
fhSample{t: 1, fh: fh2},
|
|
|
|
fhSample{t: 2, fh: fh1},
|
|
|
|
},
|
|
|
|
expectedChunks: 2,
|
|
|
|
expectedCounterReset: true,
|
|
|
|
},
|
|
|
|
"float histogram and stale sample encoded to two chunks": {
|
|
|
|
samples: []tsdbutil.Sample{
|
|
|
|
fhSample{t: 1, fh: staleFloatHistogram},
|
|
|
|
fhSample{t: 2, fh: fh1},
|
|
|
|
},
|
|
|
|
expectedChunks: 2,
|
|
|
|
},
|
|
|
|
"float histogram and reduction in bucket encoded to two chunks": {
|
|
|
|
samples: []tsdbutil.Sample{
|
|
|
|
fhSample{t: 1, fh: fh1},
|
|
|
|
fhSample{t: 2, fh: fh2down},
|
|
|
|
},
|
|
|
|
expectedChunks: 2,
|
|
|
|
expectedCounterReset: true,
|
|
|
|
},
|
|
|
|
// Mixed.
|
|
|
|
"histogram and float histogram encoded to two chunks": {
|
|
|
|
samples: []tsdbutil.Sample{
|
|
|
|
hSample{t: 1, h: h1},
|
|
|
|
fhSample{t: 2, fh: fh2},
|
|
|
|
},
|
|
|
|
expectedChunks: 2,
|
|
|
|
},
|
|
|
|
"float histogram and histogram encoded to two chunks": {
|
|
|
|
samples: []tsdbutil.Sample{
|
|
|
|
fhSample{t: 1, fh: fh1},
|
|
|
|
hSample{t: 2, h: h2},
|
|
|
|
},
|
|
|
|
expectedChunks: 2,
|
|
|
|
},
|
|
|
|
"histogram and stale float histogram encoded to two chunks": {
|
|
|
|
samples: []tsdbutil.Sample{
|
|
|
|
hSample{t: 1, h: h1},
|
|
|
|
fhSample{t: 2, fh: staleFloatHistogram},
|
|
|
|
},
|
|
|
|
expectedChunks: 2,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for testName, test := range tests {
|
|
|
|
t.Run(testName, func(t *testing.T) {
|
|
|
|
testHistogramsSeriesToChunks(t, test)
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func testHistogramsSeriesToChunks(t *testing.T, test histogramTest) {
|
|
|
|
lbs := labels.FromStrings("__name__", "up", "instance", "localhost:8080")
|
|
|
|
series := NewListSeries(lbs, test.samples)
|
|
|
|
encoder := NewSeriesToChunkEncoder(series)
|
|
|
|
require.EqualValues(t, lbs, encoder.Labels())
|
|
|
|
|
|
|
|
chks, err := ExpandChunks(encoder.Iterator(nil))
|
|
|
|
require.NoError(t, err)
|
|
|
|
require.Equal(t, test.expectedChunks, len(chks))
|
|
|
|
|
|
|
|
// Decode all encoded samples and assert they are equal to the original ones.
|
|
|
|
encodedSamples := expandHistogramSamples(chks)
|
|
|
|
require.Equal(t, len(test.samples), len(encodedSamples))
|
|
|
|
|
|
|
|
for i, s := range test.samples {
|
|
|
|
switch expectedSample := s.(type) {
|
|
|
|
case hSample:
|
|
|
|
encodedSample, ok := encodedSamples[i].(hSample)
|
|
|
|
require.True(t, ok, "expect histogram", fmt.Sprintf("at idx %d", i))
|
|
|
|
// Ignore counter reset here, will check on chunk level.
|
|
|
|
encodedSample.h.CounterResetHint = histogram.UnknownCounterReset
|
|
|
|
if value.IsStaleNaN(expectedSample.h.Sum) {
|
|
|
|
require.True(t, value.IsStaleNaN(encodedSample.h.Sum), fmt.Sprintf("at idx %d", i))
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
require.Equal(t, *expectedSample.h, *encodedSample.h.Compact(0), fmt.Sprintf("at idx %d", i))
|
|
|
|
case fhSample:
|
|
|
|
encodedSample, ok := encodedSamples[i].(fhSample)
|
|
|
|
require.True(t, ok, "expect float histogram", fmt.Sprintf("at idx %d", i))
|
|
|
|
// Ignore counter reset here, will check on chunk level.
|
|
|
|
encodedSample.fh.CounterResetHint = histogram.UnknownCounterReset
|
|
|
|
if value.IsStaleNaN(expectedSample.fh.Sum) {
|
|
|
|
require.True(t, value.IsStaleNaN(encodedSample.fh.Sum), fmt.Sprintf("at idx %d", i))
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
require.Equal(t, *expectedSample.fh, *encodedSample.fh.Compact(0), fmt.Sprintf("at idx %d", i))
|
|
|
|
default:
|
|
|
|
t.Error("internal error, unexpected type")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If a counter reset hint is expected, it can only be found in the second chunk.
|
|
|
|
// Otherwise, we assert an unknown counter reset hint in all chunks.
|
|
|
|
if test.expectedCounterReset {
|
|
|
|
require.Equal(t, chunkenc.UnknownCounterReset, getCounterResetHint(chks[0]))
|
|
|
|
require.Equal(t, chunkenc.CounterReset, getCounterResetHint(chks[1]))
|
|
|
|
} else {
|
|
|
|
for _, chk := range chks {
|
|
|
|
require.Equal(t, chunkenc.UnknownCounterReset, getCounterResetHint(chk))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func expandHistogramSamples(chunks []chunks.Meta) (result []tsdbutil.Sample) {
|
|
|
|
if len(chunks) == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, chunk := range chunks {
|
|
|
|
it := chunk.Chunk.Iterator(nil)
|
|
|
|
for vt := it.Next(); vt != chunkenc.ValNone; vt = it.Next() {
|
|
|
|
switch vt {
|
|
|
|
case chunkenc.ValHistogram:
|
|
|
|
t, h := it.AtHistogram()
|
|
|
|
result = append(result, hSample{t: t, h: h})
|
|
|
|
case chunkenc.ValFloatHistogram:
|
|
|
|
t, fh := it.AtFloatHistogram()
|
|
|
|
result = append(result, fhSample{t: t, fh: fh})
|
|
|
|
default:
|
|
|
|
panic("unexpected value type")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
func getCounterResetHint(chunk chunks.Meta) chunkenc.CounterResetHeader {
|
|
|
|
switch chk := chunk.Chunk.(type) {
|
|
|
|
case *chunkenc.HistogramChunk:
|
|
|
|
return chk.GetCounterResetHeader()
|
|
|
|
case *chunkenc.FloatHistogramChunk:
|
|
|
|
return chk.GetCounterResetHeader()
|
|
|
|
}
|
|
|
|
return chunkenc.UnknownCounterReset
|
|
|
|
}
|