2015-01-21 19:07:45 +00:00
|
|
|
// Copyright 2014 The Prometheus Authors
|
2014-09-19 16:18:44 +00:00
|
|
|
// 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.
|
|
|
|
|
2014-09-16 13:47:24 +00:00
|
|
|
// Package index provides a number of indexes backed by persistent key-value
|
|
|
|
// stores. The only supported implementation of a key-value store is currently
|
|
|
|
// goleveldb, but other implementations can easily be added.
|
2014-08-21 20:06:11 +00:00
|
|
|
package index
|
|
|
|
|
|
|
|
import (
|
2014-11-05 19:02:45 +00:00
|
|
|
"os"
|
2014-09-09 13:13:07 +00:00
|
|
|
"path"
|
2014-08-21 20:06:11 +00:00
|
|
|
|
2015-08-20 15:18:46 +00:00
|
|
|
"github.com/prometheus/common/model"
|
2014-08-21 20:06:11 +00:00
|
|
|
|
2014-09-23 17:21:10 +00:00
|
|
|
"github.com/prometheus/prometheus/storage/local/codable"
|
2014-08-21 20:06:11 +00:00
|
|
|
)
|
|
|
|
|
2014-09-09 13:13:07 +00:00
|
|
|
const (
|
2014-09-10 16:41:52 +00:00
|
|
|
fingerprintToMetricDir = "archived_fingerprint_to_metric"
|
|
|
|
fingerprintTimeRangeDir = "archived_fingerprint_to_timerange"
|
2014-09-09 13:13:07 +00:00
|
|
|
labelNameToLabelValuesDir = "labelname_to_labelvalues"
|
|
|
|
labelPairToFingerprintsDir = "labelpair_to_fingerprints"
|
|
|
|
)
|
|
|
|
|
2015-07-06 23:10:14 +00:00
|
|
|
// LevelDB cache sizes, changeable via flags.
|
2014-09-09 13:13:07 +00:00
|
|
|
var (
|
2015-06-15 10:49:28 +00:00
|
|
|
FingerprintMetricCacheSize = 10 * 1024 * 1024
|
|
|
|
FingerprintTimeRangeCacheSize = 5 * 1024 * 1024
|
|
|
|
LabelNameLabelValuesCacheSize = 10 * 1024 * 1024
|
|
|
|
LabelPairFingerprintsCacheSize = 20 * 1024 * 1024
|
2014-09-09 13:13:07 +00:00
|
|
|
)
|
|
|
|
|
2014-08-21 20:06:11 +00:00
|
|
|
// FingerprintMetricMapping is an in-memory map of fingerprints to metrics.
|
2015-08-20 15:18:46 +00:00
|
|
|
type FingerprintMetricMapping map[model.Fingerprint]model.Metric
|
2014-08-21 20:06:11 +00:00
|
|
|
|
|
|
|
// FingerprintMetricIndex models a database mapping fingerprints to metrics.
|
|
|
|
type FingerprintMetricIndex struct {
|
|
|
|
KeyValueStore
|
|
|
|
}
|
|
|
|
|
|
|
|
// IndexBatch indexes a batch of mappings from fingerprints to metrics.
|
2014-09-16 13:47:24 +00:00
|
|
|
//
|
|
|
|
// This method is goroutine-safe, but note that no specific order of execution
|
|
|
|
// can be guaranteed (especially critical if IndexBatch and UnindexBatch are
|
2014-11-20 20:03:51 +00:00
|
|
|
// called concurrently for the same fingerprint).
|
2014-08-21 20:06:11 +00:00
|
|
|
func (i *FingerprintMetricIndex) IndexBatch(mapping FingerprintMetricMapping) error {
|
|
|
|
b := i.NewBatch()
|
|
|
|
|
|
|
|
for fp, m := range mapping {
|
2014-09-23 17:21:10 +00:00
|
|
|
b.Put(codable.Fingerprint(fp), codable.Metric(m))
|
2014-08-21 20:06:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return i.Commit(b)
|
|
|
|
}
|
|
|
|
|
|
|
|
// UnindexBatch unindexes a batch of mappings from fingerprints to metrics.
|
2014-09-16 13:47:24 +00:00
|
|
|
//
|
|
|
|
// This method is goroutine-safe, but note that no specific order of execution
|
|
|
|
// can be guaranteed (especially critical if IndexBatch and UnindexBatch are
|
2014-11-20 20:03:51 +00:00
|
|
|
// called concurrently for the same fingerprint).
|
2014-08-21 20:06:11 +00:00
|
|
|
func (i *FingerprintMetricIndex) UnindexBatch(mapping FingerprintMetricMapping) error {
|
|
|
|
b := i.NewBatch()
|
|
|
|
|
2014-09-16 13:47:24 +00:00
|
|
|
for fp := range mapping {
|
2014-09-23 17:21:10 +00:00
|
|
|
b.Delete(codable.Fingerprint(fp))
|
2014-08-21 20:06:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return i.Commit(b)
|
|
|
|
}
|
|
|
|
|
2014-09-16 13:47:24 +00:00
|
|
|
// Lookup looks up a metric by fingerprint. Looking up a non-existing
|
|
|
|
// fingerprint is not an error. In that case, (nil, false, nil) is returned.
|
|
|
|
//
|
|
|
|
// This method is goroutine-safe.
|
2015-08-20 15:18:46 +00:00
|
|
|
func (i *FingerprintMetricIndex) Lookup(fp model.Fingerprint) (metric model.Metric, ok bool, err error) {
|
2014-09-23 17:21:10 +00:00
|
|
|
ok, err = i.Get(codable.Fingerprint(fp), (*codable.Metric)(&metric))
|
2014-09-14 13:33:56 +00:00
|
|
|
return
|
2014-08-21 20:06:11 +00:00
|
|
|
}
|
|
|
|
|
2014-09-16 13:47:24 +00:00
|
|
|
// NewFingerprintMetricIndex returns a LevelDB-backed FingerprintMetricIndex
|
|
|
|
// ready to use.
|
2014-09-10 16:41:52 +00:00
|
|
|
func NewFingerprintMetricIndex(basePath string) (*FingerprintMetricIndex, error) {
|
|
|
|
fingerprintToMetricDB, err := NewLevelDB(LevelDBOptions{
|
|
|
|
Path: path.Join(basePath, fingerprintToMetricDir),
|
2015-06-15 10:49:28 +00:00
|
|
|
CacheSizeBytes: FingerprintMetricCacheSize,
|
2014-09-10 16:41:52 +00:00
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2014-08-21 20:06:11 +00:00
|
|
|
}
|
2014-09-10 16:41:52 +00:00
|
|
|
return &FingerprintMetricIndex{
|
|
|
|
KeyValueStore: fingerprintToMetricDB,
|
|
|
|
}, nil
|
2014-08-21 20:06:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// LabelNameLabelValuesMapping is an in-memory map of label names to
|
|
|
|
// label values.
|
2015-08-20 15:18:46 +00:00
|
|
|
type LabelNameLabelValuesMapping map[model.LabelName]codable.LabelValueSet
|
2014-08-21 20:06:11 +00:00
|
|
|
|
2014-09-16 13:47:24 +00:00
|
|
|
// LabelNameLabelValuesIndex is a KeyValueStore that maps existing label names
|
|
|
|
// to all label values stored for that label name.
|
2014-08-21 20:06:11 +00:00
|
|
|
type LabelNameLabelValuesIndex struct {
|
|
|
|
KeyValueStore
|
|
|
|
}
|
|
|
|
|
2014-09-16 13:47:24 +00:00
|
|
|
// IndexBatch adds a batch of label name to label values mappings to the
|
|
|
|
// index. A mapping of a label name to an empty slice of label values results in
|
|
|
|
// a deletion of that mapping from the index.
|
|
|
|
//
|
|
|
|
// While this method is fundamentally goroutine-safe, note that the order of
|
2014-09-23 17:21:10 +00:00
|
|
|
// execution for multiple batches executed concurrently is undefined.
|
2014-08-21 20:06:11 +00:00
|
|
|
func (i *LabelNameLabelValuesIndex) IndexBatch(b LabelNameLabelValuesMapping) error {
|
|
|
|
batch := i.NewBatch()
|
|
|
|
|
|
|
|
for name, values := range b {
|
|
|
|
if len(values) == 0 {
|
2014-09-23 17:21:10 +00:00
|
|
|
if err := batch.Delete(codable.LabelName(name)); err != nil {
|
2014-09-16 13:47:24 +00:00
|
|
|
return err
|
|
|
|
}
|
2014-08-21 20:06:11 +00:00
|
|
|
} else {
|
2014-09-23 17:21:10 +00:00
|
|
|
if err := batch.Put(codable.LabelName(name), values); err != nil {
|
2014-09-16 13:47:24 +00:00
|
|
|
return err
|
|
|
|
}
|
2014-08-21 20:06:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return i.Commit(batch)
|
|
|
|
}
|
|
|
|
|
2014-11-20 20:03:51 +00:00
|
|
|
// Lookup looks up all label values for a given label name and returns them as
|
2015-08-20 15:18:46 +00:00
|
|
|
// model.LabelValues (which is a slice). Looking up a non-existing label
|
2014-11-20 20:03:51 +00:00
|
|
|
// name is not an error. In that case, (nil, false, nil) is returned.
|
2014-09-16 13:47:24 +00:00
|
|
|
//
|
|
|
|
// This method is goroutine-safe.
|
2015-08-20 15:18:46 +00:00
|
|
|
func (i *LabelNameLabelValuesIndex) Lookup(l model.LabelName) (values model.LabelValues, ok bool, err error) {
|
2014-09-23 17:21:10 +00:00
|
|
|
ok, err = i.Get(codable.LabelName(l), (*codable.LabelValues)(&values))
|
2014-09-14 13:33:56 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-11-20 20:03:51 +00:00
|
|
|
// LookupSet looks up all label values for a given label name and returns them
|
|
|
|
// as a set. Looking up a non-existing label name is not an error. In that case,
|
|
|
|
// (nil, false, nil) is returned.
|
2014-09-16 13:47:24 +00:00
|
|
|
//
|
2014-09-23 17:21:10 +00:00
|
|
|
// This method is goroutine-safe.
|
2015-08-20 15:18:46 +00:00
|
|
|
func (i *LabelNameLabelValuesIndex) LookupSet(l model.LabelName) (values map[model.LabelValue]struct{}, ok bool, err error) {
|
2014-09-23 17:21:10 +00:00
|
|
|
ok, err = i.Get(codable.LabelName(l), (*codable.LabelValueSet)(&values))
|
|
|
|
if values == nil {
|
2015-08-20 15:18:46 +00:00
|
|
|
values = map[model.LabelValue]struct{}{}
|
2014-09-14 13:33:56 +00:00
|
|
|
}
|
2014-09-23 17:21:10 +00:00
|
|
|
return
|
2014-08-21 20:06:11 +00:00
|
|
|
}
|
|
|
|
|
2014-09-16 13:47:24 +00:00
|
|
|
// NewLabelNameLabelValuesIndex returns a LevelDB-backed
|
|
|
|
// LabelNameLabelValuesIndex ready to use.
|
2014-09-10 16:41:52 +00:00
|
|
|
func NewLabelNameLabelValuesIndex(basePath string) (*LabelNameLabelValuesIndex, error) {
|
|
|
|
labelNameToLabelValuesDB, err := NewLevelDB(LevelDBOptions{
|
|
|
|
Path: path.Join(basePath, labelNameToLabelValuesDir),
|
2015-06-15 10:49:28 +00:00
|
|
|
CacheSizeBytes: LabelNameLabelValuesCacheSize,
|
2014-09-10 16:41:52 +00:00
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2014-08-21 20:06:11 +00:00
|
|
|
}
|
2014-09-10 16:41:52 +00:00
|
|
|
return &LabelNameLabelValuesIndex{
|
|
|
|
KeyValueStore: labelNameToLabelValuesDB,
|
|
|
|
}, nil
|
2014-08-21 20:06:11 +00:00
|
|
|
}
|
|
|
|
|
2014-11-05 19:02:45 +00:00
|
|
|
// DeleteLabelNameLabelValuesIndex deletes the LevelDB-backed
|
|
|
|
// LabelNameLabelValuesIndex. Use only for a not yet opened index.
|
|
|
|
func DeleteLabelNameLabelValuesIndex(basePath string) error {
|
|
|
|
return os.RemoveAll(path.Join(basePath, labelNameToLabelValuesDir))
|
|
|
|
}
|
|
|
|
|
2014-08-21 20:06:11 +00:00
|
|
|
// LabelPairFingerprintsMapping is an in-memory map of label pairs to
|
|
|
|
// fingerprints.
|
2015-08-22 11:32:13 +00:00
|
|
|
type LabelPairFingerprintsMapping map[model.LabelPair]codable.FingerprintSet
|
2014-08-21 20:06:11 +00:00
|
|
|
|
2014-09-16 13:47:24 +00:00
|
|
|
// LabelPairFingerprintIndex is a KeyValueStore that maps existing label pairs
|
|
|
|
// to the fingerprints of all metrics containing those label pairs.
|
2014-08-21 20:06:11 +00:00
|
|
|
type LabelPairFingerprintIndex struct {
|
|
|
|
KeyValueStore
|
|
|
|
}
|
|
|
|
|
2014-09-16 13:47:24 +00:00
|
|
|
// IndexBatch indexes a batch of mappings from label pairs to fingerprints. A
|
|
|
|
// mapping to an empty slice of fingerprints results in deletion of that mapping
|
|
|
|
// from the index.
|
|
|
|
//
|
|
|
|
// While this method is fundamentally goroutine-safe, note that the order of
|
2014-09-23 17:21:10 +00:00
|
|
|
// execution for multiple batches executed concurrently is undefined.
|
2014-08-21 20:06:11 +00:00
|
|
|
func (i *LabelPairFingerprintIndex) IndexBatch(m LabelPairFingerprintsMapping) error {
|
|
|
|
batch := i.NewBatch()
|
|
|
|
|
|
|
|
for pair, fps := range m {
|
|
|
|
if len(fps) == 0 {
|
2014-09-23 17:21:10 +00:00
|
|
|
batch.Delete(codable.LabelPair(pair))
|
2014-08-21 20:06:11 +00:00
|
|
|
} else {
|
2014-09-23 17:21:10 +00:00
|
|
|
batch.Put(codable.LabelPair(pair), fps)
|
2014-08-21 20:06:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return i.Commit(batch)
|
|
|
|
}
|
|
|
|
|
2014-09-16 13:47:24 +00:00
|
|
|
// Lookup looks up all fingerprints for a given label pair. Looking up a
|
|
|
|
// non-existing label pair is not an error. In that case, (nil, false, nil) is
|
|
|
|
// returned.
|
|
|
|
//
|
|
|
|
// This method is goroutine-safe.
|
2015-08-22 11:32:13 +00:00
|
|
|
func (i *LabelPairFingerprintIndex) Lookup(p model.LabelPair) (fps model.Fingerprints, ok bool, err error) {
|
2014-09-23 17:21:10 +00:00
|
|
|
ok, err = i.Get((codable.LabelPair)(p), (*codable.Fingerprints)(&fps))
|
2014-09-14 13:33:56 +00:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2014-09-23 17:21:10 +00:00
|
|
|
// LookupSet looks up all fingerprints for a given label pair. Looking up a
|
|
|
|
// non-existing label pair is not an error. In that case, (nil, false, nil) is
|
|
|
|
// returned.
|
2014-09-16 13:47:24 +00:00
|
|
|
//
|
2014-09-23 17:21:10 +00:00
|
|
|
// This method is goroutine-safe.
|
2015-08-22 11:32:13 +00:00
|
|
|
func (i *LabelPairFingerprintIndex) LookupSet(p model.LabelPair) (fps map[model.Fingerprint]struct{}, ok bool, err error) {
|
2014-09-23 17:21:10 +00:00
|
|
|
ok, err = i.Get((codable.LabelPair)(p), (*codable.FingerprintSet)(&fps))
|
|
|
|
if fps == nil {
|
2015-08-20 15:18:46 +00:00
|
|
|
fps = map[model.Fingerprint]struct{}{}
|
2014-09-14 13:33:56 +00:00
|
|
|
}
|
2014-09-23 17:21:10 +00:00
|
|
|
return
|
2014-08-21 20:06:11 +00:00
|
|
|
}
|
|
|
|
|
2014-09-16 13:47:24 +00:00
|
|
|
// NewLabelPairFingerprintIndex returns a LevelDB-backed
|
|
|
|
// LabelPairFingerprintIndex ready to use.
|
2014-09-10 16:41:52 +00:00
|
|
|
func NewLabelPairFingerprintIndex(basePath string) (*LabelPairFingerprintIndex, error) {
|
|
|
|
labelPairToFingerprintsDB, err := NewLevelDB(LevelDBOptions{
|
|
|
|
Path: path.Join(basePath, labelPairToFingerprintsDir),
|
2015-06-15 10:49:28 +00:00
|
|
|
CacheSizeBytes: LabelPairFingerprintsCacheSize,
|
2014-09-10 16:41:52 +00:00
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
2014-08-21 20:06:11 +00:00
|
|
|
}
|
2014-09-10 16:41:52 +00:00
|
|
|
return &LabelPairFingerprintIndex{
|
|
|
|
KeyValueStore: labelPairToFingerprintsDB,
|
|
|
|
}, nil
|
2014-08-21 20:06:11 +00:00
|
|
|
}
|
|
|
|
|
2014-11-05 19:02:45 +00:00
|
|
|
// DeleteLabelPairFingerprintIndex deletes the LevelDB-backed
|
|
|
|
// LabelPairFingerprintIndex. Use only for a not yet opened index.
|
|
|
|
func DeleteLabelPairFingerprintIndex(basePath string) error {
|
|
|
|
return os.RemoveAll(path.Join(basePath, labelPairToFingerprintsDir))
|
|
|
|
}
|
|
|
|
|
2014-09-10 16:41:52 +00:00
|
|
|
// FingerprintTimeRangeIndex models a database tracking the time ranges
|
2014-08-21 20:06:11 +00:00
|
|
|
// of metrics by their fingerprints.
|
2014-09-10 16:41:52 +00:00
|
|
|
type FingerprintTimeRangeIndex struct {
|
2014-08-21 20:06:11 +00:00
|
|
|
KeyValueStore
|
|
|
|
}
|
|
|
|
|
2014-09-16 13:47:24 +00:00
|
|
|
// Lookup returns the time range for the given fingerprint. Looking up a
|
|
|
|
// non-existing fingerprint is not an error. In that case, (0, 0, false, nil) is
|
|
|
|
// returned.
|
|
|
|
//
|
|
|
|
// This method is goroutine-safe.
|
2015-08-20 15:18:46 +00:00
|
|
|
func (i *FingerprintTimeRangeIndex) Lookup(fp model.Fingerprint) (firstTime, lastTime model.Time, ok bool, err error) {
|
2014-09-23 17:21:10 +00:00
|
|
|
var tr codable.TimeRange
|
|
|
|
ok, err = i.Get(codable.Fingerprint(fp), &tr)
|
2014-09-14 13:33:56 +00:00
|
|
|
return tr.First, tr.Last, ok, err
|
2014-08-21 20:06:11 +00:00
|
|
|
}
|
|
|
|
|
2014-09-16 13:47:24 +00:00
|
|
|
// NewFingerprintTimeRangeIndex returns a LevelDB-backed
|
|
|
|
// FingerprintTimeRangeIndex ready to use.
|
2014-09-10 16:41:52 +00:00
|
|
|
func NewFingerprintTimeRangeIndex(basePath string) (*FingerprintTimeRangeIndex, error) {
|
|
|
|
fingerprintTimeRangeDB, err := NewLevelDB(LevelDBOptions{
|
|
|
|
Path: path.Join(basePath, fingerprintTimeRangeDir),
|
2015-06-15 10:49:28 +00:00
|
|
|
CacheSizeBytes: FingerprintTimeRangeCacheSize,
|
2014-09-09 13:13:07 +00:00
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2014-09-10 16:41:52 +00:00
|
|
|
return &FingerprintTimeRangeIndex{
|
|
|
|
KeyValueStore: fingerprintTimeRangeDB,
|
2014-09-09 13:13:07 +00:00
|
|
|
}, nil
|
|
|
|
}
|