2014-06-06 02:55:53 -07:00
|
|
|
package storage_ng
|
|
|
|
|
|
|
|
import (
|
|
|
|
"io/ioutil"
|
2014-08-12 08:46:46 -07:00
|
|
|
"os"
|
2014-06-06 02:55:53 -07:00
|
|
|
"testing"
|
|
|
|
|
|
|
|
clientmodel "github.com/prometheus/client_golang/model"
|
|
|
|
|
|
|
|
"github.com/prometheus/prometheus/storage/metric"
|
|
|
|
"github.com/prometheus/prometheus/utility"
|
|
|
|
)
|
|
|
|
|
2014-08-12 08:46:46 -07:00
|
|
|
var (
|
|
|
|
indexes = Indexes{
|
2014-06-06 02:55:53 -07:00
|
|
|
FingerprintToSeries: map[clientmodel.Fingerprint]*memorySeries{
|
|
|
|
0: {
|
|
|
|
metric: clientmodel.Metric{
|
|
|
|
clientmodel.MetricNameLabel: "metric_0",
|
|
|
|
"label_1": "value_1",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
1: {
|
|
|
|
metric: clientmodel.Metric{
|
|
|
|
clientmodel.MetricNameLabel: "metric_0",
|
|
|
|
"label_2": "value_2",
|
2014-08-12 08:46:46 -07:00
|
|
|
"label_3": "value_3",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
2: {
|
|
|
|
metric: clientmodel.Metric{
|
|
|
|
clientmodel.MetricNameLabel: "metric_1",
|
|
|
|
"label_1": "value_2",
|
2014-06-06 02:55:53 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
LabelPairToFingerprints: map[metric.LabelPair]utility.Set{
|
|
|
|
metric.LabelPair{
|
|
|
|
Name: clientmodel.MetricNameLabel,
|
|
|
|
Value: "metric_0",
|
|
|
|
}: {
|
2014-08-12 08:46:46 -07:00
|
|
|
clientmodel.Fingerprint(0): struct{}{},
|
|
|
|
clientmodel.Fingerprint(1): struct{}{},
|
|
|
|
},
|
|
|
|
metric.LabelPair{
|
|
|
|
Name: clientmodel.MetricNameLabel,
|
|
|
|
Value: "metric_1",
|
|
|
|
}: {
|
|
|
|
clientmodel.Fingerprint(2): struct{}{},
|
2014-06-06 02:55:53 -07:00
|
|
|
},
|
|
|
|
metric.LabelPair{
|
|
|
|
Name: "label_1",
|
|
|
|
Value: "value_1",
|
|
|
|
}: {
|
2014-08-12 08:46:46 -07:00
|
|
|
clientmodel.Fingerprint(0): struct{}{},
|
|
|
|
},
|
|
|
|
metric.LabelPair{
|
|
|
|
Name: "label_1",
|
|
|
|
Value: "value_2",
|
|
|
|
}: {
|
|
|
|
clientmodel.Fingerprint(2): struct{}{},
|
2014-06-06 02:55:53 -07:00
|
|
|
},
|
|
|
|
metric.LabelPair{
|
|
|
|
Name: "label_2",
|
|
|
|
Value: "value_2",
|
|
|
|
}: {
|
2014-08-12 08:46:46 -07:00
|
|
|
clientmodel.Fingerprint(1): struct{}{},
|
|
|
|
},
|
|
|
|
metric.LabelPair{
|
|
|
|
Name: "label_3",
|
|
|
|
Value: "value_2",
|
|
|
|
}: {
|
|
|
|
clientmodel.Fingerprint(1): struct{}{},
|
2014-06-06 02:55:53 -07:00
|
|
|
},
|
|
|
|
},
|
|
|
|
LabelNameToLabelValues: map[clientmodel.LabelName]utility.Set{
|
|
|
|
clientmodel.MetricNameLabel: {
|
|
|
|
clientmodel.LabelValue("metric_0"): struct{}{},
|
2014-08-12 08:46:46 -07:00
|
|
|
clientmodel.LabelValue("metric_1"): struct{}{},
|
2014-06-06 02:55:53 -07:00
|
|
|
},
|
|
|
|
"label_1": {
|
|
|
|
clientmodel.LabelValue("value_1"): struct{}{},
|
2014-08-12 08:46:46 -07:00
|
|
|
clientmodel.LabelValue("value_2"): struct{}{},
|
2014-06-06 02:55:53 -07:00
|
|
|
},
|
|
|
|
"label_2": {
|
|
|
|
clientmodel.LabelValue("value_2"): struct{}{},
|
|
|
|
},
|
2014-08-12 08:46:46 -07:00
|
|
|
"label_3": {
|
|
|
|
clientmodel.LabelValue("value_3"): struct{}{},
|
|
|
|
},
|
2014-06-06 02:55:53 -07:00
|
|
|
},
|
|
|
|
}
|
2014-08-12 08:46:46 -07:00
|
|
|
)
|
2014-06-06 02:55:53 -07:00
|
|
|
|
2014-08-12 08:46:46 -07:00
|
|
|
func TestIndexPersistence(t *testing.T) {
|
2014-06-06 02:55:53 -07:00
|
|
|
basePath, err := ioutil.TempDir("", "test_index_persistence")
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2014-08-12 08:46:46 -07:00
|
|
|
defer os.RemoveAll(basePath)
|
2014-06-06 02:55:53 -07:00
|
|
|
p, err := NewDiskPersistence(basePath, 1024)
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2014-08-12 08:46:46 -07:00
|
|
|
|
|
|
|
if err := p.PersistIndexes(&indexes); err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
2014-06-06 02:55:53 -07:00
|
|
|
|
|
|
|
actual, err := p.LoadIndexes()
|
|
|
|
if err != nil {
|
|
|
|
t.Fatal(err)
|
|
|
|
}
|
|
|
|
|
2014-08-12 08:46:46 -07:00
|
|
|
if len(actual.FingerprintToSeries) != len(indexes.FingerprintToSeries) {
|
|
|
|
t.Fatalf("Count mismatch: Got %d; want %d", len(actual.FingerprintToSeries), len(indexes.FingerprintToSeries))
|
2014-06-06 02:55:53 -07:00
|
|
|
}
|
|
|
|
for fp, actualSeries := range actual.FingerprintToSeries {
|
2014-08-12 08:46:46 -07:00
|
|
|
expectedSeries := indexes.FingerprintToSeries[fp]
|
2014-06-06 02:55:53 -07:00
|
|
|
if !expectedSeries.metric.Equal(actualSeries.metric) {
|
|
|
|
t.Fatalf("%s: Got %s; want %s", fp, actualSeries.metric, expectedSeries.metric)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-12 08:46:46 -07:00
|
|
|
if len(actual.LabelPairToFingerprints) != len(indexes.LabelPairToFingerprints) {
|
|
|
|
t.Fatalf("Count mismatch: Got %d; want %d", len(actual.LabelPairToFingerprints), len(indexes.LabelPairToFingerprints))
|
2014-06-06 02:55:53 -07:00
|
|
|
}
|
|
|
|
for lp, actualFps := range actual.LabelPairToFingerprints {
|
2014-08-12 08:46:46 -07:00
|
|
|
expectedFps := indexes.LabelPairToFingerprints[lp]
|
2014-06-06 02:55:53 -07:00
|
|
|
if len(actualFps) != len(actualFps.Intersection(expectedFps)) {
|
|
|
|
t.Fatalf("%s: Got %s; want %s", lp, actualFps, expectedFps)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-12 08:46:46 -07:00
|
|
|
if len(actual.LabelNameToLabelValues) != len(indexes.LabelNameToLabelValues) {
|
|
|
|
t.Fatalf("Count mismatch: Got %d; want %d", len(actual.LabelNameToLabelValues), len(indexes.LabelNameToLabelValues))
|
2014-06-06 02:55:53 -07:00
|
|
|
}
|
|
|
|
for name, actualVals := range actual.LabelNameToLabelValues {
|
2014-08-12 08:46:46 -07:00
|
|
|
expectedVals := indexes.LabelNameToLabelValues[name]
|
2014-06-06 02:55:53 -07:00
|
|
|
if len(actualVals) != len(actualVals.Intersection(expectedVals)) {
|
|
|
|
t.Fatalf("%s: Got %s; want %s", name, actualVals, expectedVals)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-08-12 08:46:46 -07:00
|
|
|
|
|
|
|
func BenchmarkPersistIndexes(b *testing.B) {
|
|
|
|
basePath, err := ioutil.TempDir("", "test_index_persistence")
|
|
|
|
if err != nil {
|
|
|
|
b.Fatal(err)
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(basePath)
|
|
|
|
p, err := NewDiskPersistence(basePath, 1024)
|
|
|
|
if err != nil {
|
|
|
|
b.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
b.ResetTimer()
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
if err := p.PersistIndexes(&indexes); err != nil {
|
|
|
|
b.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
b.StopTimer()
|
|
|
|
}
|
|
|
|
|
|
|
|
func BenchmarkLoadIndexes(b *testing.B) {
|
|
|
|
basePath, err := ioutil.TempDir("", "test_index_persistence")
|
|
|
|
if err != nil {
|
|
|
|
b.Fatal(err)
|
|
|
|
}
|
|
|
|
defer os.RemoveAll(basePath)
|
|
|
|
p, err := NewDiskPersistence(basePath, 1024)
|
|
|
|
if err != nil {
|
|
|
|
b.Fatal(err)
|
|
|
|
}
|
|
|
|
if err := p.PersistIndexes(&indexes); err != nil {
|
|
|
|
b.Fatal(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
b.ResetTimer()
|
|
|
|
for i := 0; i < b.N; i++ {
|
|
|
|
_, err := p.LoadIndexes()
|
|
|
|
if err != nil {
|
|
|
|
b.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
b.StopTimer()
|
|
|
|
}
|