2017-04-10 18:59:45 +00:00
|
|
|
// Copyright 2017 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.
|
|
|
|
|
2016-12-14 14:47:05 +00:00
|
|
|
package tsdb
|
|
|
|
|
|
|
|
import (
|
2017-04-13 19:06:14 +00:00
|
|
|
"math"
|
2017-04-13 14:27:31 +00:00
|
|
|
"math/rand"
|
2016-12-19 10:44:11 +00:00
|
|
|
"sort"
|
2016-12-14 14:47:05 +00:00
|
|
|
"testing"
|
|
|
|
|
2017-04-09 14:00:25 +00:00
|
|
|
"github.com/prometheus/tsdb/chunks"
|
2017-04-04 09:27:26 +00:00
|
|
|
"github.com/prometheus/tsdb/labels"
|
2016-12-14 14:47:05 +00:00
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
2016-12-19 10:44:11 +00:00
|
|
|
type mockSeriesIterator struct {
|
2017-01-02 12:27:52 +00:00
|
|
|
seek func(int64) bool
|
|
|
|
at func() (int64, float64)
|
|
|
|
next func() bool
|
|
|
|
err func() error
|
2016-12-19 10:44:11 +00:00
|
|
|
}
|
|
|
|
|
2017-01-02 12:27:52 +00:00
|
|
|
func (m *mockSeriesIterator) Seek(t int64) bool { return m.seek(t) }
|
|
|
|
func (m *mockSeriesIterator) At() (int64, float64) { return m.at() }
|
|
|
|
func (m *mockSeriesIterator) Next() bool { return m.next() }
|
|
|
|
func (m *mockSeriesIterator) Err() error { return m.err() }
|
2016-12-19 10:44:11 +00:00
|
|
|
|
|
|
|
type mockSeries struct {
|
2016-12-21 14:12:26 +00:00
|
|
|
labels func() labels.Labels
|
2016-12-19 10:44:11 +00:00
|
|
|
iterator func() SeriesIterator
|
|
|
|
}
|
|
|
|
|
2017-05-03 17:15:28 +00:00
|
|
|
func newSeries(l map[string]string, s []sample) Series {
|
|
|
|
return &mockSeries{
|
|
|
|
labels: func() labels.Labels { return labels.FromMap(l) },
|
|
|
|
iterator: func() SeriesIterator { return newListSeriesIterator(s) },
|
|
|
|
}
|
|
|
|
}
|
2016-12-21 14:12:26 +00:00
|
|
|
func (m *mockSeries) Labels() labels.Labels { return m.labels() }
|
2016-12-19 10:44:11 +00:00
|
|
|
func (m *mockSeries) Iterator() SeriesIterator { return m.iterator() }
|
|
|
|
|
|
|
|
type listSeriesIterator struct {
|
|
|
|
list []sample
|
|
|
|
idx int
|
|
|
|
}
|
|
|
|
|
|
|
|
func newListSeriesIterator(list []sample) *listSeriesIterator {
|
|
|
|
return &listSeriesIterator{list: list, idx: -1}
|
|
|
|
}
|
|
|
|
|
2017-01-02 12:27:52 +00:00
|
|
|
func (it *listSeriesIterator) At() (int64, float64) {
|
2016-12-19 10:44:11 +00:00
|
|
|
s := it.list[it.idx]
|
|
|
|
return s.t, s.v
|
|
|
|
}
|
|
|
|
|
|
|
|
func (it *listSeriesIterator) Next() bool {
|
|
|
|
it.idx++
|
|
|
|
return it.idx < len(it.list)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (it *listSeriesIterator) Seek(t int64) bool {
|
2016-12-21 15:06:33 +00:00
|
|
|
if it.idx == -1 {
|
|
|
|
it.idx = 0
|
|
|
|
}
|
2016-12-19 10:44:11 +00:00
|
|
|
// Do binary search between current position and end.
|
|
|
|
it.idx = sort.Search(len(it.list)-it.idx, func(i int) bool {
|
|
|
|
s := it.list[i+it.idx]
|
|
|
|
return s.t >= t
|
|
|
|
})
|
2016-12-21 15:06:33 +00:00
|
|
|
|
2016-12-19 10:44:11 +00:00
|
|
|
return it.idx < len(it.list)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (it *listSeriesIterator) Err() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2017-03-14 14:24:08 +00:00
|
|
|
func TestMergedSeriesSet(t *testing.T) {
|
2016-12-19 10:44:11 +00:00
|
|
|
|
|
|
|
cases := []struct {
|
|
|
|
// The input sets in order (samples in series in b are strictly
|
|
|
|
// after those in a).
|
|
|
|
a, b SeriesSet
|
2017-01-06 07:08:02 +00:00
|
|
|
// The composition of a and b in the partition series set must yield
|
2016-12-19 10:44:11 +00:00
|
|
|
// results equivalent to the result series set.
|
|
|
|
exp SeriesSet
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
a: newListSeriesSet([]Series{
|
|
|
|
newSeries(map[string]string{
|
|
|
|
"a": "a",
|
|
|
|
}, []sample{
|
|
|
|
{t: 1, v: 1},
|
|
|
|
}),
|
|
|
|
}),
|
|
|
|
b: newListSeriesSet([]Series{
|
|
|
|
newSeries(map[string]string{
|
|
|
|
"a": "a",
|
|
|
|
}, []sample{
|
|
|
|
{t: 2, v: 2},
|
|
|
|
}),
|
|
|
|
newSeries(map[string]string{
|
|
|
|
"b": "b",
|
|
|
|
}, []sample{
|
|
|
|
{t: 1, v: 1},
|
|
|
|
}),
|
|
|
|
}),
|
|
|
|
exp: newListSeriesSet([]Series{
|
|
|
|
newSeries(map[string]string{
|
|
|
|
"a": "a",
|
|
|
|
}, []sample{
|
|
|
|
{t: 1, v: 1},
|
|
|
|
{t: 2, v: 2},
|
|
|
|
}),
|
|
|
|
newSeries(map[string]string{
|
|
|
|
"b": "b",
|
|
|
|
}, []sample{
|
|
|
|
{t: 1, v: 1},
|
|
|
|
}),
|
|
|
|
}),
|
|
|
|
},
|
2017-01-03 18:02:42 +00:00
|
|
|
{
|
|
|
|
a: newListSeriesSet([]Series{
|
|
|
|
newSeries(map[string]string{
|
|
|
|
"handler": "prometheus",
|
|
|
|
"instance": "127.0.0.1:9090",
|
|
|
|
}, []sample{
|
|
|
|
{t: 1, v: 1},
|
|
|
|
}),
|
|
|
|
newSeries(map[string]string{
|
|
|
|
"handler": "prometheus",
|
|
|
|
"instance": "localhost:9090",
|
|
|
|
}, []sample{
|
|
|
|
{t: 1, v: 2},
|
|
|
|
}),
|
|
|
|
}),
|
|
|
|
b: newListSeriesSet([]Series{
|
|
|
|
newSeries(map[string]string{
|
|
|
|
"handler": "prometheus",
|
|
|
|
"instance": "127.0.0.1:9090",
|
|
|
|
}, []sample{
|
|
|
|
{t: 2, v: 1},
|
|
|
|
}),
|
|
|
|
newSeries(map[string]string{
|
|
|
|
"handler": "query",
|
|
|
|
"instance": "localhost:9090",
|
|
|
|
}, []sample{
|
|
|
|
{t: 2, v: 2},
|
|
|
|
}),
|
|
|
|
}),
|
|
|
|
exp: newListSeriesSet([]Series{
|
|
|
|
newSeries(map[string]string{
|
|
|
|
"handler": "prometheus",
|
|
|
|
"instance": "127.0.0.1:9090",
|
|
|
|
}, []sample{
|
|
|
|
{t: 1, v: 1},
|
|
|
|
{t: 2, v: 1},
|
|
|
|
}),
|
|
|
|
newSeries(map[string]string{
|
|
|
|
"handler": "prometheus",
|
|
|
|
"instance": "localhost:9090",
|
|
|
|
}, []sample{
|
|
|
|
{t: 1, v: 2},
|
|
|
|
}),
|
|
|
|
newSeries(map[string]string{
|
|
|
|
"handler": "query",
|
|
|
|
"instance": "localhost:9090",
|
|
|
|
}, []sample{
|
|
|
|
{t: 2, v: 2},
|
|
|
|
}),
|
|
|
|
}),
|
|
|
|
},
|
2016-12-19 10:44:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Outer:
|
|
|
|
for _, c := range cases {
|
2017-03-14 14:24:08 +00:00
|
|
|
res := newMergedSeriesSet(c.a, c.b)
|
2016-12-19 10:44:11 +00:00
|
|
|
|
|
|
|
for {
|
|
|
|
eok, rok := c.exp.Next(), res.Next()
|
|
|
|
require.Equal(t, eok, rok, "next")
|
|
|
|
|
|
|
|
if !eok {
|
|
|
|
continue Outer
|
|
|
|
}
|
2017-01-02 12:27:52 +00:00
|
|
|
sexp := c.exp.At()
|
|
|
|
sres := res.At()
|
2016-12-19 10:44:11 +00:00
|
|
|
|
|
|
|
require.Equal(t, sexp.Labels(), sres.Labels(), "labels")
|
|
|
|
|
|
|
|
smplExp, errExp := expandSeriesIterator(sexp.Iterator())
|
|
|
|
smplRes, errRes := expandSeriesIterator(sres.Iterator())
|
|
|
|
|
|
|
|
require.Equal(t, errExp, errRes, "samples error")
|
|
|
|
require.Equal(t, smplExp, smplRes, "samples")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func expandSeriesIterator(it SeriesIterator) (r []sample, err error) {
|
|
|
|
for it.Next() {
|
2017-01-02 12:27:52 +00:00
|
|
|
t, v := it.At()
|
2016-12-19 10:44:11 +00:00
|
|
|
r = append(r, sample{t: t, v: v})
|
|
|
|
}
|
|
|
|
|
|
|
|
return r, it.Err()
|
|
|
|
}
|
2017-04-09 14:00:25 +00:00
|
|
|
|
2017-04-13 14:27:31 +00:00
|
|
|
// Index: labels -> postings -> chunkMetas -> chunkRef
|
|
|
|
// ChunkReader: ref -> vals
|
|
|
|
func createIdxChkReaders(tc []struct {
|
|
|
|
lset map[string]string
|
|
|
|
chunks [][]sample
|
|
|
|
}) (IndexReader, ChunkReader) {
|
|
|
|
sort.Slice(tc, func(i, j int) bool {
|
|
|
|
return labels.Compare(labels.FromMap(tc[i].lset), labels.FromMap(tc[i].lset)) < 0
|
|
|
|
})
|
|
|
|
|
|
|
|
postings := &memPostings{m: make(map[term][]uint32, 512)}
|
|
|
|
chkReader := mockChunkReader(make(map[uint64]chunks.Chunk))
|
|
|
|
mi := newMockIndex()
|
|
|
|
|
|
|
|
for i, s := range tc {
|
2017-05-22 08:01:57 +00:00
|
|
|
i = i + 1 // 0 is not a valid posting.
|
2017-04-13 14:27:31 +00:00
|
|
|
metas := make([]*ChunkMeta, 0, len(s.chunks))
|
|
|
|
for _, chk := range s.chunks {
|
|
|
|
// Collisions can be there, but for tests, its fine.
|
|
|
|
ref := rand.Uint64()
|
|
|
|
|
|
|
|
metas = append(metas, &ChunkMeta{
|
|
|
|
MinTime: chk[0].t,
|
|
|
|
MaxTime: chk[len(chk)-1].t,
|
|
|
|
Ref: ref,
|
|
|
|
})
|
|
|
|
|
|
|
|
chunk := chunks.NewXORChunk()
|
|
|
|
app, _ := chunk.Appender()
|
|
|
|
for _, smpl := range chk {
|
|
|
|
app.Append(smpl.t, smpl.v)
|
|
|
|
}
|
|
|
|
chkReader[ref] = chunk
|
|
|
|
}
|
|
|
|
|
|
|
|
mi.AddSeries(uint32(i), labels.FromMap(s.lset), metas...)
|
|
|
|
|
|
|
|
postings.add(uint32(i), term{})
|
|
|
|
for _, l := range labels.FromMap(s.lset) {
|
|
|
|
postings.add(uint32(i), term{l.Name, l.Value})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
for tm := range postings.m {
|
|
|
|
mi.WritePostings(tm.name, tm.name, postings.get(tm))
|
|
|
|
}
|
|
|
|
|
|
|
|
return mi, chkReader
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestBlockQuerier(t *testing.T) {
|
2017-04-13 19:06:14 +00:00
|
|
|
newSeries := func(l map[string]string, s []sample) Series {
|
|
|
|
return &mockSeries{
|
|
|
|
labels: func() labels.Labels { return labels.FromMap(l) },
|
|
|
|
iterator: func() SeriesIterator { return newListSeriesIterator(s) },
|
|
|
|
}
|
|
|
|
}
|
2017-04-13 14:27:31 +00:00
|
|
|
|
2017-04-21 20:08:26 +00:00
|
|
|
type query struct {
|
|
|
|
mint, maxt int64
|
|
|
|
ms []labels.Matcher
|
|
|
|
exp SeriesSet
|
|
|
|
}
|
|
|
|
|
|
|
|
cases := struct {
|
|
|
|
data []struct {
|
|
|
|
lset map[string]string
|
|
|
|
chunks [][]sample
|
|
|
|
}
|
|
|
|
|
|
|
|
queries []query
|
2017-04-13 14:27:31 +00:00
|
|
|
}{
|
2017-04-21 20:08:26 +00:00
|
|
|
data: []struct {
|
|
|
|
lset map[string]string
|
|
|
|
chunks [][]sample
|
|
|
|
}{
|
2017-04-13 14:27:31 +00:00
|
|
|
{
|
|
|
|
lset: map[string]string{
|
|
|
|
"a": "a",
|
|
|
|
},
|
|
|
|
chunks: [][]sample{
|
|
|
|
{
|
|
|
|
{1, 2}, {2, 3}, {3, 4},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{5, 2}, {6, 3}, {7, 4},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
lset: map[string]string{
|
|
|
|
"a": "a",
|
|
|
|
"b": "b",
|
|
|
|
},
|
|
|
|
chunks: [][]sample{
|
|
|
|
{
|
|
|
|
{1, 1}, {2, 2}, {3, 3},
|
|
|
|
},
|
|
|
|
{
|
2017-04-13 19:06:14 +00:00
|
|
|
{5, 3}, {6, 6},
|
2017-04-13 14:27:31 +00:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
lset: map[string]string{
|
|
|
|
"b": "b",
|
|
|
|
},
|
|
|
|
chunks: [][]sample{
|
|
|
|
{
|
|
|
|
{1, 3}, {2, 2}, {3, 6},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{5, 1}, {6, 7}, {7, 2},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
|
2017-04-21 20:08:26 +00:00
|
|
|
queries: []query{
|
|
|
|
{
|
|
|
|
mint: 0,
|
|
|
|
maxt: 0,
|
|
|
|
ms: []labels.Matcher{},
|
|
|
|
exp: newListSeriesSet([]Series{}),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
mint: 0,
|
|
|
|
maxt: 0,
|
|
|
|
ms: []labels.Matcher{labels.NewEqualMatcher("a", "a")},
|
|
|
|
exp: newListSeriesSet([]Series{}),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
mint: 1,
|
|
|
|
maxt: 0,
|
|
|
|
ms: []labels.Matcher{labels.NewEqualMatcher("a", "a")},
|
|
|
|
exp: newListSeriesSet([]Series{}),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
mint: 2,
|
|
|
|
maxt: 6,
|
|
|
|
ms: []labels.Matcher{labels.NewEqualMatcher("a", "a")},
|
|
|
|
exp: newListSeriesSet([]Series{
|
|
|
|
newSeries(map[string]string{
|
|
|
|
"a": "a",
|
|
|
|
},
|
|
|
|
[]sample{{2, 3}, {3, 4}, {5, 2}, {6, 3}},
|
|
|
|
),
|
|
|
|
newSeries(map[string]string{
|
|
|
|
"a": "a",
|
|
|
|
"b": "b",
|
|
|
|
},
|
|
|
|
[]sample{{2, 2}, {3, 3}, {5, 3}, {6, 6}},
|
|
|
|
),
|
|
|
|
}),
|
|
|
|
},
|
2017-04-13 19:06:14 +00:00
|
|
|
},
|
2017-04-13 14:27:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
Outer:
|
2017-04-21 20:08:26 +00:00
|
|
|
for _, c := range cases.queries {
|
|
|
|
ir, cr := createIdxChkReaders(cases.data)
|
2017-04-13 14:27:31 +00:00
|
|
|
querier := &blockQuerier{
|
2017-05-17 09:19:42 +00:00
|
|
|
index: ir,
|
|
|
|
chunks: cr,
|
2017-05-19 17:24:29 +00:00
|
|
|
tombstones: newEmptyTombstoneReader(),
|
2017-04-13 14:27:31 +00:00
|
|
|
|
|
|
|
mint: c.mint,
|
|
|
|
maxt: c.maxt,
|
|
|
|
}
|
|
|
|
|
|
|
|
res := querier.Select(c.ms...)
|
|
|
|
|
|
|
|
for {
|
|
|
|
eok, rok := c.exp.Next(), res.Next()
|
|
|
|
require.Equal(t, eok, rok, "next")
|
|
|
|
|
|
|
|
if !eok {
|
|
|
|
continue Outer
|
|
|
|
}
|
|
|
|
sexp := c.exp.At()
|
|
|
|
sres := res.At()
|
|
|
|
|
|
|
|
require.Equal(t, sexp.Labels(), sres.Labels(), "labels")
|
|
|
|
|
|
|
|
smplExp, errExp := expandSeriesIterator(sexp.Iterator())
|
|
|
|
smplRes, errRes := expandSeriesIterator(sres.Iterator())
|
|
|
|
|
|
|
|
require.Equal(t, errExp, errRes, "samples error")
|
|
|
|
require.Equal(t, smplExp, smplRes, "samples")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
2017-04-09 14:00:25 +00:00
|
|
|
|
2017-05-22 08:01:57 +00:00
|
|
|
func TestBlockQuerierDelete(t *testing.T) {
|
|
|
|
newSeries := func(l map[string]string, s []sample) Series {
|
|
|
|
return &mockSeries{
|
|
|
|
labels: func() labels.Labels { return labels.FromMap(l) },
|
|
|
|
iterator: func() SeriesIterator { return newListSeriesIterator(s) },
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type query struct {
|
|
|
|
mint, maxt int64
|
|
|
|
ms []labels.Matcher
|
|
|
|
exp SeriesSet
|
|
|
|
}
|
|
|
|
|
|
|
|
cases := struct {
|
|
|
|
data []struct {
|
|
|
|
lset map[string]string
|
|
|
|
chunks [][]sample
|
|
|
|
}
|
|
|
|
|
|
|
|
tombstones *mapTombstoneReader
|
|
|
|
queries []query
|
|
|
|
}{
|
|
|
|
data: []struct {
|
|
|
|
lset map[string]string
|
|
|
|
chunks [][]sample
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
lset: map[string]string{
|
|
|
|
"a": "a",
|
|
|
|
},
|
|
|
|
chunks: [][]sample{
|
|
|
|
{
|
|
|
|
{1, 2}, {2, 3}, {3, 4},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{5, 2}, {6, 3}, {7, 4},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
lset: map[string]string{
|
|
|
|
"a": "a",
|
|
|
|
"b": "b",
|
|
|
|
},
|
|
|
|
chunks: [][]sample{
|
|
|
|
{
|
|
|
|
{1, 1}, {2, 2}, {3, 3},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{4, 15}, {5, 3}, {6, 6},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
lset: map[string]string{
|
|
|
|
"b": "b",
|
|
|
|
},
|
|
|
|
chunks: [][]sample{
|
|
|
|
{
|
|
|
|
{1, 3}, {2, 2}, {3, 6},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{5, 1}, {6, 7}, {7, 2},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
tombstones: newMapTombstoneReader(
|
|
|
|
map[uint32][]trange{
|
|
|
|
1: []trange{{1, 3}},
|
|
|
|
2: []trange{{1, 3}, {6, 10}},
|
|
|
|
3: []trange{{6, 10}},
|
|
|
|
},
|
|
|
|
),
|
|
|
|
|
|
|
|
queries: []query{
|
|
|
|
{
|
|
|
|
mint: 2,
|
|
|
|
maxt: 7,
|
|
|
|
ms: []labels.Matcher{labels.NewEqualMatcher("a", "a")},
|
|
|
|
exp: newListSeriesSet([]Series{
|
|
|
|
newSeries(map[string]string{
|
|
|
|
"a": "a",
|
|
|
|
},
|
|
|
|
[]sample{{5, 2}, {6, 3}, {7, 4}},
|
|
|
|
),
|
|
|
|
newSeries(map[string]string{
|
|
|
|
"a": "a",
|
|
|
|
"b": "b",
|
|
|
|
},
|
|
|
|
[]sample{{4, 15}, {5, 3}},
|
|
|
|
),
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
mint: 2,
|
|
|
|
maxt: 7,
|
|
|
|
ms: []labels.Matcher{labels.NewEqualMatcher("b", "b")},
|
|
|
|
exp: newListSeriesSet([]Series{
|
|
|
|
newSeries(map[string]string{
|
|
|
|
"a": "a",
|
|
|
|
"b": "b",
|
|
|
|
},
|
|
|
|
[]sample{{4, 15}, {5, 3}},
|
|
|
|
),
|
|
|
|
newSeries(map[string]string{
|
|
|
|
"b": "b",
|
|
|
|
},
|
|
|
|
[]sample{{2, 2}, {3, 6}, {5, 1}},
|
|
|
|
),
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
mint: 1,
|
|
|
|
maxt: 4,
|
|
|
|
ms: []labels.Matcher{labels.NewEqualMatcher("a", "a")},
|
|
|
|
exp: newListSeriesSet([]Series{
|
|
|
|
newSeries(map[string]string{
|
|
|
|
"a": "a",
|
|
|
|
"b": "b",
|
|
|
|
},
|
|
|
|
[]sample{{4, 15}},
|
|
|
|
),
|
|
|
|
}),
|
|
|
|
},
|
|
|
|
{
|
|
|
|
mint: 1,
|
|
|
|
maxt: 3,
|
|
|
|
ms: []labels.Matcher{labels.NewEqualMatcher("a", "a")},
|
|
|
|
exp: newListSeriesSet([]Series{}),
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
Outer:
|
|
|
|
for _, c := range cases.queries {
|
|
|
|
ir, cr := createIdxChkReaders(cases.data)
|
|
|
|
querier := &blockQuerier{
|
|
|
|
index: ir,
|
|
|
|
chunks: cr,
|
|
|
|
tombstones: cases.tombstones.Copy(),
|
|
|
|
|
|
|
|
mint: c.mint,
|
|
|
|
maxt: c.maxt,
|
|
|
|
}
|
|
|
|
|
|
|
|
res := querier.Select(c.ms...)
|
|
|
|
|
|
|
|
for {
|
|
|
|
eok, rok := c.exp.Next(), res.Next()
|
|
|
|
require.Equal(t, eok, rok, "next")
|
|
|
|
|
|
|
|
if !eok {
|
|
|
|
continue Outer
|
|
|
|
}
|
|
|
|
sexp := c.exp.At()
|
|
|
|
sres := res.At()
|
|
|
|
|
|
|
|
require.Equal(t, sexp.Labels(), sres.Labels(), "labels")
|
|
|
|
|
|
|
|
smplExp, errExp := expandSeriesIterator(sexp.Iterator())
|
|
|
|
smplRes, errRes := expandSeriesIterator(sres.Iterator())
|
|
|
|
|
|
|
|
require.Equal(t, errExp, errRes, "samples error")
|
|
|
|
require.Equal(t, smplExp, smplRes, "samples")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2017-04-09 14:00:25 +00:00
|
|
|
func TestBaseChunkSeries(t *testing.T) {
|
|
|
|
type refdSeries struct {
|
|
|
|
lset labels.Labels
|
|
|
|
chunks []*ChunkMeta
|
|
|
|
|
|
|
|
ref uint32
|
|
|
|
}
|
|
|
|
|
|
|
|
cases := []struct {
|
|
|
|
series []refdSeries
|
|
|
|
// Postings should be in the sorted order of the the series
|
|
|
|
postings []uint32
|
|
|
|
|
|
|
|
expIdxs []int
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
series: []refdSeries{
|
|
|
|
{
|
|
|
|
lset: labels.New([]labels.Label{{"a", "a"}}...),
|
|
|
|
chunks: []*ChunkMeta{
|
|
|
|
{Ref: 29}, {Ref: 45}, {Ref: 245}, {Ref: 123}, {Ref: 4232}, {Ref: 5344},
|
|
|
|
{Ref: 121},
|
|
|
|
},
|
|
|
|
ref: 12,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
lset: labels.New([]labels.Label{{"a", "a"}, {"b", "b"}}...),
|
|
|
|
chunks: []*ChunkMeta{
|
|
|
|
{Ref: 82}, {Ref: 23}, {Ref: 234}, {Ref: 65}, {Ref: 26},
|
|
|
|
},
|
|
|
|
ref: 10,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
lset: labels.New([]labels.Label{{"b", "c"}}...),
|
|
|
|
chunks: []*ChunkMeta{{Ref: 8282}},
|
|
|
|
ref: 1,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
lset: labels.New([]labels.Label{{"b", "b"}}...),
|
|
|
|
chunks: []*ChunkMeta{
|
|
|
|
{Ref: 829}, {Ref: 239}, {Ref: 2349}, {Ref: 659}, {Ref: 269},
|
|
|
|
},
|
|
|
|
ref: 108,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
postings: []uint32{12, 10, 108},
|
|
|
|
|
|
|
|
expIdxs: []int{0, 1, 3},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
series: []refdSeries{
|
|
|
|
{
|
|
|
|
lset: labels.New([]labels.Label{{"a", "a"}, {"b", "b"}}...),
|
|
|
|
chunks: []*ChunkMeta{
|
|
|
|
{Ref: 82}, {Ref: 23}, {Ref: 234}, {Ref: 65}, {Ref: 26},
|
|
|
|
},
|
|
|
|
ref: 10,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
lset: labels.New([]labels.Label{{"b", "c"}}...),
|
|
|
|
chunks: []*ChunkMeta{{Ref: 8282}},
|
|
|
|
ref: 1,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
postings: []uint32{},
|
|
|
|
|
|
|
|
expIdxs: []int{},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range cases {
|
|
|
|
mi := newMockIndex()
|
|
|
|
for _, s := range tc.series {
|
|
|
|
mi.AddSeries(s.ref, s.lset, s.chunks...)
|
|
|
|
}
|
|
|
|
|
|
|
|
bcs := &baseChunkSeries{
|
2017-05-17 09:19:42 +00:00
|
|
|
p: newListPostings(tc.postings),
|
|
|
|
index: mi,
|
2017-05-19 17:24:29 +00:00
|
|
|
tombstones: newEmptyTombstoneReader(),
|
2017-04-09 14:00:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
i := 0
|
|
|
|
for bcs.Next() {
|
2017-05-17 09:19:42 +00:00
|
|
|
lset, chks, _ := bcs.At()
|
2017-04-09 14:00:25 +00:00
|
|
|
|
|
|
|
idx := tc.expIdxs[i]
|
|
|
|
|
|
|
|
require.Equal(t, tc.series[idx].lset, lset)
|
|
|
|
require.Equal(t, tc.series[idx].chunks, chks)
|
|
|
|
|
|
|
|
i++
|
|
|
|
}
|
|
|
|
require.Equal(t, len(tc.expIdxs), i)
|
|
|
|
require.NoError(t, bcs.Err())
|
|
|
|
}
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Remove after simpleSeries is merged
|
|
|
|
type itSeries struct {
|
|
|
|
si SeriesIterator
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s itSeries) Iterator() SeriesIterator { return s.si }
|
|
|
|
func (s itSeries) Labels() labels.Labels { return labels.Labels{} }
|
|
|
|
|
|
|
|
func chunkFromSamples(s []sample) *ChunkMeta {
|
|
|
|
mint, maxt := int64(0), int64(0)
|
|
|
|
|
|
|
|
if len(s) > 0 {
|
|
|
|
mint, maxt = s[0].t, s[len(s)-1].t
|
|
|
|
}
|
|
|
|
|
|
|
|
c := chunks.NewXORChunk()
|
|
|
|
ca, _ := c.Appender()
|
|
|
|
|
|
|
|
for _, s := range s {
|
|
|
|
ca.Append(s.t, s.v)
|
|
|
|
}
|
|
|
|
return &ChunkMeta{
|
|
|
|
MinTime: mint,
|
|
|
|
MaxTime: maxt,
|
|
|
|
|
|
|
|
Chunk: c,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSeriesIterator(t *testing.T) {
|
|
|
|
itcases := []struct {
|
|
|
|
a, b, c []sample
|
|
|
|
exp []sample
|
2017-04-13 19:07:21 +00:00
|
|
|
|
|
|
|
mint, maxt int64
|
2017-04-09 14:00:25 +00:00
|
|
|
}{
|
|
|
|
{
|
|
|
|
a: []sample{},
|
|
|
|
b: []sample{},
|
|
|
|
c: []sample{},
|
|
|
|
|
|
|
|
exp: []sample{},
|
2017-04-13 19:07:21 +00:00
|
|
|
|
|
|
|
mint: math.MinInt64,
|
|
|
|
maxt: math.MaxInt64,
|
2017-04-09 14:00:25 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
a: []sample{
|
2017-04-13 19:07:21 +00:00
|
|
|
{1, 2}, {2, 3}, {3, 5}, {6, 1},
|
2017-04-09 14:00:25 +00:00
|
|
|
},
|
|
|
|
b: []sample{},
|
|
|
|
c: []sample{
|
2017-04-13 19:07:21 +00:00
|
|
|
{7, 89}, {9, 8},
|
2017-04-09 14:00:25 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
exp: []sample{
|
2017-04-13 19:07:21 +00:00
|
|
|
{1, 2}, {2, 3}, {3, 5}, {6, 1}, {7, 89}, {9, 8},
|
2017-04-09 14:00:25 +00:00
|
|
|
},
|
2017-04-13 19:07:21 +00:00
|
|
|
mint: math.MinInt64,
|
|
|
|
maxt: math.MaxInt64,
|
2017-04-09 14:00:25 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
a: []sample{},
|
|
|
|
b: []sample{
|
2017-04-13 19:07:21 +00:00
|
|
|
{1, 2}, {2, 3}, {3, 5}, {6, 1},
|
2017-04-09 14:00:25 +00:00
|
|
|
},
|
|
|
|
c: []sample{
|
2017-04-13 19:07:21 +00:00
|
|
|
{7, 89}, {9, 8},
|
2017-04-09 14:00:25 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
exp: []sample{
|
2017-04-13 19:07:21 +00:00
|
|
|
{1, 2}, {2, 3}, {3, 5}, {6, 1}, {7, 89}, {9, 8},
|
2017-04-09 14:00:25 +00:00
|
|
|
},
|
2017-04-13 19:07:21 +00:00
|
|
|
mint: 2,
|
|
|
|
maxt: 8,
|
2017-04-09 14:00:25 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
a: []sample{
|
2017-04-13 19:07:21 +00:00
|
|
|
{1, 2}, {2, 3}, {3, 5}, {6, 1},
|
2017-04-09 14:00:25 +00:00
|
|
|
},
|
|
|
|
b: []sample{
|
2017-04-13 19:07:21 +00:00
|
|
|
{7, 89}, {9, 8},
|
2017-04-09 14:00:25 +00:00
|
|
|
},
|
|
|
|
c: []sample{
|
2017-04-13 19:07:21 +00:00
|
|
|
{10, 22}, {203, 3493},
|
2017-04-09 14:00:25 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
exp: []sample{
|
2017-04-13 19:07:21 +00:00
|
|
|
{1, 2}, {2, 3}, {3, 5}, {6, 1}, {7, 89}, {9, 8}, {10, 22}, {203, 3493},
|
2017-04-09 14:00:25 +00:00
|
|
|
},
|
2017-04-13 19:07:21 +00:00
|
|
|
mint: 6,
|
|
|
|
maxt: 10,
|
2017-04-09 14:00:25 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
seekcases := []struct {
|
|
|
|
a, b, c []sample
|
|
|
|
|
|
|
|
seek int64
|
|
|
|
success bool
|
|
|
|
exp []sample
|
2017-04-13 19:07:21 +00:00
|
|
|
|
|
|
|
mint, maxt int64
|
2017-04-09 14:00:25 +00:00
|
|
|
}{
|
|
|
|
{
|
|
|
|
a: []sample{},
|
|
|
|
b: []sample{},
|
|
|
|
c: []sample{},
|
|
|
|
|
|
|
|
seek: 0,
|
|
|
|
success: false,
|
|
|
|
exp: nil,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
a: []sample{
|
|
|
|
{2, 3},
|
|
|
|
},
|
|
|
|
b: []sample{},
|
|
|
|
c: []sample{
|
2017-04-13 19:07:21 +00:00
|
|
|
{7, 89}, {9, 8},
|
2017-04-09 14:00:25 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
seek: 10,
|
|
|
|
success: false,
|
|
|
|
exp: nil,
|
2017-04-13 19:07:21 +00:00
|
|
|
mint: math.MinInt64,
|
|
|
|
maxt: math.MaxInt64,
|
2017-04-09 14:00:25 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
a: []sample{},
|
|
|
|
b: []sample{
|
2017-04-13 19:07:21 +00:00
|
|
|
{1, 2}, {3, 5}, {6, 1},
|
2017-04-09 14:00:25 +00:00
|
|
|
},
|
|
|
|
c: []sample{
|
2017-04-13 19:07:21 +00:00
|
|
|
{7, 89}, {9, 8},
|
2017-04-09 14:00:25 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
seek: 2,
|
|
|
|
success: true,
|
|
|
|
exp: []sample{
|
2017-04-13 19:07:21 +00:00
|
|
|
{3, 5}, {6, 1}, {7, 89}, {9, 8},
|
2017-04-09 14:00:25 +00:00
|
|
|
},
|
2017-04-13 19:07:21 +00:00
|
|
|
mint: 5,
|
|
|
|
maxt: 8,
|
2017-04-09 14:00:25 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
a: []sample{
|
|
|
|
{6, 1},
|
|
|
|
},
|
|
|
|
b: []sample{
|
|
|
|
{9, 8},
|
|
|
|
},
|
|
|
|
c: []sample{
|
2017-04-13 19:07:21 +00:00
|
|
|
{10, 22}, {203, 3493},
|
2017-04-09 14:00:25 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
seek: 10,
|
|
|
|
success: true,
|
|
|
|
exp: []sample{
|
2017-04-13 19:07:21 +00:00
|
|
|
{10, 22}, {203, 3493},
|
2017-04-09 14:00:25 +00:00
|
|
|
},
|
2017-04-13 19:07:21 +00:00
|
|
|
mint: 10,
|
|
|
|
maxt: 203,
|
2017-04-09 14:00:25 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
a: []sample{
|
|
|
|
{6, 1},
|
|
|
|
},
|
|
|
|
b: []sample{
|
|
|
|
{9, 8},
|
|
|
|
},
|
|
|
|
c: []sample{
|
2017-04-13 19:07:21 +00:00
|
|
|
{10, 22}, {203, 3493},
|
2017-04-09 14:00:25 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
seek: 203,
|
|
|
|
success: true,
|
|
|
|
exp: []sample{
|
|
|
|
{203, 3493},
|
|
|
|
},
|
2017-04-13 19:07:21 +00:00
|
|
|
mint: 7,
|
|
|
|
maxt: 203,
|
2017-04-09 14:00:25 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
t.Run("Chunk", func(t *testing.T) {
|
|
|
|
for _, tc := range itcases {
|
|
|
|
chkMetas := []*ChunkMeta{
|
|
|
|
chunkFromSamples(tc.a),
|
|
|
|
chunkFromSamples(tc.b),
|
|
|
|
chunkFromSamples(tc.c),
|
|
|
|
}
|
2017-05-17 09:19:42 +00:00
|
|
|
res := newChunkSeriesIterator(chkMetas, stone{}, tc.mint, tc.maxt)
|
2017-04-13 19:07:21 +00:00
|
|
|
|
|
|
|
smplValid := make([]sample, 0)
|
|
|
|
for _, s := range tc.exp {
|
|
|
|
if s.t >= tc.mint && s.t <= tc.maxt {
|
|
|
|
smplValid = append(smplValid, s)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
exp := newListSeriesIterator(smplValid)
|
2017-04-09 14:00:25 +00:00
|
|
|
|
|
|
|
smplExp, errExp := expandSeriesIterator(exp)
|
|
|
|
smplRes, errRes := expandSeriesIterator(res)
|
|
|
|
|
|
|
|
require.Equal(t, errExp, errRes, "samples error")
|
|
|
|
require.Equal(t, smplExp, smplRes, "samples")
|
|
|
|
}
|
|
|
|
|
|
|
|
t.Run("Seek", func(t *testing.T) {
|
2017-04-13 19:07:21 +00:00
|
|
|
extra := []struct {
|
|
|
|
a, b, c []sample
|
|
|
|
|
|
|
|
seek int64
|
|
|
|
success bool
|
|
|
|
exp []sample
|
|
|
|
|
|
|
|
mint, maxt int64
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
a: []sample{
|
|
|
|
{6, 1},
|
|
|
|
},
|
|
|
|
b: []sample{
|
|
|
|
{9, 8},
|
|
|
|
},
|
|
|
|
c: []sample{
|
|
|
|
{10, 22}, {203, 3493},
|
|
|
|
},
|
|
|
|
|
|
|
|
seek: 203,
|
|
|
|
success: false,
|
|
|
|
exp: nil,
|
|
|
|
mint: 2,
|
|
|
|
maxt: 202,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
a: []sample{
|
|
|
|
{6, 1},
|
|
|
|
},
|
|
|
|
b: []sample{
|
|
|
|
{9, 8},
|
|
|
|
},
|
|
|
|
c: []sample{
|
|
|
|
{10, 22}, {203, 3493},
|
|
|
|
},
|
|
|
|
|
|
|
|
seek: 5,
|
|
|
|
success: true,
|
|
|
|
exp: []sample{{10, 22}},
|
|
|
|
mint: 10,
|
|
|
|
maxt: 202,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
seekcases2 := append(seekcases, extra...)
|
|
|
|
|
|
|
|
for _, tc := range seekcases2 {
|
2017-04-09 14:00:25 +00:00
|
|
|
chkMetas := []*ChunkMeta{
|
|
|
|
chunkFromSamples(tc.a),
|
|
|
|
chunkFromSamples(tc.b),
|
|
|
|
chunkFromSamples(tc.c),
|
|
|
|
}
|
2017-05-17 09:19:42 +00:00
|
|
|
res := newChunkSeriesIterator(chkMetas, stone{}, tc.mint, tc.maxt)
|
2017-04-13 19:07:21 +00:00
|
|
|
|
|
|
|
smplValid := make([]sample, 0)
|
|
|
|
for _, s := range tc.exp {
|
|
|
|
if s.t >= tc.mint && s.t <= tc.maxt {
|
|
|
|
smplValid = append(smplValid, s)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
exp := newListSeriesIterator(smplValid)
|
2017-04-09 14:00:25 +00:00
|
|
|
|
|
|
|
require.Equal(t, tc.success, res.Seek(tc.seek))
|
|
|
|
|
|
|
|
if tc.success {
|
|
|
|
// Init the list and then proceed to check.
|
|
|
|
remaining := exp.Next()
|
|
|
|
require.True(t, remaining)
|
|
|
|
|
|
|
|
for remaining {
|
|
|
|
sExp, eExp := exp.At()
|
|
|
|
sRes, eRes := res.At()
|
|
|
|
require.Equal(t, eExp, eRes, "samples error")
|
|
|
|
require.Equal(t, sExp, sRes, "samples")
|
|
|
|
|
|
|
|
remaining = exp.Next()
|
|
|
|
require.Equal(t, remaining, res.Next())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
t.Run("Chain", func(t *testing.T) {
|
|
|
|
for _, tc := range itcases {
|
|
|
|
a, b, c := itSeries{newListSeriesIterator(tc.a)},
|
|
|
|
itSeries{newListSeriesIterator(tc.b)},
|
|
|
|
itSeries{newListSeriesIterator(tc.c)}
|
|
|
|
|
|
|
|
res := newChainedSeriesIterator(a, b, c)
|
|
|
|
exp := newListSeriesIterator(tc.exp)
|
|
|
|
|
|
|
|
smplExp, errExp := expandSeriesIterator(exp)
|
|
|
|
smplRes, errRes := expandSeriesIterator(res)
|
|
|
|
|
|
|
|
require.Equal(t, errExp, errRes, "samples error")
|
|
|
|
require.Equal(t, smplExp, smplRes, "samples")
|
|
|
|
}
|
|
|
|
|
|
|
|
t.Run("Seek", func(t *testing.T) {
|
|
|
|
for _, tc := range seekcases {
|
|
|
|
a, b, c := itSeries{newListSeriesIterator(tc.a)},
|
|
|
|
itSeries{newListSeriesIterator(tc.b)},
|
|
|
|
itSeries{newListSeriesIterator(tc.c)}
|
|
|
|
|
|
|
|
res := newChainedSeriesIterator(a, b, c)
|
|
|
|
exp := newListSeriesIterator(tc.exp)
|
|
|
|
|
|
|
|
require.Equal(t, tc.success, res.Seek(tc.seek))
|
|
|
|
|
|
|
|
if tc.success {
|
|
|
|
// Init the list and then proceed to check.
|
|
|
|
remaining := exp.Next()
|
|
|
|
require.True(t, remaining)
|
|
|
|
|
|
|
|
for remaining {
|
|
|
|
sExp, eExp := exp.At()
|
|
|
|
sRes, eRes := res.At()
|
|
|
|
require.Equal(t, eExp, eRes, "samples error")
|
|
|
|
require.Equal(t, sExp, sRes, "samples")
|
|
|
|
|
|
|
|
remaining = exp.Next()
|
|
|
|
require.Equal(t, remaining, res.Next())
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
return
|
|
|
|
}
|
2017-05-01 09:03:56 +00:00
|
|
|
|
|
|
|
func TestPopulatedCSReturnsValidChunkSlice(t *testing.T) {
|
|
|
|
lbls := []labels.Labels{labels.New(labels.Label{"a", "b"})}
|
|
|
|
chunkMetas := [][]*ChunkMeta{
|
|
|
|
{
|
|
|
|
{MinTime: 1, MaxTime: 2, Ref: 1},
|
|
|
|
{MinTime: 3, MaxTime: 4, Ref: 2},
|
|
|
|
{MinTime: 10, MaxTime: 12, Ref: 3},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
cr := mockChunkReader(
|
|
|
|
map[uint64]chunks.Chunk{
|
|
|
|
1: chunks.NewXORChunk(),
|
|
|
|
2: chunks.NewXORChunk(),
|
|
|
|
3: chunks.NewXORChunk(),
|
|
|
|
},
|
|
|
|
)
|
|
|
|
|
|
|
|
m := &mockChunkSeriesSet{l: lbls, cm: chunkMetas, i: -1}
|
|
|
|
p := &populatedChunkSeries{
|
|
|
|
set: m,
|
|
|
|
chunks: cr,
|
|
|
|
|
2017-05-01 09:31:17 +00:00
|
|
|
mint: 0,
|
|
|
|
maxt: 0,
|
2017-05-01 09:03:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
require.False(t, p.Next())
|
2017-05-01 09:31:17 +00:00
|
|
|
|
|
|
|
p.mint = 6
|
|
|
|
p.maxt = 9
|
|
|
|
require.False(t, p.Next())
|
|
|
|
|
2017-05-03 17:15:28 +00:00
|
|
|
// Test the case where 1 chunk could cause an unpopulated chunk to be returned.
|
|
|
|
chunkMetas = [][]*ChunkMeta{
|
|
|
|
{
|
|
|
|
{MinTime: 1, MaxTime: 2, Ref: 1},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
m = &mockChunkSeriesSet{l: lbls, cm: chunkMetas, i: -1}
|
|
|
|
p = &populatedChunkSeries{
|
|
|
|
set: m,
|
|
|
|
chunks: cr,
|
|
|
|
|
|
|
|
mint: 10,
|
|
|
|
maxt: 15,
|
|
|
|
}
|
|
|
|
require.False(t, p.Next())
|
2017-05-01 09:03:56 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
type mockChunkSeriesSet struct {
|
|
|
|
l []labels.Labels
|
|
|
|
cm [][]*ChunkMeta
|
|
|
|
|
|
|
|
i int
|
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mockChunkSeriesSet) Next() bool {
|
|
|
|
if len(m.l) != len(m.cm) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
m.i++
|
|
|
|
return m.i < len(m.l)
|
|
|
|
}
|
|
|
|
|
2017-05-17 09:19:42 +00:00
|
|
|
func (m *mockChunkSeriesSet) At() (labels.Labels, []*ChunkMeta, stone) {
|
|
|
|
return m.l[m.i], m.cm[m.i], stone{}
|
2017-05-01 09:03:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (m *mockChunkSeriesSet) Err() error {
|
|
|
|
return nil
|
|
|
|
}
|